public
Fork of wycats/merb-core
Description: Merb Core: All you need. None you don't.
Homepage: http://www.merbivore.com
Clone URL: git://github.com/tooky/merb-core.git
A few more tweaks
Hampton Catlin (author)
Fri Feb 01 11:32:29 -0800 2008
commit  b28ba4130fc0c47b11c250fd7fa01501b0d6d827
tree    b9fcbb6f571a50f8cd591cdf9b5827b2484a7a2f
parent  460780b999fdf3c975c5f617615c5cb3ab5ab923
...
17
18
19
20
21
22
23
...
119
120
121
122
123
124
125
...
17
18
19
 
20
21
22
...
118
119
120
 
121
122
123
0
@@ -17,7 +17,6 @@ $VERBOSE = false
0
 # 5. Updating a file directly under merb-core (e.g. core_ext.rb)
0
 # reruns all the specs under spec/(public|private)/core_ext
0
 # 6. Updating merb.rb reruns all specs
0
-
0
 class RspecCommandError < StandardError; end
0
 
0
 class Autotest::MerbsourceRspec < Autotest
0
@@ -119,7 +118,6 @@ class Autotest::MerbsourceRspec < Autotest
0
   #
0
   # * bin/spec
0
   # * default spec bin/loader installed in Rubygems
0
-
0
   def spec_commands
0
     if (spec = `which spec`.chomp) && !spec.empty?
0
       return [spec]
...
91
92
93
94
95
96
97
...
129
130
131
132
 
 
133
134
135
136
137
138
...
204
205
206
207
208
209
210
...
91
92
93
 
94
95
96
...
128
129
130
 
131
132
133
134
 
135
136
137
...
203
204
205
 
206
207
208
0
@@ -91,7 +91,6 @@ class Merb::BootLoader::BuildFramework < Merb::BootLoader
0
   
0
     # This method should be overridden in merb_init.rb before Merb.start to set up a different
0
     # framework structure
0
-
0
     def build_framework
0
       unless Merb::Config[:framework]
0
         %w[view model controller helper mailer part].each do |component|
0
@@ -129,10 +128,10 @@ class Merb::BootLoader::DropPidFile < Merb::BootLoader
0
       Merb::Server.store_pid(Merb::Config[:port])
0
     end
0
   end
0
-end
0
+end
0
+
0
 # Load the init.rb file, and any environment files, which register the
0
 # list of necessary dependencies and any after_app_loads hooks.
0
-
0
 class Merb::BootLoader::Dependencies < Merb::BootLoader
0
   
0
   def self.run
0
@@ -204,7 +203,6 @@ class Merb::BootLoader::LoadClasses < Merb::BootLoader
0
       # their subclasses in a class variable. Classes that wish to use this
0
       # functionality are required to alias it to _subclasses_list. Plugins
0
       # for ORMs and other libraries should keep this in mind.
0
-
0
       superklass = const
0
       until (superklass = superklass.superclass).nil?
0
         if superklass.respond_to?(:_subclasses_list)

Comments

    No one has commented yet.