- Rename public to lib
- Create the Rakefile
- Update .gitignore.
Created
November 10, 2008 18:55
-
-
Save ebot/23581 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.log | |
Manifest | |
pkg/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "[email protected]" | |
p.ignore_pattern = ["tmp/*", "script/*"] | |
p.development_dependencies = ['camping >= 1.5.0'] | |
end | |
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment