actionview 4.1.14.2 → 4.1.15.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionview might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +25 -2
- data/lib/action_view/gem_version.rb +2 -2
- data/lib/action_view/helpers/asset_tag_helper.rb +1 -1
- data/lib/action_view/helpers/tags/week_field.rb +1 -1
- 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: bf4ea9d6914cfa2809602784b1af2d352dc5998a
|
4
|
+
data.tar.gz: deb02109503a86673fd02bb001205a4f0e29c87e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee66ddcd1555c1ed189bf829e98a42f909b35d2bede438dab785a0b2d4054e0d58c5722442b4b48f08d5c017701ad42a3f50bd9491e69482cca880fd1740df78
|
7
|
+
data.tar.gz: 4fb5f9689001d8e8f1239bade592d381053306ce566cb04299c0fc5fe29bec6ba31f6e8617cad2fedeb529eb5f6c6bb56f71db9da2e9944c52cb0a0cfd3e1e7a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,27 @@
|
|
1
|
+
## Rails 4.1.15.rc1 (March 01, 2016) ##
|
2
|
+
|
3
|
+
* Changed the meaning of `render "foo/bar"`.
|
4
|
+
|
5
|
+
Previously, calling `render "foo/bar"` in a controller action is equivalent
|
6
|
+
to `render file: "foo/bar"`. In Rails 4.2, this has been changed to mean
|
7
|
+
`render template: "foo/bar"` instead. If you need to render a file, please
|
8
|
+
change your code to use the explicit form (`render file: "foo/bar"`) instead.
|
9
|
+
|
10
|
+
*Jeremy Jackson*
|
11
|
+
|
12
|
+
* Add support for ARIA attributes in tags.
|
13
|
+
|
14
|
+
* Fix stripping the digest from the automatically generated img tag alt
|
15
|
+
attribute when assets are handled by Sprockets >=3.0.
|
16
|
+
|
17
|
+
*Bart de Water*
|
18
|
+
|
19
|
+
* Generate `week_field` input values using a 1-based index and not a 0-based index
|
20
|
+
as per the W3 spec: http://www.w3.org/TR/html-markup/datatypes.html#form.data.week
|
21
|
+
|
22
|
+
*Christoph Geschwind*
|
23
|
+
|
24
|
+
|
1
25
|
## Rails 4.1.14.2 (February 26, 2016) ##
|
2
26
|
|
3
27
|
* Do not allow render with unpermitted parameter.
|
@@ -6,7 +30,6 @@
|
|
6
30
|
|
7
31
|
*Arthur Neves*
|
8
32
|
|
9
|
-
|
10
33
|
* Changed the meaning of `render "foo/bar"`.
|
11
34
|
|
12
35
|
Previously, calling `render "foo/bar"` in a controller action is equivalent
|
@@ -19,7 +42,7 @@
|
|
19
42
|
*Eileen Uchitelle*
|
20
43
|
|
21
44
|
|
22
|
-
## Rails 4.
|
45
|
+
## Rails 4.1.14.1 (January 25, 2015) ##
|
23
46
|
|
24
47
|
* No changes.
|
25
48
|
|
@@ -229,7 +229,7 @@ module ActionView
|
|
229
229
|
# image_alt('underscored_file_name.png')
|
230
230
|
# # => Underscored file name
|
231
231
|
def image_alt(src)
|
232
|
-
File.basename(src, '.*').sub(/-[[:xdigit:]]{32}\z/, '').tr('-_', ' ').capitalize
|
232
|
+
File.basename(src, '.*').sub(/-[[:xdigit:]]{32,64}\z/, '').tr('-_', ' ').capitalize
|
233
233
|
end
|
234
234
|
|
235
235
|
# Returns an html video tag for the +sources+. If +sources+ is a string,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionview
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.1.
|
4
|
+
version: 4.1.15.rc1
|
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: 2016-
|
11
|
+
date: 2016-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 4.1.
|
19
|
+
version: 4.1.15.rc1
|
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.1.
|
26
|
+
version: 4.1.15.rc1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: builder
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,28 +58,28 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 4.1.
|
61
|
+
version: 4.1.15.rc1
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 4.1.
|
68
|
+
version: 4.1.15.rc1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: activemodel
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - '='
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: 4.1.
|
75
|
+
version: 4.1.15.rc1
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - '='
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: 4.1.
|
82
|
+
version: 4.1.15.rc1
|
83
83
|
description: Simple, battle-tested conventions and helpers for building web pages.
|
84
84
|
email: david@loudthinking.com
|
85
85
|
executables: []
|
@@ -207,9 +207,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
207
207
|
version: 1.9.3
|
208
208
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
209
209
|
requirements:
|
210
|
-
- - "
|
210
|
+
- - ">"
|
211
211
|
- !ruby/object:Gem::Version
|
212
|
-
version:
|
212
|
+
version: 1.3.1
|
213
213
|
requirements:
|
214
214
|
- none
|
215
215
|
rubyforge_project:
|