1
0
mirror of https://github.com/danbee/slugtastic synced 2025-03-04 08:49:05 +00:00
slugtastic/Rakefile
2011-10-04 15:39:51 +01:00

14 lines
446 B
Ruby

require 'rubygems'
require 'rake'
require 'echoe'
Echoe.new('slugtastic', '0.1.0') do |p|
p.description = "Generate a slug string from another field."
p.url = "http://github.com/danbee/slugtastic"
p.author = "Dan Barber"
p.email = "danbee@gmail.com"
p.ignore_pattern = ["tmp/*", "script/*"]
p.development_dependencies = []
end
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }