redis-actionpack 5.0.2 → 5.1.0

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: 3c307087a763d1e0b3954ec756cd840ed1df3e8b
4
- data.tar.gz: ee7c5f3361f0cf5c7e6009b033c6cb0524dbb0a2
3
+ metadata.gz: 50331ac51d096b49792a7490a0ac690f3ccd4477
4
+ data.tar.gz: 695156ecc06eb6baf1e041495d50fd39a551f24a
5
5
  SHA512:
6
- metadata.gz: 144bec146061a9b5e90b56e3e2a9224bb293766e6393a1d2510e06ae22e1cfa90f45ee3bc2330375a8b6282b05a9bfb22be23bdba943aa12bb33ec59986835f0
7
- data.tar.gz: 642076a0bd7256abea58eb90cdcf8e0aac49c746614745f449a97539876a2bc2eeea1ce25703aa1069ec7c326400ef016d268980ea664950457b4e4a018cb643
6
+ metadata.gz: fbca26251d84472ca25c2dec76c78c9202e1d38b097418845524ddf90035533189ebba3f5efc00b5148c4b35da1c06f69fad6add4382770da0969086f90b2db1
7
+ data.tar.gz: c30bdf4ed278f3b953a5872cc9c58fbef181e4fefd69978f9e6347b86d7c9b11fd8df765c1eda40863b89952aa820e5597239ebd9f88d63bbb011c910a06019f
@@ -1,31 +1,29 @@
1
1
  language: ruby
2
2
  before_install: gem install bundler
3
- script: 'bundle exec rake'
3
+ script: bundle exec rake
4
4
  rvm:
5
- - 1.9.3
6
- - 2.0
7
- - 2.1
8
- - 2.2.4
9
- - 2.3.1
10
- - ruby-head
11
-
5
+ - 2.3
6
+ - 2.4
7
+ - 2.5
8
+ - 2.6
9
+ - ruby-head
12
10
  gemfile:
13
- - test/gemfiles/Gemfile.rails-4.0.x
14
- - test/gemfiles/Gemfile.rails-4.1.x
15
- - test/gemfiles/Gemfile.rails-4.2.x
16
- - test/gemfiles/Gemfile.rails-5.0.x
17
-
11
+ - test/gemfiles/Gemfile.rails-4.0.x
12
+ - test/gemfiles/Gemfile.rails-4.1.x
13
+ - test/gemfiles/Gemfile.rails-4.2.x
14
+ - test/gemfiles/Gemfile.rails-5.0.x
18
15
  matrix:
19
16
  exclude:
20
- - rvm: 1.9.3
21
- gemfile: test/gemfiles/Gemfile.rails-5.0.x
22
- - rvm: 2.0
23
- gemfile: test/gemfiles/Gemfile.rails-5.0.x
24
- - rvm: 2.1
25
- gemfile: test/gemfiles/Gemfile.rails-5.0.x
26
- - rvm: ruby-head
27
- gemfile: test/gemfiles/Gemfile.rails-4.0.x
28
- - rvm: ruby-head
29
- gemfile: test/gemfiles/Gemfile.rails-4.1.x
17
+ - rvm: 2.1
18
+ gemfile: test/gemfiles/Gemfile.rails-5.0.x
30
19
  allow_failures:
31
- - rvm: ruby-head
20
+ - rvm: ruby-head
21
+ - rvm: jruby-head
22
+ deploy:
23
+ provider: rubygems
24
+ api_key:
25
+ secure: edRiCZPzp3pqBQn3hjeG5WqUNf0eEb8/Ea2VY0jJfQfOHxOYJSATkpdZ5xxOL1YIefk7ERUURY3dKwS/qdSIF2h954QPeOChLTlSaWtFjSNAZIAhH7Ks4vN/q1i7JAWtJRCBOtHlAe9AJj7CvHpUsry3+oHsJ+gXaaA9lntbheE=
26
+ gem: redis-actionpack
27
+ on:
28
+ tags: true
29
+ repo: redis-store/redis-actionpack
@@ -0,0 +1 @@
1
+ * @tubbo
data/Gemfile CHANGED
@@ -1,3 +1,2 @@
1
1
  source 'https://rubygems.org'
2
2
  gemspec
3
- gem 'redis-store-testing' #, path: '../testing'
data/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  __`redis-actionpack`__ provides a session store for __ActionPack__, specifically for __ActionDispatch__. See the main [redis-store readme](https://github.com/redis-store/redis-store) for general guidelines.
4
4
 
5
+ For guidelines on using our underlying cache store, see the main [redis-store readme](https://github.com/redis-store/redis-store).
6
+
7
+ For information on how to use this library in a Rails app, see the [documentation for redis-rails](https://github.com/redis-store/redis-rails).
8
+
9
+ If, for some reason, you're using `ActionDispatch` and not in a Rails app, read on to learn how to install/use this gem by itself!
10
+
5
11
  ## Installation
6
12
 
7
13
  ```ruby
@@ -31,9 +37,9 @@ If you are on **Snow Leopard** you have to run `env ARCHFLAGS="-arch x86_64" bun
31
37
 
32
38
  ## Status
33
39
 
34
- [![Gem Version](https://badge.fury.io/rb/redis-actionpack.png)](http://badge.fury.io/rb/redis-actionpack)
35
- [![Build Status](https://secure.travis-ci.org/redis-store/redis-actionpack.png?branch=master)](http://travis-ci.org/redis-store/redis-actionpack?branch=master)
36
- [![Code Climate](https://codeclimate.com/github/redis-store/redis-actionpack.png)](https://codeclimate.com/github/redis-store/redis-actionpack)
40
+ [![Gem Version](https://badge.fury.io/rb/redis-actionpack.svg)](http://badge.fury.io/rb/redis-actionpack)
41
+ [![Build Status](https://secure.travis-ci.org/redis-store/redis-actionpack.svg?branch=master)](http://travis-ci.org/redis-store/redis-actionpack?branch=master)
42
+ [![Code Climate](https://codeclimate.com/github/redis-store/redis-actionpack.svg)](https://codeclimate.com/github/redis-store/redis-actionpack)
37
43
 
38
44
  ## Copyright
39
45
 
@@ -1,5 +1,5 @@
1
1
  class Redis
2
2
  module ActionPack
3
- VERSION = '5.0.2'
3
+ VERSION = '5.1.0'
4
4
  end
5
5
  end
@@ -12,8 +12,6 @@ Gem::Specification.new do |s|
12
12
  s.description = %q{Redis session store for ActionPack}
13
13
  s.license = 'MIT'
14
14
 
15
- s.rubyforge_project = 'redis-actionpack'
16
-
17
15
  s.files = `git ls-files`.split("\n")
18
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
17
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
@@ -21,10 +19,10 @@ Gem::Specification.new do |s|
21
19
 
22
20
  s.add_runtime_dependency 'redis-store', '>= 1.1.0', '< 2'
23
21
  s.add_runtime_dependency 'redis-rack', '>= 1', '< 3'
24
- s.add_runtime_dependency 'actionpack', '>= 4.0', '< 6'
22
+ s.add_runtime_dependency 'actionpack', '>= 4.0', '< 7'
25
23
 
26
24
  s.add_development_dependency 'rake', '~> 10'
27
- s.add_development_dependency 'bundler', '~> 1.3'
25
+ s.add_development_dependency 'bundler'
28
26
  s.add_development_dependency 'mocha', '~> 0.14.0'
29
27
  s.add_development_dependency 'minitest-rails'
30
28
  s.add_development_dependency 'tzinfo'
@@ -0,0 +1 @@
1
+ <h1>hello world</h1>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-actionpack
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.2
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-16 00:00:00.000000000 Z
11
+ date: 2019-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis-store
@@ -59,7 +59,7 @@ dependencies:
59
59
  version: '4.0'
60
60
  - - "<"
61
61
  - !ruby/object:Gem::Version
62
- version: '6'
62
+ version: '7'
63
63
  type: :runtime
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
@@ -69,7 +69,7 @@ dependencies:
69
69
  version: '4.0'
70
70
  - - "<"
71
71
  - !ruby/object:Gem::Version
72
- version: '6'
72
+ version: '7'
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: rake
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -88,16 +88,16 @@ dependencies:
88
88
  name: bundler
89
89
  requirement: !ruby/object:Gem::Requirement
90
90
  requirements:
91
- - - "~>"
91
+ - - ">="
92
92
  - !ruby/object:Gem::Version
93
- version: '1.3'
93
+ version: '0'
94
94
  type: :development
95
95
  prerelease: false
96
96
  version_requirements: !ruby/object:Gem::Requirement
97
97
  requirements:
98
- - - "~>"
98
+ - - ">="
99
99
  - !ruby/object:Gem::Version
100
- version: '1.3'
100
+ version: '0'
101
101
  - !ruby/object:Gem::Dependency
102
102
  name: mocha
103
103
  requirement: !ruby/object:Gem::Requirement
@@ -163,6 +163,7 @@ extra_rdoc_files: []
163
163
  files:
164
164
  - ".gitignore"
165
165
  - ".travis.yml"
166
+ - CODEOWNERS
166
167
  - Gemfile
167
168
  - MIT-LICENSE
168
169
  - README.md
@@ -174,6 +175,8 @@ files:
174
175
  - test/dummy/.gitignore
175
176
  - test/dummy/Rakefile
176
177
  - test/dummy/app/controllers/test_controller.rb
178
+ - test/dummy/app/views/test/get_session_id.html.erb
179
+ - test/dummy/app/views/test/get_session_value.html.erb
177
180
  - test/dummy/config.ru
178
181
  - test/dummy/config/application.rb
179
182
  - test/dummy/config/boot.rb
@@ -206,8 +209,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
206
209
  - !ruby/object:Gem::Version
207
210
  version: '0'
208
211
  requirements: []
209
- rubyforge_project: redis-actionpack
210
- rubygems_version: 2.6.11
212
+ rubyforge_project:
213
+ rubygems_version: 2.6.14
211
214
  signing_key:
212
215
  specification_version: 4
213
216
  summary: Redis session store for ActionPack
@@ -215,6 +218,8 @@ test_files:
215
218
  - test/dummy/.gitignore
216
219
  - test/dummy/Rakefile
217
220
  - test/dummy/app/controllers/test_controller.rb
221
+ - test/dummy/app/views/test/get_session_id.html.erb
222
+ - test/dummy/app/views/test/get_session_value.html.erb
218
223
  - test/dummy/config.ru
219
224
  - test/dummy/config/application.rb
220
225
  - test/dummy/config/boot.rb