mirror of
https://github.com/danbee/slugtastic
synced 2025-03-04 08:49:05 +00:00
14 lines
507 B
Ruby
14 lines
507 B
Ruby
require 'rubygems'
|
|
require 'rake'
|
|
require 'echoe'
|
|
|
|
Echoe.new('slugtastic', '0.1.1') 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 } |