public
Fork of courtenay/altered_beast
Description: Ground-up rewrite of Beast, a Ruby on Rails forum.
Homepage: http://activereload.lighthouseapp.com/projects/7537-altered-beast/
Clone URL: git://github.com/technoweenie/altered_beast.git
Updated to Rails 2.0.2.
nbibler (author)
Thu Apr 24 17:54:57 -0700 2008
commit  a9221819c74854c157336c304779999533ca5475
tree    ffab709a871cdb2236c5c33985ff54f335c610d0
parent  6bad0db95391470d3a033c0d4fdb18354a8b37f4
...
24
25
26
 
27
28
29
...
93
94
95
96
 
97
98
99
...
24
25
26
27
28
29
30
...
94
95
96
 
97
98
99
100
0
@@ -24,6 +24,7 @@ module Rails
0
       File.exist?("#{RAILS_ROOT}/vendor/rails")
0
     end
0
 
0
+ # FIXME : Ruby 1.9
0
     def preinitialize
0
       load(preinitializer_path) if File.exists?(preinitializer_path)
0
     end
0
@@ -93,7 +94,7 @@ module Rails
0
       end
0
 
0
       def parse_gem_version(text)
0
- $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*'([!~<>=]*\s*[\d.]+)'/
0
+ $1 if text =~ /^[^#]*RAILS_GEM_VERSION\s*=\s*["']([!~<>=]*\s*[\d.]+)["']/
0
       end
0
 
0
       private
...
5
6
7
8
 
9
10
11
...
5
6
7
 
8
9
10
11
0
@@ -5,7 +5,7 @@
0
 # ENV['RAILS_ENV'] ||= 'production'
0
 
0
 # Specifies gem version of Rails to use when vendor/rails is not present
0
-RAILS_GEM_VERSION = '2.0.1' unless defined? RAILS_GEM_VERSION
0
+RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
0
 
0
 # Bootstrap the Rails environment, frameworks, and default configuration
0
 require File.join(File.dirname(__FILE__), 'boot')

Comments