public
Description: A Ruby web application framework
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack.git
Click here to lend your support to: mack and make a donation at www.pledgie.com !
Fixed mack executable problem [#60 state:resolved]
dsutedja (author)
Sun Jul 27 14:40:07 -0700 2008
commit  e81da1d91b7450d718f3cf3b7e4b48454990c2f4
tree    16f77f5c2f223ee3d841834ca442c63e2b545ba0
parent  47b72a966fb93a2c6a951c9b0e3b374b41230175
...
31
32
33
 
34
35
36
...
31
32
33
34
35
36
37
0
@@ -31,6 +31,7 @@
0
 * [#52] mack-more: mack-[orm] should require mack-[orm].rb using its full path.
0
 * [#55] mack-more: mack-facets: Mack::Utils::Registry is now Mack::Utils::RegistryList
0
 * [#56] mack-more: Added Mack::Utils::RegistryMap
0
+* [#60] Fixed Mack executable problem
0
 * gem: application_configuration 1.5.1
0
 * gem: ruby-debug 0.10.0
0
 * gem: data_mapper 0.9.3
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@ require 'ostruct'
0
 require 'pp'
0
 require 'erb'
0
 require 'genosaurus'
0
-require File.join(File.dirname(__FILE__), "..", "lib", "generators", "mack_application_generator", "mack_application_generator")
0
+require File.join(File.dirname(__FILE__), "..", "lib", "mack", "generators", "mack_application_generator", "mack_application_generator")
0
 
0
 app = ARGV[0]
0
 raise "You must specify a name for this application!" if app.nil?
...
6
7
8
9
 
10
11
12
...
6
7
8
 
9
10
11
12
0
@@ -6,7 +6,7 @@ require 'ostruct'
0
 require 'pp'
0
 require 'erb'
0
 require 'genosaurus'
0
-require File.join(File.dirname(__FILE__), "..", "lib", "generators", "mack_application_generator", "mack_application_generator")
0
+require File.join(File.dirname(__FILE__), "..", "lib", "mack", "generators", "mack_application_generator", "mack_application_generator")
0
 
0
 app = ARGV[0]
0
 raise "You must specify a name for this application!" if app.nil?

Comments