public
Description: Merb More: The Full Stack. Take what you need; leave what you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-more.git
Update Rakefile: make it use Rake helpers from -core, make install task 
work.
Mon Jul 21 05:29:13 -0700 2008
commit  a6ee8184dc18e8407f2ad4135c22e6567474377e
tree    f92883747895eaefc09e1b40bf97283793658aca
parent  789d9fee22636818236d6d18813a9ca72302cffd
...
1
 
 
2
3
4
...
6
7
8
9
 
10
11
12
...
23
24
25
26
27
28
 
 
29
30
31
...
37
38
39
40
 
41
42
43
44
45
 
46
47
48
...
1
2
3
4
5
6
...
8
9
10
 
11
12
13
14
...
25
26
27
 
 
 
28
29
30
31
32
...
38
39
40
 
41
42
43
44
45
 
46
47
48
49
0
@@ -1,4 +1,6 @@
0
 require 'rubygems'
0
+require "merb-core"
0
+require 'merb-core/tasks/merb_rake_helper'
0
 require 'rake/gempackagetask'
0
 
0
 NAME = "merb-gen"
0
@@ -6,7 +8,7 @@ VERSION = "0.9.4"
0
 AUTHOR = "Jonas Nicklas"
0
 EMAIL = "jonas.nicklas@gmail.com"
0
 HOMEPAGE = "http://www.merbivore.com"
0
-SUMMARY = "Merb More: Merb's Application and Plugin Generators"
0
+SUMMARY = "Merb gen: generators suite for Merb."
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = 'merb'
0
@@ -23,9 +25,8 @@ spec = Gem::Specification.new do |s|
0
   s.bindir = "bin"
0
   s.executables = %w( merb-gen )
0
 
0
- # Uncomment this to add a dependency
0
- #s.add_dependency "merb-core", ">= 0.9.4"
0
- #s.add_dependency "templater", ">= 0.1"
0
+ s.add_dependency "merb-core", ">= 0.9.4"
0
+ s.add_dependency "templater", ">= 0.1"
0
 
0
   s.require_path = 'lib'
0
   s.autorequire = NAME
0
@@ -37,12 +38,12 @@ Rake::GemPackageTask.new(spec) do |pkg|
0
 end
0
 
0
 task :install => [:package] do
0
- sh %{#{sudo} gem install #{install_home} pkg/#{NAME}-#{GEM_VERSION} --no-update-sources}
0
+ sh %{#{sudo} gem install #{install_home} pkg/#{NAME}-#{VERSION} --no-update-sources}
0
 end
0
 
0
 namespace :jruby do
0
   task :install do
0
- sh %{#{sudo} jruby -S gem install #{install_home} pkg/#{NAME}-#{GEM_VERSION}.gem --no-rdoc --no-ri}
0
+ sh %{#{sudo} jruby -S gem install #{install_home} pkg/#{NAME}-#{VERSION}.gem --no-rdoc --no-ri}
0
   end
0
 end
0
 

Comments

    No one has commented yet.