actionpack-action_caching 1.1.1 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.codeclimate.yml +7 -0
- data/.gitignore +3 -15
- data/.rubocop.yml +116 -0
- data/.travis.yml +40 -1
- data/CHANGELOG.md +34 -2
- data/Gemfile +2 -2
- data/README.md +39 -33
- data/Rakefile +5 -5
- data/actionpack-action_caching.gemspec +14 -15
- data/gemfiles/Gemfile-4-0-stable +4 -3
- data/gemfiles/Gemfile-4-1-stable +6 -0
- data/gemfiles/Gemfile-4-2-stable +10 -0
- data/gemfiles/Gemfile-5-0-stable +5 -0
- data/gemfiles/Gemfile-edge +4 -3
- data/lib/action_controller/action_caching.rb +1 -1
- data/lib/action_controller/caching/actions.rb +53 -24
- data/lib/actionpack/action_caching.rb +1 -1
- data/lib/actionpack/action_caching/railtie.rb +3 -3
- data/test/abstract_unit.rb +8 -37
- data/test/caching_test.rb +487 -122
- data/test/fixtures/layouts/talk_from_action.html.erb +2 -0
- metadata +17 -12
- data/test/fixtures/layouts/talk_from_action.erb +0 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionpack-action_caching
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
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:
|
11
|
+
date: 2017-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: 4.0.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '6'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: 4.0.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '6'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: mocha
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,27 +50,29 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 4.0.0
|
53
|
+
version: 4.0.0
|
54
54
|
- - "<"
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
56
|
+
version: '6'
|
57
57
|
type: :development
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
62
62
|
- !ruby/object:Gem::Version
|
63
|
-
version: 4.0.0
|
63
|
+
version: 4.0.0
|
64
64
|
- - "<"
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: '
|
66
|
+
version: '6'
|
67
67
|
description: Action caching for Action Pack (removed from core in Rails 4.0)
|
68
68
|
email: david@loudthinking.com
|
69
69
|
executables: []
|
70
70
|
extensions: []
|
71
71
|
extra_rdoc_files: []
|
72
72
|
files:
|
73
|
+
- ".codeclimate.yml"
|
73
74
|
- ".gitignore"
|
75
|
+
- ".rubocop.yml"
|
74
76
|
- ".travis.yml"
|
75
77
|
- CHANGELOG.md
|
76
78
|
- Gemfile
|
@@ -79,6 +81,9 @@ files:
|
|
79
81
|
- Rakefile
|
80
82
|
- actionpack-action_caching.gemspec
|
81
83
|
- gemfiles/Gemfile-4-0-stable
|
84
|
+
- gemfiles/Gemfile-4-1-stable
|
85
|
+
- gemfiles/Gemfile-4-2-stable
|
86
|
+
- gemfiles/Gemfile-5-0-stable
|
82
87
|
- gemfiles/Gemfile-edge
|
83
88
|
- lib/action_controller/action_caching.rb
|
84
89
|
- lib/action_controller/caching/actions.rb
|
@@ -86,7 +91,7 @@ files:
|
|
86
91
|
- lib/actionpack/action_caching/railtie.rb
|
87
92
|
- test/abstract_unit.rb
|
88
93
|
- test/caching_test.rb
|
89
|
-
- test/fixtures/layouts/talk_from_action.erb
|
94
|
+
- test/fixtures/layouts/talk_from_action.html.erb
|
90
95
|
homepage: https://github.com/rails/actionpack-action_caching
|
91
96
|
licenses:
|
92
97
|
- MIT
|
@@ -99,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
104
|
requirements:
|
100
105
|
- - ">="
|
101
106
|
- !ruby/object:Gem::Version
|
102
|
-
version:
|
107
|
+
version: 1.9.3
|
103
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
109
|
requirements:
|
105
110
|
- - ">="
|
@@ -107,11 +112,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
112
|
version: '0'
|
108
113
|
requirements: []
|
109
114
|
rubyforge_project:
|
110
|
-
rubygems_version: 2.
|
115
|
+
rubygems_version: 2.6.8
|
111
116
|
signing_key:
|
112
117
|
specification_version: 4
|
113
118
|
summary: Action caching for Action Pack (removed from core in Rails 4.0)
|
114
119
|
test_files:
|
115
120
|
- test/abstract_unit.rb
|
116
121
|
- test/caching_test.rb
|
117
|
-
- test/fixtures/layouts/talk_from_action.erb
|
122
|
+
- test/fixtures/layouts/talk_from_action.html.erb
|