public
Fork of markbates/mack
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/juretta/mack.git
Search Repo:
Fixed bug with gems:list rake task that was looking in the wrong path for 
the gems.rb file.
markbates (author)
Wed Apr 02 12:13:07 -0700 2008
commit  3db416383d7c8952c668f5c5a9cdf2803d00d7ac
tree    f7115a59dd2ff0ecff408ebbd83d989e6a395c07
parent  e3adf0dbeaf13d8262de77fc91a0fb3458a0b085
...
 
 
 
1
2
3
...
1
2
3
4
5
6
0
@@ -1,3 +1,6 @@
0
+===0.4.2.1
0
+* Fixed bug with gems:list rake task that was looking in the wrong path for the gems.rb file.
0
+
0
 ===0.4.2
0
 * Added config/initializers directory. All files in this directory will be required at start up time.
0
 * Gems can now be required simply using the initializers/gems.rb file and the require_gems method.
...
25
26
27
28
 
29
30
31
...
25
26
27
 
28
29
30
31
0
@@ -25,7 +25,7 @@
0
     require 'utils/gem_manager'
0
     gem 'mack_ruby_core_extensions'
0
     require 'mack_ruby_core_extensions'
0
- require File.join(FileUtils.pwd, "config", "", "gems")
0
+ require File.join(FileUtils.pwd, "config", "initializers", "gems")
0
     require 'rubygems'
0
     require 'rubygems/gem_runner'
0
     Gem.manage_gems
...
10
11
12
13
 
14
15
16
...
10
11
12
 
13
14
15
16
0
@@ -10,7 +10,7 @@
0
     self.project = "magrathea"
0
     self.package = "mack"
0
     self.gem_name = "mack"
0
- self.version = "0.4.2"
0
+ self.version = "0.4.2.1"
0
   end
0
   
0
   def gem_name_with_version

Comments

    No one has commented yet.