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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/rails/gem_version.rb +1 -1
- data/lib/rails/generators/actions.rb +1 -1
- data/lib/rails/generators/app_base.rb +1 -1
- data/lib/rails/generators/rails/app/templates/app/assets/javascripts/application.js.tt +1 -1
- data/lib/rails/generators/rails/plugin/templates/rails/javascripts.js +1 -1
- data/lib/rails/generators/rails/resource_route/resource_route_generator.rb +4 -2
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cfc2447f20e831982da2fe765c8781bc8789901a
|
4
|
+
data.tar.gz: f0a59700bc5a07c1cff02f6a0c424eac7050209c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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*
|
data/lib/rails/gem_version.rb
CHANGED
@@ -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/
|
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/
|
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/
|
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
|
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
|
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-
|
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
|
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
|
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
|
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
|
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
|
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
|
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:
|
357
|
+
version: '0'
|
358
358
|
requirements: []
|
359
359
|
rubyforge_project:
|
360
360
|
rubygems_version: 2.4.5
|