redis-activesupport 4.1.1 → 4.1.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 +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +5 -0
- data/gemfiles/Gemfile.activesupport-3.x +13 -0
- data/gemfiles/Gemfile.activesupport-4.x +13 -0
- data/redis-activesupport.gemspec +4 -5
- data/test/test_helper.rb +1 -0
- metadata +9 -8
- data/lib/redis/activesupport/version.rb +0 -5
- data/test/redis/activesupport/version_test.rb +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b44becd4396dcb98966deca528df047c052d9ef2
|
|
4
|
+
data.tar.gz: 47a14e68f71ef94decd0b48f72bbfb52629044db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33e6bb475c47f4b2193e16149879c4b7a1254d4a5d24beae7ae624c4d2be95f5a29cf2562e8e7b562e1f7fa711af340fa688c4b559157033f29735430c247c78
|
|
7
|
+
data.tar.gz: 678eb18506a399f8d579b3498edec7ecadcc539576a0dc6f1c24d5def92baa42e167b5b74b16a41ad2244d9221d89c9daa18b66ab231d08b730a727cee47967e
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
source "http://rubygems.org"
|
|
2
|
+
|
|
3
|
+
gem 'redis-store', '~> 1.1.0'
|
|
4
|
+
gem 'activesupport', '~> 3'
|
|
5
|
+
|
|
6
|
+
group :development do
|
|
7
|
+
gem 'rake', '~> 10'
|
|
8
|
+
gem 'bundler', '~> 1.3'
|
|
9
|
+
gem 'mocha', '~> 0.14.0'
|
|
10
|
+
gem 'minitest', '~> 4.2'
|
|
11
|
+
gem 'connection_pool', '~> 1.2.0'
|
|
12
|
+
gem 'redis-store-testing'
|
|
13
|
+
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
source "http://rubygems.org"
|
|
2
|
+
|
|
3
|
+
gem 'redis-store', '~> 1.1.0'
|
|
4
|
+
gem 'activesupport', '~> 4'
|
|
5
|
+
|
|
6
|
+
group :development do
|
|
7
|
+
gem 'rake', '~> 10'
|
|
8
|
+
gem 'bundler', '~> 1.3'
|
|
9
|
+
gem 'mocha', '~> 0.14.0'
|
|
10
|
+
gem 'minitest', '~> 4.2'
|
|
11
|
+
gem 'connection_pool', '~> 1.2.0'
|
|
12
|
+
gem 'redis-store-testing'
|
|
13
|
+
end
|
data/redis-activesupport.gemspec
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
2
|
$:.push File.expand_path('../lib', __FILE__)
|
|
3
|
-
require 'redis/activesupport/version'
|
|
4
3
|
|
|
5
4
|
Gem::Specification.new do |s|
|
|
6
5
|
s.name = 'redis-activesupport'
|
|
7
|
-
s.version =
|
|
8
|
-
s.authors = ['Luca Guidi']
|
|
9
|
-
s.email = ['me@lucaguidi.com']
|
|
6
|
+
s.version = '4.1.2'
|
|
7
|
+
s.authors = ['Luca Guidi', 'Ryan Bigg']
|
|
8
|
+
s.email = ['me@lucaguidi.com', 'me@ryanbigg.com']
|
|
10
9
|
s.homepage = 'http://redis-store.org/redis-activesupport'
|
|
11
10
|
s.summary = %q{Redis store for ActiveSupport}
|
|
12
11
|
s.description = %q{Redis store for ActiveSupport}
|
|
@@ -20,7 +19,7 @@ Gem::Specification.new do |s|
|
|
|
20
19
|
s.require_paths = ['lib']
|
|
21
20
|
|
|
22
21
|
s.add_runtime_dependency 'redis-store', '~> 1.1.0'
|
|
23
|
-
s.add_runtime_dependency 'activesupport', '~>
|
|
22
|
+
s.add_runtime_dependency 'activesupport', '~> 3'
|
|
24
23
|
|
|
25
24
|
s.add_development_dependency 'rake', '~> 10'
|
|
26
25
|
s.add_development_dependency 'bundler', '~> 1.3'
|
data/test/test_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redis-activesupport
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luca Guidi
|
|
8
|
+
- Ryan Bigg
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
12
|
+
date: 2015-09-02 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: redis-store
|
|
@@ -30,14 +31,14 @@ dependencies:
|
|
|
30
31
|
requirements:
|
|
31
32
|
- - "~>"
|
|
32
33
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
34
|
+
version: '3'
|
|
34
35
|
type: :runtime
|
|
35
36
|
prerelease: false
|
|
36
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
38
|
requirements:
|
|
38
39
|
- - "~>"
|
|
39
40
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
41
|
+
version: '3'
|
|
41
42
|
- !ruby/object:Gem::Dependency
|
|
42
43
|
name: rake
|
|
43
44
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -125,6 +126,7 @@ dependencies:
|
|
|
125
126
|
description: Redis store for ActiveSupport
|
|
126
127
|
email:
|
|
127
128
|
- me@lucaguidi.com
|
|
129
|
+
- me@ryanbigg.com
|
|
128
130
|
executables: []
|
|
129
131
|
extensions: []
|
|
130
132
|
extra_rdoc_files: []
|
|
@@ -135,12 +137,12 @@ files:
|
|
|
135
137
|
- MIT-LICENSE
|
|
136
138
|
- README.md
|
|
137
139
|
- Rakefile
|
|
140
|
+
- gemfiles/Gemfile.activesupport-3.x
|
|
141
|
+
- gemfiles/Gemfile.activesupport-4.x
|
|
138
142
|
- lib/active_support/cache/redis_store.rb
|
|
139
143
|
- lib/redis-activesupport.rb
|
|
140
|
-
- lib/redis/activesupport/version.rb
|
|
141
144
|
- redis-activesupport.gemspec
|
|
142
145
|
- test/active_support/cache/redis_store_test.rb
|
|
143
|
-
- test/redis/activesupport/version_test.rb
|
|
144
146
|
- test/test_helper.rb
|
|
145
147
|
homepage: http://redis-store.org/redis-activesupport
|
|
146
148
|
licenses:
|
|
@@ -162,11 +164,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
162
164
|
version: '0'
|
|
163
165
|
requirements: []
|
|
164
166
|
rubyforge_project: redis-activesupport
|
|
165
|
-
rubygems_version: 2.4.
|
|
167
|
+
rubygems_version: 2.4.5.1
|
|
166
168
|
signing_key:
|
|
167
169
|
specification_version: 4
|
|
168
170
|
summary: Redis store for ActiveSupport
|
|
169
171
|
test_files:
|
|
170
172
|
- test/active_support/cache/redis_store_test.rb
|
|
171
|
-
- test/redis/activesupport/version_test.rb
|
|
172
173
|
- test/test_helper.rb
|