redis-kit 0.0.6 → 0.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: 6be0f57fd2907262b6812ff12bf55a214cbaf21c
4
- data.tar.gz: d72f99087f715bef8d22fa52da7e4b32af176b25
3
+ metadata.gz: 469c5d5cedfb4d86f051f5967d84bafdfeea0699
4
+ data.tar.gz: de5c329955d7ce9ca36666b740c3646ff361c680
5
5
  SHA512:
6
- metadata.gz: 0a5ce7826dcf51a540483430b11547b0dd9b63f56a03f7cdb695ab45811fd580e7050526669c7ee45f11d5b6851889a2ff6044275a3b54c84ff0d696c54c06d7
7
- data.tar.gz: 2416c3f9bdb7dc9edd8862ad230fcf6ea89958c9e8b6bb352bfef8cb4856e28ab9da38fc51e69b82491477569e59946c899d57fdc7d3b5bce94d01af7e5aa4e6
6
+ metadata.gz: 2b0f75b7f8fab0baaef3ab2829c5c4a4fcacf6e6d8d10a59dcc0725ba7eb9fc8bd41cd2e24462b668b4f3ecba3a89c6c76604439a40eb49abacd3009ae3f6cf2
7
+ data.tar.gz: e206b933b6984f659a6308299984a104c8cf98651f7e41ee5937f0c1c14b8c623ee04f484b52b8a1432d6a3516ccbfc62676488b1b323329fafaac691ed98073
data/.travis.yml CHANGED
@@ -1,3 +1,5 @@
1
+ services:
2
+ - redis
1
3
  script: make ci
2
4
  gemfile:
3
5
  - test/railsapi/Gemfile.rails_3_2
@@ -11,7 +13,6 @@ rvm:
11
13
  - 2.0.0
12
14
  - ruby-head
13
15
  - jruby-19mode
14
- - rbx-19mode
15
16
  before_install:
16
17
  - gem install bundler --version '= 1.3.1'
17
18
 
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.1.0
2
+ -----
3
+
4
+ * Update redis, hiredis, and mock_redis dependencies.
5
+
1
6
  0.0.6 (November 29th, 2013)
2
7
  ---------------------------
3
8
 
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- redis-kit (0.0.5)
5
- hiredis (~> 0.4.0)
6
- mock_redis (~> 0.10.0)
7
- redis (~> 3.0.0)
4
+ redis-kit (0.1.0)
5
+ hiredis (~> 0.5.2)
6
+ mock_redis (~> 0.13.2)
7
+ redis (~> 3.0.7)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -21,14 +21,14 @@ GEM
21
21
  thor (>= 0.14.6)
22
22
  guard-minitest (0.5.0)
23
23
  guard (>= 0.4)
24
- hiredis (0.4.5)
24
+ hiredis (0.5.2)
25
25
  listen (2.2.0)
26
26
  celluloid (>= 0.15.2)
27
27
  rb-fsevent (>= 0.9.3)
28
28
  rb-inotify (>= 0.9)
29
29
  lumberjack (1.0.4)
30
30
  method_source (0.8.2)
31
- mock_redis (0.10.0)
31
+ mock_redis (0.13.2)
32
32
  pry (0.9.12.4)
33
33
  coderay (~> 1.0)
34
34
  method_source (~> 0.8)
@@ -37,7 +37,7 @@ GEM
37
37
  rb-fsevent (0.9.3)
38
38
  rb-inotify (0.9.2)
39
39
  ffi (>= 0.5.0)
40
- redis (3.0.6)
40
+ redis (3.0.7)
41
41
  slop (3.4.7)
42
42
  terminal-table (1.4.5)
43
43
  thor (0.18.1)
data/Makefile CHANGED
@@ -1,10 +1,10 @@
1
1
  dependencies:
2
2
  @bundle install
3
3
  @bundle update redis hiredis
