railties 4.2.1.rc4 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 971d3f7b35011410967ed63d0450a179465871fd
4
- data.tar.gz: 7e49474fdc4989e20f1f22e85b7c3fba9f4e9c34
3
+ metadata.gz: cfc2447f20e831982da2fe765c8781bc8789901a
4
+ data.tar.gz: f0a59700bc5a07c1cff02f6a0c424eac7050209c
5
5
  SHA512:
6
- metadata.gz: 057eb5b57b8cee819a3310b0c939eb65807332030e81eec3ca22710cf66454ed36c6977a21f5b7c69261f6f498c025392275389f23ea2719ef5c9c3925ea7974
7
- data.tar.gz: e3305eb4a1144d2ac924eeb209e350c9abebcb3730fdb0612803275a6c364b49d91013a2b90892b24ef23775260ec4a770933c15d71f4baaaeebef5b9c2d34ee
6
+ metadata.gz: a391c377ae4e77b2156d1e0cc8151a9dd68a61f3877f7e6781f137eadcda6c1fe27cfaa916764843074e47ddbc079b2a252dd185ce810afddf4cf3de4db3bcb5
7
+ data.tar.gz: c9e76e652fe8ac0b486974b28080a224e83f514b10eda5d42084433646a362e50d6f633c5a4f3a924a4cc89ba518b8f567ae4b083da73b48ab3f64bd5fa45615
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## Rails 4.2.1 (March 19, 2014) ##
2
+
3
+ * Add a new-line to the end of route method generated code.
4
+
5
+ We need to add a `\n`, because we cannot have two routes
6
+ in the same line.
7
+
8
+ *arthurnn*
9
+
1
10
  * Force generated routes to be inserted into routes.rb
2
11
 
3
12
  *Andrew White*
@@ -8,7 +8,7 @@ module Rails
8
8
  MAJOR = 4
9
9
  MINOR = 2
10
10
  TINY = 1
11
- PRE = "rc4"
11
+ PRE = nil
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
14
14
  end
@@ -222,7 +222,7 @@ module Rails
222
222
  sentinel = /\.routes\.draw do\s*\n/m
223
223
 
224
224
  in_root do
225
- inject_into_file 'config/routes.rb', " #{routing_code}", { after: sentinel, verbose: false, force: true }
225
+ inject_into_file 'config/routes.rb', " #{routing_code}\n", { after: sentinel, verbose: false, force: true }
226
226
  end
227
227
  end
228
228
 
@@ -283,7 +283,7 @@ module Rails
283
283
  end
284
284
 
285
285
  def javascript_runtime_gemfile_entry
286
- comment = 'See https://github.com/sstephenson/execjs#readme for more supported runtimes'
286
+ comment = 'See https://github.com/rails/execjs#readme for more supported runtimes'
287
287
  if defined?(JRUBY_VERSION)
288
288
  GemfileEntry.version 'therubyrhino', nil, comment
289
289
  else
@@ -7,7 +7,7 @@
7
7
  // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
8
  // compiled file.
9
9
  //
10
- // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
13
  <% unless options[:skip_javascript] -%>
@@ -7,7 +7,7 @@
7
7
  // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
8
  // compiled file.
9
9
  //
10
- // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
10
+ // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
11
11
  // about supported directives.
12
12
  //
13
13
  //= require_tree .
@@ -29,8 +29,10 @@ module Rails
29
29
  write("end", route_length - index)
30
30
  end
31
31
 
32
- # route prepends two spaces onto the front of the string that is passed, this corrects that
33
- route route_string[2..-1]
32
+ # route prepends two spaces onto the front of the string that is passed, this corrects that.
33
+ # Also it adds a \n to the end of each line, as route already adds that
34
+ # we need to correct that too.
35
+ route route_string[2..-2]
34
36
  end
35
37
 
36
38
  private
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: railties
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1.rc4
4
+ version: 4.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-12 00:00:00.000000000 Z
11
+ date: 2015-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 4.2.1.rc4
19
+ version: 4.2.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 4.2.1.rc4
26
+ version: 4.2.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: actionpack
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 4.2.1.rc4
33
+ version: 4.2.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 4.2.1.rc4
40
+ version: 4.2.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -78,14 +78,14 @@ dependencies:
78
78
  requirements:
79
79
  - - '='
80
80
  - !ruby/object:Gem::Version
81
- version: 4.2.1.rc4
81
+ version: 4.2.1
82
82
  type: :development
83
83
  prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - '='
87
87
  - !ruby/object:Gem::Version
88
- version: 4.2.1.rc4
88
+ version: 4.2.1
89
89
  description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
90
90
  email: david@loudthinking.com
91
91
  executables:
@@ -352,9 +352,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
352
352
  version: 1.9.3
353
353
  required_rubygems_version: !ruby/object:Gem::Requirement
354
354
  requirements:
355
- - - ">"
355
+ - - ">="
356
356
  - !ruby/object:Gem::Version
357
- version: 1.3.1
357
+ version: '0'
358
358
  requirements: []
359
359
  rubyforge_project:
360
360
  rubygems_version: 2.4.5