public
Description: **!! THIS IS NOW IN RAILS CORE!!** Generate Rails apps from programmatic templates. Skip all the git cloning!
Homepage: http://github.com/rails/rails/commit/e8cc4b116c460c524961a07da92da3f323854c15
Clone URL: git://github.com/jeremymcanally/rg.git
Click here to lend your support to: rg and make a donation at www.pledgie.com !
rg / Rakefile
100644 29 lines (21 sloc) 0.585 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
28
29
# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.
 
begin
  require 'bones'
  Bones.setup
rescue LoadError
  load 'tasks/setup.rb'
end
 
ensure_in_path 'lib'
require 'rg'
 
task :default => 'spec:run'
 
PROJ.name = 'rg'
PROJ.authors = 'Jeremy McAnally'
PROJ.email = 'jeremy@entp.com'
PROJ.url = 'http://www.omgbloglol.com/'
PROJ.version = Rg::VERSION
PROJ.rubyforge.name = 'rg'
 
PROJ.gem.dependencies << ['ruby2ruby', '> 0.0.0']
 
PROJ.spec.opts << '--color'
 
# EOF