4
- @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle install
5
- @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle update redis hiredis rails
6
- @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_head bundle install
7
- @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_head bundle update redis hiredis rails
4
+ @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle
5
+ @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle
6
+ @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_4_1 bundle
7
+ @cd test/railsapi/ ; BUNDLE_GEMFILE=Gemfile.rails_4_1 bundle
8
8
 
9
9
  ci:
10
10
  bundle exec rake
@@ -21,9 +21,9 @@ test:
21
21
  @echo "=================================="
22
22
  @cd test/railsapi/ && BUNDLE_GEMFILE=Gemfile.rails_3_2 bundle exec rake
23
23
  @echo ""
24
- @echo "==================================="
25
- @echo "Running tests against Edge Rails..."
26
- @echo "==================================="
27
- @cd test/railsapi/ && BUNDLE_GEMFILE=Gemfile.rails_head bundle exec rake
24
+ @echo "=================================="
25
+ @echo "Running tests against Rails 4.1..."
26
+ @echo "=================================="
27
+ @cd test/railsapi/ && BUNDLE_GEMFILE=Gemfile.rails_4_1 bundle exec rake
28
28
 
29
29
  .PHONY: test ci dependencies
@@ -1,4 +1,4 @@
1
1
  module RedisKit
2
- VERSION = "0.0.6"
2
+ VERSION = "0.1.0"
3
3
  end
4
4
 
data/redis-kit.gemspec CHANGED
@@ -18,9 +18,9 @@ Gem::Specification.new do |s|
18
18
  s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
19
  s.require_paths = ["lib"]
20
20
 
21
- s.add_dependency "redis", "~> 3.0.0"
22
- s.add_dependency "hiredis", "~> 0.4.0" if RUBY_ENGINE != "jruby"
23
- s.add_dependency "mock_redis", "~> 0.10.0"
21
+ s.add_dependency "redis", "~> 3.0.7"
22
+ s.add_dependency "hiredis", "~> 0.5.2" if RUBY_ENGINE != "jruby"
23
+ s.add_dependency "mock_redis", "~> 0.13.2"
24
24
  s.add_development_dependency "rake", "~> 10.0.0"
25
25
  s.add_development_dependency "rb-fsevent", "~> 0.9.0"
26
26
  s.add_development_dependency "guard", "~> 1.6.0"
@@ -1,14 +1,14 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem "rails", "~> 3.2.0"
4
- gem "rails-api", "~> 0.0.3"
4
+ gem "rails-api", "~> 0.2.1"
5
5
  gem "rake", "~> 0.9.0"
6
- gem "resque", "~> 1.23.0"
6
+ gem "resque", "~> 1.25.0"
7
7
 
8
8
  gem "redis-kit", path: "../../"
9
9
 
10
10
  group :test do
11
11
  gem "pry"
12
- gem "minitest"
12
+ gem "minitest", "~> 4.0"
13
13
  end
14
14
 
@@ -1,20 +1,20 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- redis-kit (0.0.5)
5
- hiredis (~> 0.4.0)
6
- mock_redis (~> 0.10.0)
7
- redis (~> 3.0.0)
4
+ redis-kit (0.0.6)
5
+ hiredis (~> 0.5.2)
6
+ mock_redis (~> 0.13.2)
7
+ redis (~> 3.0.7)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- actionmailer (3.2.15)
13
- actionpack (= 3.2.15)
12
+ actionmailer (3.2.18)
13
+ actionpack (= 3.2.18)
14
14
  mail (~> 2.5.4)
15
- actionpack (3.2.15)
16
- activemodel (= 3.2.15)
17
- activesupport (= 3.2.15)
15
+ actionpack (3.2.18)
16
+ activemodel (= 3.2.18)
17
+ activesupport (= 3.2.18)
18
18
  builder (~> 3.0.0)
19
19
  erubis (~> 2.7.0)
20
20
  journey (~> 1.0.4)
@@ -22,73 +22,66 @@ GEM
22
22
  rack-cache (~> 1.2)
23
23
  rack-test (~> 0.6.1)
24
24
  sprockets (~> 2.2.1)
