public
Description: A collection of useful Rails generator scripts.
Homepage:
Clone URL: git://github.com/ryanb/nifty-generators.git
nifty-generators / Rakefile
100644 16 lines (13 sloc) 0.526 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('nifty-generators', '0.3.0') do |p|
  p.project = "niftygenerators"
  p.description = "A collection of useful generator scripts for Rails."
  p.url = "http://github.com/ryanb/nifty-generators"
  p.author = 'Ryan Bates'
  p.email = "ryan (at) railscasts (dot) com"
  p.ignore_pattern = ["script/*"]
  p.development_dependencies = []
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }