Skip to content

Instantly share code, notes, and snippets.

@ebot
Created November 10, 2008 18:55
Show Gist options
  • Save ebot/23581 to your computer and use it in GitHub Desktop.
Save ebot/23581 to your computer and use it in GitHub Desktop.
*.log
Manifest
pkg/*
require 'rubygems'
require 'rake'
require 'echoe'
Echoe.new('hiking', '0.1.0') do |p|
p.description = "A tiny xpath application written with the camping microframework."
p.url = "http://github.com/ebot/hiking"
p.author = "Ed Botzum"
p.email = "contact@edbotz.us"
p.ignore_pattern = ["tmp/*", "script/*"]
p.development_dependencies = ['camping >= 1.5.0']
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
  • Rename public to lib
  • Create the Rakefile
  • Update .gitignore.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment