actionpack-action_caching 1.0.0 → 1.2.2
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 +7 -0
- data/.codeclimate.yml +7 -0
- data/.github/workflows/ci.yml +77 -0
- data/.gitignore +3 -15
- data/.rubocop.yml +116 -0
- data/CHANGELOG.md +81 -0
- data/Gemfile +2 -2
- data/README.md +54 -35
- data/Rakefile +5 -5
- data/actionpack-action_caching.gemspec +21 -14
- data/gemfiles/Gemfile-4-2-stable +10 -0
- data/gemfiles/Gemfile-5-0-stable +5 -0
- data/gemfiles/Gemfile-5-1-stable +5 -0
- data/gemfiles/Gemfile-5-2-stable +5 -0
- data/gemfiles/Gemfile-6-0-stable +5 -0
- data/gemfiles/Gemfile-6-1-stable +5 -0
- data/gemfiles/Gemfile-edge +6 -0
- data/lib/action_controller/action_caching.rb +6 -0
- data/lib/action_controller/caching/actions.rb +68 -22
- data/lib/actionpack/action_caching.rb +1 -1
- data/lib/actionpack/action_caching/railtie.rb +13 -0
- data/test/abstract_unit.rb +8 -37
- data/test/caching_test.rb +533 -126
- data/test/fixtures/layouts/talk_from_action.html.erb +2 -0
- metadata +42 -48
- data/.travis.yml +0 -17
- data/test/fixtures/layouts/talk_from_action.erb +0 -2
metadata
CHANGED
@@ -1,121 +1,115 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionpack-action_caching
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
5
|
-
prerelease:
|
4
|
+
version: 1.2.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- David Heinemeier Hansson
|
9
|
-
autorequire:
|
8
|
+
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2021-05-10 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: actionpack
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version: 4.0.0
|
22
|
-
- - <
|
23
|
-
- !ruby/object:Gem::Version
|
24
|
-
version: '5.0'
|
19
|
+
version: 4.0.0
|
25
20
|
type: :runtime
|
26
21
|
prerelease: false
|
27
22
|
version_requirements: !ruby/object:Gem::Requirement
|
28
|
-
none: false
|
29
23
|
requirements:
|
30
|
-
- -
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 4.0.0.beta
|
33
|
-
- - <
|
24
|
+
- - ">="
|
34
25
|
- !ruby/object:Gem::Version
|
35
|
-
version:
|
26
|
+
version: 4.0.0
|
36
27
|
- !ruby/object:Gem::Dependency
|
37
28
|
name: mocha
|
38
29
|
requirement: !ruby/object:Gem::Requirement
|
39
|
-
none: false
|
40
30
|
requirements:
|
41
|
-
- -
|
31
|
+
- - ">="
|
42
32
|
- !ruby/object:Gem::Version
|
43
33
|
version: '0'
|
44
34
|
type: :development
|
45
35
|
prerelease: false
|
46
36
|
version_requirements: !ruby/object:Gem::Requirement
|
47
|
-
none: false
|
48
37
|
requirements:
|
49
|
-
- -
|
38
|
+
- - ">="
|
50
39
|
- !ruby/object:Gem::Version
|
51
40
|
version: '0'
|
52
41
|
- !ruby/object:Gem::Dependency
|
53
42
|
name: activerecord
|
54
43
|
requirement: !ruby/object:Gem::Requirement
|
55
|
-
none: false
|
56
44
|
requirements:
|
57
|
-
- -
|
58
|
-
- !ruby/object:Gem::Version
|
59
|
-
version: 4.0.0.beta
|
60
|
-
- - <
|
45
|
+
- - ">="
|
61
46
|
- !ruby/object:Gem::Version
|
62
|
-
version:
|
47
|
+
version: 4.0.0
|
63
48
|
type: :development
|
64
49
|
prerelease: false
|
65
50
|
version_requirements: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
51
|
requirements:
|
68
|
-
- -
|
52
|
+
- - ">="
|
69
53
|
- !ruby/object:Gem::Version
|
70
|
-
version: 4.0.0
|
71
|
-
- - <
|
72
|
-
- !ruby/object:Gem::Version
|
73
|
-
version: '5.0'
|
54
|
+
version: 4.0.0
|
74
55
|
description: Action caching for Action Pack (removed from core in Rails 4.0)
|
75
56
|
email: david@loudthinking.com
|
76
57
|
executables: []
|
77
58
|
extensions: []
|
78
59
|
extra_rdoc_files: []
|
79
60
|
files:
|
80
|
-
- .
|
81
|
-
- .
|
61
|
+
- ".codeclimate.yml"
|
62
|
+
- ".github/workflows/ci.yml"
|
63
|
+
- ".gitignore"
|
64
|
+
- ".rubocop.yml"
|
65
|
+
- CHANGELOG.md
|
82
66
|
- Gemfile
|
83
67
|
- LICENSE.txt
|
84
68
|
- README.md
|
85
69
|
- Rakefile
|
86
70
|
- actionpack-action_caching.gemspec
|
71
|
+
- gemfiles/Gemfile-4-2-stable
|
72
|
+
- gemfiles/Gemfile-5-0-stable
|
73
|
+
- gemfiles/Gemfile-5-1-stable
|
74
|
+
- gemfiles/Gemfile-5-2-stable
|
75
|
+
- gemfiles/Gemfile-6-0-stable
|
76
|
+
- gemfiles/Gemfile-6-1-stable
|
77
|
+
- gemfiles/Gemfile-edge
|
87
78
|
- lib/action_controller/action_caching.rb
|
88
79
|
- lib/action_controller/caching/actions.rb
|
89
80
|
- lib/actionpack/action_caching.rb
|
81
|
+
- lib/actionpack/action_caching/railtie.rb
|
90
82
|
- test/abstract_unit.rb
|
91
83
|
- test/caching_test.rb
|
92
|
-
- test/fixtures/layouts/talk_from_action.erb
|
84
|
+
- test/fixtures/layouts/talk_from_action.html.erb
|
93
85
|
homepage: https://github.com/rails/actionpack-action_caching
|
94
|
-
licenses:
|
95
|
-
|
86
|
+
licenses:
|
87
|
+
- MIT
|
88
|
+
metadata:
|
89
|
+
bug_tracker_uri: https://github.com/rails/actionpack-action_caching/issues
|
90
|
+
changelog_uri: https://github.com/rails/actionpack-action_caching/blob/v1.2.2/CHANGELOG.md
|
91
|
+
documentation_uri: https://www.rubydoc.info/gems/actionpack-action_caching/1.2.2
|
92
|
+
source_code_uri: https://github.com/rails/actionpack-action_caching/tree/v1.2.2
|
93
|
+
post_install_message:
|
96
94
|
rdoc_options: []
|
97
95
|
require_paths:
|
98
96
|
- lib
|
99
97
|
required_ruby_version: !ruby/object:Gem::Requirement
|
100
|
-
none: false
|
101
98
|
requirements:
|
102
|
-
- -
|
99
|
+
- - ">="
|
103
100
|
- !ruby/object:Gem::Version
|
104
|
-
version:
|
101
|
+
version: 1.9.3
|
105
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
106
|
-
none: false
|
107
103
|
requirements:
|
108
|
-
- -
|
104
|
+
- - ">="
|
109
105
|
- !ruby/object:Gem::Version
|
110
106
|
version: '0'
|
111
107
|
requirements: []
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
specification_version: 3
|
108
|
+
rubygems_version: 3.2.15
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
116
111
|
summary: Action caching for Action Pack (removed from core in Rails 4.0)
|
117
112
|
test_files:
|
118
113
|
- test/abstract_unit.rb
|
119
114
|
- test/caching_test.rb
|
120
|
-
- test/fixtures/layouts/talk_from_action.erb
|
121
|
-
has_rdoc:
|
115
|
+
- test/fixtures/layouts/talk_from_action.html.erb
|
data/.travis.yml
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
before_install:
|
3
|
-
- gem install bundler
|
4
|
-
rvm:
|
5
|
-
- 1.9.3
|
6
|
-
notifications:
|
7
|
-
email: false
|
8
|
-
irc:
|
9
|
-
on_success: change
|
10
|
-
on_failure: always
|
11
|
-
channels:
|
12
|
-
- "irc.freenode.org#rails-contrib"
|
13
|
-
campfire:
|
14
|
-
on_success: change
|
15
|
-
on_failure: always
|
16
|
-
rooms:
|
17
|
-
- secure: "WikBuknvGGTx/fNGc4qE+8WK+Glt+H+yZKhHXmavRV2zrN3hC0pTPwuGZhNs\nvkc6N9WKud7un2DtWu1v77BgFhIYjfJTRkmoZ8hoNsoHpe93W/a3s8LU30/l\nzDCKoTrqlHT5hJTmEKpNVqkhfFBPiXRFMgFWALUHiA8Q4Z9BUIc="
|