25
- activemodel (3.2.15)
26
- activesupport (= 3.2.15)
25
+ activemodel (3.2.18)
26
+ activesupport (= 3.2.18)
27
27
  builder (~> 3.0.0)
28
- activerecord (3.2.15)
29
- activemodel (= 3.2.15)
30
- activesupport (= 3.2.15)
28
+ activerecord (3.2.18)
29
+ activemodel (= 3.2.18)
30
+ activesupport (= 3.2.18)
31
31
  arel (~> 3.0.2)
32
32
  tzinfo (~> 0.3.29)
33
- activeresource (3.2.15)
34
- activemodel (= 3.2.15)
35
- activesupport (= 3.2.15)
36
- activesupport (3.2.15)
33
+ activeresource (3.2.18)
34
+ activemodel (= 3.2.18)
35
+ activesupport (= 3.2.18)
36
+ activesupport (3.2.18)
37
37
  i18n (~> 0.6, >= 0.6.4)
38
38
  multi_json (~> 1.0)
39
39
  arel (3.0.3)
40
40
  builder (3.0.4)
41
- coderay (1.0.9)
41
+ coderay (1.1.0)
42
42
  erubis (2.7.0)
43
43
  hike (1.2.3)
44
- hiredis (0.4.5)
45
- hiredis (0.4.5-java)
46
- i18n (0.6.5)
44
+ hiredis (0.5.2)
45
+ i18n (0.6.9)
47
46
  journey (1.0.4)
48
47
  json (1.8.1)
49
- json (1.8.1-java)
50
48
  mail (2.5.4)
51
49
  mime-types (~> 1.16)
52
50
  treetop (~> 1.4.8)
53
- method_source (0.8.1)
51
+ method_source (0.8.2)
54
52
  mime-types (1.25.1)
55
- minitest (4.6.2)
56
- mock_redis (0.10.0)
57
- multi_json (1.8.2)
58
- polyglot (0.3.3)
59
- pry (0.9.12)
60
- coderay (~> 1.0.5)
53
+ minitest (4.7.5)
54
+ mock_redis (0.13.2)
55
+ mono_logger (1.1.0)
56
+ multi_json (1.10.0)
57
+ polyglot (0.3.4)
58
+ pry (0.9.12.6)
59
+ coderay (~> 1.0)
61
60
  method_source (~> 0.8)
62
61
  slop (~> 3.4)
63
- pry (0.9.12-java)
64
- coderay (~> 1.0.5)
65
- method_source (~> 0.8)
66
- slop (~> 3.4)
67
- spoon (~> 0.0)
68
62
  rack (1.4.5)
69
63
  rack-cache (1.2)
70
64
  rack (>= 0.4)
71
- rack-protection (1.4.0)
65
+ rack-protection (1.5.3)
72
66
  rack
73
- rack-ssl (1.3.3)
67
+ rack-ssl (1.3.4)
74
68
  rack
75
69
  rack-test (0.6.2)
76
70
  rack (>= 1.0)
77
- rails (3.2.15)
78
- actionmailer (= 3.2.15)
79
- actionpack (= 3.2.15)
80
- activerecord (= 3.2.15)
81
- activeresource (= 3.2.15)
82
- activesupport (= 3.2.15)
71
+ rails (3.2.18)
72
+ actionmailer (= 3.2.18)
73
+ actionpack (= 3.2.18)
74
+ activerecord (= 3.2.18)
75
+ activeresource (= 3.2.18)
76
+ activesupport (= 3.2.18)
83
77
  bundler (~> 1.0)
84
- railties (= 3.2.15)
85
- rails-api (0.0.3)
86
- actionpack (>= 3.2.6)
87
- railties (>= 3.2.6)
88
- tzinfo (~> 0.3.31)
89
- railties (3.2.15)
90
- actionpack (= 3.2.15)
91
- activesupport (= 3.2.15)
78
+ railties (= 3.2.18)
79
+ rails-api (0.2.1)
80
+ actionpack (>= 3.2.11)
81
+ railties (>= 3.2.11)
82
+ railties (3.2.18)
83
+ actionpack (= 3.2.18)
84
+ activesupport (= 3.2.18)
92
85
  rack-ssl (~> 1.3.2)
93
86
  rake (>= 0.8.7)
94
87
  rdoc (~> 3.4)
@@ -96,43 +89,42 @@ GEM
96
89
  rake (0.9.6)
97
90
  rdoc (3.12.2)
98
91
  json (~> 1.4)
99
- redis (3.0.6)
100
- redis-namespace (1.2.1)
101
- redis (~> 3.0.0)
102
- resque (1.23.0)
92
+ redis (3.0.7)
93
+ redis-namespace (1.4.1)
94
+ redis (~> 3.0.4)
95
+ resque (1.25.1)
96
+ mono_logger (~> 1.0)
103
97
  multi_json (~> 1.0)
104
- redis-namespace (~> 1.0)
98
+ redis-namespace (~> 1.2)
105
99
  sinatra (>= 0.9.2)
106
100
  vegas (~> 0.1.2)
107
- sinatra (1.3.5)
101
+ sinatra (1.4.5)
108
102
  rack (~> 1.4)
109
- rack-protection (~> 1.3)
110
- tilt (~> 1.3, >= 1.3.3)
111
- slop (3.4.3)
112
- spoon (0.0.1)
103
+ rack-protection (~> 1.4)
104
+ tilt (~> 1.3, >= 1.3.4)
105
+ slop (3.5.0)
113
106
  sprockets (2.2.2)
114
107
  hike (~> 1.2)
115
108
  multi_json (~> 1.0)
116
109
  rack (~> 1.0)
117
110
  tilt (~> 1.1, != 1.3.0)
118
- thor (0.18.1)
111
+ thor (0.19.1)
119
112
  tilt (1.4.1)
120
113
  treetop (1.4.15)
121
114
  polyglot
122
115
  polyglot (>= 0.3.1)
123
- tzinfo (0.3.36)
116
+ tzinfo (0.3.39)
124
117
  vegas (0.1.11)
125
118
  rack (>= 1.0.0)
126
119
 
127
120
  PLATFORMS
128
- java
129
121
  ruby
130
122
 
131
123
  DEPENDENCIES
132
- minitest
124
+ minitest (~> 4.0)
133
125
  pry
134
126
  rails (~> 3.2.0)
135
- rails-api (~> 0.0.3)
127
+ rails-api (~> 0.2.1)
136
128
  rake (~> 0.9.0)
137
129
  redis-kit!
