public
Description: Rake extension for generating and updating projects from templates
Homepage:
Clone URL: git://github.com/automatthew/rakegen.git
rakegen / Rakefile
100644 27 lines (23 sloc) 0.678 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
%w{rubygems}.each do |dep|
  require dep
end
 
Version = '0.6.6'
 
task :default => [:test]
 
begin
  gem 'echoe', '>=2.7'
  require 'echoe'
  Echoe.new('rakegen', Version) do |p|
    p.project = 'rakegen'
    p.summary = "Generation and updation of projects from templates. Rake-powered, for sustainable blah blah."
    p.author = "Matthew King"
    p.email = "automatthew@gmail.com"
    p.url = "http://rakegen.rubyforge.org"
    p.ignore_pattern = /^(\.git).+/
    p.test_pattern = "test/test_*.rb"
    p.dependencies << "rake"
    p.dependencies << "erubis"
    p.dependencies << "highline"
  end
rescue
  "(ignored echoe gemification, as you don't have the Right Stuff)"
end