public
Description: Yet Another Ruby Generator: Customize existing project generators to fit your personality.
Homepage:
Clone URL: git://github.com/rmm5t/yarg.git
yarg / Rakefile
100644 20 lines (16 sloc) 0.562 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rake'
require 'rake/testtask'
require 'lib/yarg'
 
begin
  require 'echoe'
 
  Echoe.new('yarg', Yarg::VERSION) do |p|
    # p.rubyforge_name = 'yarg'
    p.summary = "Yet Another Ruby Generator"
    p.description = "Yet Another Ruby Generator: Customize existing project generators to fit your personality."
    p.url = "http://github.com/rmm5t/yarg"
    p.author = ["Ryan McGeary"]
  end
 
rescue LoadError => boom
  puts "You are missing a dependency required for meta-operations on this gem."
  puts "#{boom.to_s.capitalize}."
end