138
- resque (~> 1.23.0)
130
+ resque (~> 1.25.0)
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem "rails", "~> 4.1.0"
4
+ gem "rails-api", "~> 0.2.1"
5
+ gem "rake", "~> 0.9.0"
6
+ gem "resque", "~> 1.25.0"
7
+
8
+ gem "redis-kit", path: "../../"
9
+
10
+ group :test do
11
+ gem "pry"
12
+ gem "minitest", "~> 5.0"
13
+ end
14
+
@@ -0,0 +1,128 @@
1
+ PATH
2
+ remote: ../../
3
+ specs:
4
+ redis-kit (0.0.6)
5
+ hiredis (~> 0.5.2)
6
+ mock_redis (~> 0.13.2)
7
+ redis (~> 3.0.7)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ actionmailer (4.1.1)
13
+ actionpack (= 4.1.1)
14
+ actionview (= 4.1.1)
15
+ mail (~> 2.5.4)
16
+ actionpack (4.1.1)
17
+ actionview (= 4.1.1)
18
+ activesupport (= 4.1.1)
19
+ rack (~> 1.5.2)
20
+ rack-test (~> 0.6.2)
21
+ actionview (4.1.1)
22
+ activesupport (= 4.1.1)
23
+ builder (~> 3.1)
24
+ erubis (~> 2.7.0)
25
+ activemodel (4.1.1)
26
+ activesupport (= 4.1.1)
27
+ builder (~> 3.1)
28
+ activerecord (4.1.1)
29
+ activemodel (= 4.1.1)
30
+ activesupport (= 4.1.1)
31
+ arel (~> 5.0.0)
32
+ activesupport (4.1.1)
33
+ i18n (~> 0.6, >= 0.6.9)
34
+ json (~> 1.7, >= 1.7.7)
35
+ minitest (~> 5.1)
36
+ thread_safe (~> 0.1)
37
+ tzinfo (~> 1.1)
38
+ arel (5.0.1.20140414130214)
39
+ builder (3.2.2)
40
+ coderay (1.1.0)
41
+ erubis (2.7.0)
42
+ hike (1.2.3)
43
+ hiredis (0.5.2)
44
+ i18n (0.6.9)
45
+ json (1.8.1)
46
+ mail (2.5.4)
47
+ mime-types (~> 1.16)
48
+ treetop (~> 1.4.8)
49
+ method_source (0.8.2)
50
+ mime-types (1.25.1)
51
+ minitest (5.3.3)
52
+ mock_redis (0.13.2)
53
+ mono_logger (1.1.0)
54
+ multi_json (1.10.0)
55
+ polyglot (0.3.4)
56
+ pry (0.9.12.6)
57
+ coderay (~> 1.0)
58
+ method_source (~> 0.8)
59
+ slop (~> 3.4)
60
+ rack (1.5.2)
61
+ rack-protection (1.5.3)
62
+ rack
63
+ rack-test (0.6.2)
64
+ rack (>= 1.0)
65
+ rails (4.1.1)
66
+ actionmailer (= 4.1.1)
67
+ actionpack (= 4.1.1)
68
+ actionview (= 4.1.1)
69
+ activemodel (= 4.1.1)
70
+ activerecord (= 4.1.1)
71
+ activesupport (= 4.1.1)
72
+ bundler (>= 1.3.0, < 2.0)
73
+ railties (= 4.1.1)
74
+ sprockets-rails (~> 2.0)
75
+ rails-api (0.2.1)
76
+ actionpack (>= 3.2.11)
77
+ railties (>= 3.2.11)
78
+ railties (4.1.1)
79
+ actionpack (= 4.1.1)
80
+ activesupport (= 4.1.1)
81
+ rake (>= 0.8.7)
82
+ thor (>= 0.18.1, < 2.0)
83
+ rake (0.9.6)
84
+ redis (3.0.7)
85
+ redis-namespace (1.4.1)
86
+ redis (~> 3.0.4)
87
+ resque (1.25.1)
88
+ mono_logger (~> 1.0)
89
+ multi_json (~> 1.0)
90
+ redis-namespace (~> 1.2)
91
+ sinatra (>= 0.9.2)
92
+ vegas (~> 0.1.2)
93
+ sinatra (1.4.5)
94
+ rack (~> 1.4)
95
+ rack-protection (~> 1.4)
96
+ tilt (~> 1.3, >= 1.3.4)
97
+ slop (3.5.0)
98
+ sprockets (2.12.1)
99
+ hike (~> 1.2)
100
+ multi_json (~> 1.0)
101
+ rack (~> 1.0)
102
+ tilt (~> 1.1, != 1.3.0)
103
+ sprockets-rails (2.1.3)
104
+ actionpack (>= 3.0)
105
+ activesupport (>= 3.0)
106
+ sprockets (~> 2.8)
107
+ thor (0.19.1)
108
+ thread_safe (0.3.3)
109
+ tilt (1.4.1)
110
+ treetop (1.4.15)
111
+ polyglot
112
+ polyglot (>= 0.3.1)
113
+ tzinfo (1.1.0)
114
+ thread_safe (~> 0.1)
115
+ vegas (0.1.11)
116
+ rack (>= 1.0.0)
117
+
118
+ PLATFORMS
119
+ ruby
120
+
121
+ DEPENDENCIES
122
+ minitest (~> 5.0)
123
+ pry
124
+ rails (~> 4.1.0)
125
+ rails-api (~> 0.2.1)
126
+ rake (~> 0.9.0)
127
+ redis-kit!
128
+ resque (~> 1.25.0)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tyson Tate
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-29 00:00:00.000000000 Z
11
+ date: 2014-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis
@@ -16,42 +16,42 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0
19
+ version: 3.0.7
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0
26
+ version: 3.0.7
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: hiredis
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 0.4.0
33
+ version: 0.5.2
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 0.4.0
40
+ version: 0.5.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mock_redis
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 0.10.0
47
+ version: 0.13.2
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
- version: 0.10.0
54
+ version: 0.13.2
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -134,8 +134,8 @@ files:
134
134
  - test/railsapi/.gitignore
135
135
  - test/railsapi/Gemfile.rails_3_2
136
136
  - test/railsapi/Gemfile.rails_3_2.lock
137
- - test/railsapi/Gemfile.rails_head
138
- - test/railsapi/Gemfile.rails_head.lock
137
+ - test/railsapi/Gemfile.rails_4_1
138
+ - test/railsapi/Gemfile.rails_4_1.lock
139
139
  - test/railsapi/README.rdoc
140
140
  - test/railsapi/Rakefile
141
141
  - test/railsapi/app/controllers/application_controller.rb
@@ -207,8 +207,8 @@ test_files:
207
207
  - test/railsapi/.gitignore
208
208
  - test/railsapi/Gemfile.rails_3_2
209
209
  - test/railsapi/Gemfile.rails_3_2.lock
210
- - test/railsapi/Gemfile.rails_head
211
- - test/railsapi/Gemfile.rails_head.lock
210
+ - test/railsapi/Gemfile.rails_4_1
211
+ - test/railsapi/Gemfile.rails_4_1.lock
212
212
  - test/railsapi/README.rdoc
213
213
  - test/railsapi/Rakefile
214
214
  - test/railsapi/app/controllers/application_controller.rb
@@ -1,14 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem "rails", git: "git://github.com/rails/rails.git"
4
- gem "rails-api", "~> 0.0.3"
5
- gem "rake", "~> 0.9.0"
6
- gem "resque", "~> 1.24.0"
7
-
8
- gem "redis-kit", path: "../../"
9
-
10
- group :test do
11
- gem "pry"
12
- gem "minitest"
13
- end
14
-
@@ -1,145 +0,0 @@
1
- GIT
2
- remote: git://github.com/rails/rails.git
3
- revision: b359c5db9f0e7dfb2cbf34362a9b310cf5aadd3a
4
- specs:
5
- actionmailer (4.0.0.beta1)
6
- actionpack (= 4.0.0.beta1)
7
- mail (~> 2.5.3)
8
- actionpack (4.0.0.beta1)
9
- activesupport (= 4.0.0.beta1)
10
- builder (~> 3.1.0)
11
- erubis (~> 2.7.0)
12
- rack (~> 1.5.2)
13
- rack-test (~> 0.6.2)
14
- activemodel (4.0.0.beta1)
15
- activesupport (= 4.0.0.beta1)
16
- builder (~> 3.1.0)
17
- activerecord (4.0.0.beta1)
18
- activemodel (= 4.0.0.beta1)
19
- activerecord-deprecated_finders (~> 0.0.3)
20
- activesupport (= 4.0.0.beta1)
21
- arel (~> 4.0.0.beta1)
22
- activesupport (4.0.0.beta1)
23
- i18n (~> 0.6, >= 0.6.4)
24
- minitest (~> 4.2)
25
- multi_json (~> 1.3)
26
- thread_safe (~> 0.1)
27
- tzinfo (~> 0.3.33)
28
- rails (4.0.0.beta1)
29
- actionmailer (= 4.0.0.beta1)
30
- actionpack (= 4.0.0.beta1)
31
- activerecord (= 4.0.0.beta1)
32
- activesupport (= 4.0.0.beta1)
33
- bundler (>= 1.3.0, < 2.0)
34
- railties (= 4.0.0.beta1)
35
- sprockets-rails (~> 2.0.0.rc3)
36
- railties (4.0.0.beta1)
37
- actionpack (= 4.0.0.beta1)
38
- activesupport (= 4.0.0.beta1)
39
- rake (>= 0.8.7)
40
- rdoc (~> 3.4)
41
- thor (>= 0.17.0, < 2.0)
42
-
43
- PATH
44
- remote: ../../
45
- specs:
46
- redis-kit (0.0.5)
47
- hiredis (~> 0.4.0)
48
- mock_redis (~> 0.10.0)
49
- redis (~> 3.0.0)
50
-
51
- GEM
52
- remote: https://rubygems.org/
53
- specs:
54
- activerecord-deprecated_finders (0.0.3)
55
- arel (4.0.0.beta1)
56
- atomic (1.0.1)
57
- atomic (1.0.1-java)
58
- builder (3.1.4)
59
- coderay (1.0.9)
60
- erubis (2.7.0)
61
- hike (1.2.1)
62
- hiredis (0.4.5)
63
- hiredis (0.4.5-java)
64
- i18n (0.6.4)
65
- json (1.7.7)
66
- json (1.7.7-java)
67
- mail (2.5.3)
68
- i18n (>= 0.4.0)
69
- mime-types (~> 1.16)
70
- treetop (~> 1.4.8)
71
- method_source (0.8.1)
72
- mime-types (1.21)
73
- minitest (4.6.2)
74
- mock_redis (0.10.0)
75
- mono_logger (1.0.1)
76
- multi_json (1.7.3)
77
- polyglot (0.3.3)
78
- pry (0.9.12)
79
- coderay (~> 1.0.5)
80
- method_source (~> 0.8)
81
- slop (~> 3.4)
82
- pry (0.9.12-java)
83
- coderay (~> 1.0.5)
84
- method_source (~> 0.8)
85
- slop (~> 3.4)
86
- spoon (~> 0.0)
87
- rack (1.5.2)
88
- rack-protection (1.5.0)
89
- rack
90
- rack-test (0.6.2)
91
- rack (>= 1.0)
92
- rails-api (0.0.3)
93
- actionpack (>= 3.2.6)
94
- railties (>= 3.2.6)
95
- tzinfo (~> 0.3.31)
96
- rake (0.9.6)
97
- rdoc (3.12.2)
98
- json (~> 1.4)
99
- redis (3.0.6)
100
- redis-namespace (1.3.0)
101
- redis (~> 3.0.0)
102
- resque (1.24.1)
103
- mono_logger (~> 1.0)
104
- multi_json (~> 1.0)
105
- redis-namespace (~> 1.2)
106
- sinatra (>= 0.9.2)
107
- vegas (~> 0.1.2)
108
- sinatra (1.4.2)
109
- rack (~> 1.5, >= 1.5.2)
110
- rack-protection (~> 1.4)
111
- tilt (~> 1.3, >= 1.3.4)
112
- slop (3.4.3)
113
- spoon (0.0.1)
114
- sprockets (2.9.0)
115
- hike (~> 1.2)
116
- multi_json (~> 1.0)
117
- rack (~> 1.0)
118
- tilt (~> 1.1, != 1.3.0)
119
- sprockets-rails (2.0.0.rc3)
120
- actionpack (>= 3.0)
121
- activesupport (>= 3.0)
122
- sprockets (~> 2.8)
123
- thor (0.17.0)
124
- thread_safe (0.1.0)
125
- atomic
126
- tilt (1.4.1)
127
- treetop (1.4.12)
128
- polyglot
129
- polyglot (>= 0.3.1)
130
- tzinfo (0.3.36)
131
- vegas (0.1.11)
132
- rack (>= 1.0.0)
133
-
134
- PLATFORMS
135
- java
136
- ruby
137
-
138
- DEPENDENCIES
139
- minitest
140
- pry
141
- rails!
142
- rails-api (~> 0.0.3)
143
- rake (~> 0.9.0)
144
- redis-kit!
145
- resque (~> 1.24.0)