1
0
mirror of https://github.com/danbee/slugtastic synced 2025-03-04 08:49:05 +00:00
slugtastic/Rakefile

14 lines
507 B
Ruby

require 'rubygems'
require 'rake'
require 'echoe'
Echoe.new('slugtastic', '0.1.2') do |p|
p.description = "A simple slug string generator for ActiveRecord. Will populate a slug attribute from another attribute."
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 }