public
Rubygem
Fork of ryanb/nifty-generators
Description: A collection of useful Rails generator scripts by Ryan Bates.
Clone URL: git://github.com/ooodigi/nifty-generators.git
Search Repo:
nifty-generators / Rakefile
100644 22 lines (17 sloc) 0.717 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
 
begin
  require 'echoe'
 
  Echoe.new('nifty-generators', '0.1.1') do |p|
    p.summary = "A collection of useful generator scripts for Rails."
    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/*", "*.gemspec"]
  end
 
rescue LoadError => boom
  puts "You are missing a dependency required for meta-operations on this gem."
  puts "#{boom.to_s.capitalize}."
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }