public
Rubygem
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/wycats/merb-core.git
Executable wrappers use /usr/bin/env again - run them with /path/to/ruby -S if 
you need a specific Ruby version
fabien (author)
Sun Sep 28 04:16:23 -0700 2008
commit  aa98232a9908abbdb75baca5093a77734e7dfbe2
tree    a274ac8649d4441a409adc47e373261ccc9b84aa
parent  a6f6a986ab3aa1414368d24892a808c448ecb564
...
99
100
101
102
 
103
104
105
...
122
123
124
125
 
126
127
128
...
180
181
182
183
 
184
185
186
...
99
100
101
 
102
103
104
105
...
122
123
124
 
125
126
127
128
...
180
181
182
 
183
184
185
186
0
@@ -99,7 +99,7 @@ module GemManagement
0
       else
0
         raise Gem::InstallError, "No package found for #{gem_name}"
0
       end
0
-    # Handle standard installation through Rake
0
+    # Handle elaborate installation through Rake
0
     else
0
       # Clean and regenerate any subgems for meta gems.
0
       Dir[File.join(gem_src_dir, '*', 'Rakefile')].each do |rakefile|
0
@@ -122,7 +122,7 @@ module GemManagement
0
 
0
         # Finally generate the main package and install it; subgems
0
         # (dependencies) are local to the main package.
0
-        FileUtils.cd(gem_src_dir) do
0
+        FileUtils.cd(gem_src_dir) do         
0
           system("#{rake} package")
0
           FileUtils.cd(gem_pkg_dir) do
0
             if package = Dir[File.join(gem_pkg_dir, "#{gem_name}-*.gem")].last
0
@@ -180,7 +180,7 @@ module GemManagement
0
 
0
   def executable_wrapper(spec, bin_file_name)
0
     <<-TEXT
0
-#!#{Gem.ruby}
0
+#!/usr/bin/env ruby
0
 #
0
 # This file was generated by Merb's GemManagement
0
 #

Comments