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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 64b2b49c1f7d423deec69ac3a844110f7324e6e5
4
- data.tar.gz: d76eeb83e1ffbacc5d2527ae41a9ff3d56b0bac3
3
+ metadata.gz: b44becd4396dcb98966deca528df047c052d9ef2
4
+ data.tar.gz: 47a14e68f71ef94decd0b48f72bbfb52629044db
5
5
  SHA512:
6
- metadata.gz: a3d10878da4ffb180e48d1b520aac5c03189be75c803e40907d8ae616a917430263f40e2cde3e449f38aedfdfab1603e25a1e9626f78eaa2d2601820373a20e3
7
- data.tar.gz: 0399f77052e5660accfa3349a68571f11bcab77d1fc92e9652f3669df08cdf2caebf6f08a38107c3dc6ae7861183edb086a0fc54ebfb78c1f04044721910efbd
6
+ metadata.gz: 33e6bb475c47f4b2193e16149879c4b7a1254d4a5d24beae7ae624c4d2be95f5a29cf2562e8e7b562e1f7fa711af340fa688c4b559157033f29735430c247c78
7
+ data.tar.gz: 678eb18506a399f8d579b3498edec7ecadcc539576a0dc6f1c24d5def92baa42e167b5b74b16a41ad2244d9221d89c9daa18b66ab231d08b730a727cee47967e
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  Gemfile.lock
2
2
  *.gem
3
3
  tmp/
4
+ gemfiles/*.lock
@@ -1,8 +1,13 @@
1
1
  language: ruby
2
2
  script: 'bundle exec rake'
3
+ gemfile:
4
+ - gemfiles/Gemfile.activesupport-3.x
5
+ - gemfiles/Gemfile.activesupport-4.x
3
6
  rvm:
4
7
  - 1.9.3
5
8
  - 2.0.0
9
+ - 2.1.5
10
+ - 2.2.3
6
11
  - ruby-head
7
12
  - rbx-19mode
8
13
  - jruby-19mode
@@ -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
@@ -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 = Redis::ActiveSupport::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', '~> 4'
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'
@@ -4,3 +4,4 @@ require 'mocha/setup'
4
4
  require 'active_support'
5
5
  require 'active_support/cache/redis_store'
6
6
 
7
+ puts "Testing against ActiveSupport v.#{ActiveSupport::VERSION::STRING}"
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.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-08-04 00:00:00.000000000 Z
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: '4'
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: '4'
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.8
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
@@ -1,5 +0,0 @@
1
- class Redis
2
- module ActiveSupport
3
- VERSION = '4.1.1'
4
- end
5
- end
@@ -1,7 +0,0 @@
1
- require 'test_helper'
2
-
3
- describe Redis::ActiveSupport::VERSION do
4
- it 'returns current version' do
5
- Redis::ActiveSupport::VERSION.must_equal '4.1.1'
6
- end
7
- end