vanity 3.0.0 → 3.0.1

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
  SHA256:
3
- metadata.gz: 75725b5c7ca4f1b1d497c648e535b172252c8a15549b2ef02e34db481c82a09c
4
- data.tar.gz: ef60692e07000fdb1459a9cd9e0ec335678fa1421eb972e9637f6b96ac723a12
3
+ metadata.gz: 7481c8ea284e72b569511d54af761ad1626fdfe9246dbb0750fdf56d5f04b2ba
4
+ data.tar.gz: 8ebab61bbb360d445e30d555114a006608693499878cf9655b6765b0148959da
5
5
  SHA512:
6
- metadata.gz: ab807463d789e567bd9c496e0ea97964dc7086a29428b7b9be002e03c3cf117838d19692bc0904f96aeebbea4c65a04c1360d62a98229989e7168c2a0abc9912
7
- data.tar.gz: d67cda04066f6fe197b24105b129acafe0c94502fe30d686d09940e5e32d8fbd596a82c6e0f401bbb9e067de7fdb26043abdae6e7de0f1b3ba12f66700911100
6
+ metadata.gz: 930f5cd9d45efdbd8bb9463cfe40914d3e6f87a57cd481d1accc5c7bd328aaf2d52e18a132665dc5100deda3f80662bcc96d94ffab76499c05a1c7b5a14aaf68
7
+ data.tar.gz: 0aa058369c4f8218be1837d24bbc9c68e5f27110e9829a97aab1e8183d5748e0f614be9901de4f9fd8b266dceb0342efbe57baef9b320cd17c69db1574575dfc
@@ -0,0 +1,55 @@
1
+ name: Test
2
+ on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+ branches: '*'
8
+
9
+ jobs:
10
+ test:
11
+ name: Test
12
+ runs-on: ubuntu-latest
13
+ timeout-minutes: 15
14
+ services:
15
+ redis:
16
+ image: redis
17
+ ports:
18
+ - 6379:6379
19
+ mongo:
20
+ image: mongo
21
+ ports:
22
+ - 27017:27017
23
+ strategy:
24
+ matrix:
25
+ ruby:
26
+ - 2.5
27
+ # - jruby-9.2.20.1
28
+ db:
29
+ - mongodb
30
+ - redis
31
+ - active_record
32
+ gemfile:
33
+ - gemfiles/rails42.gemfile
34
+ - gemfiles/rails42_protected_attributes.gemfile
35
+ - gemfiles/rails51.gemfile
36
+ - gemfiles/rails52.gemfile
37
+ - gemfiles/rails60.gemfile
38
+ - gemfiles/rails61.gemfile
39
+ exclude:
40
+ - ruby: jruby-9.1.13.0
41
+ gemfile: gemfiles/rails5.gemfile
42
+ env:
43
+ DB: ${{ matrix.db }}
44
+ BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }}
45
+ steps:
46
+ - name: Checkout code
47
+ uses: actions/checkout@v2
48
+
49
+ - name: Set up Ruby
50
+ uses: ruby/setup-ruby@v1
51
+ with:
52
+ ruby-version: ${{ matrix.ruby }}
53
+ bundler-cache: true
54
+ - name: Run Tests
55
+ run: bundle exec rake test
data/Appraisals CHANGED
@@ -1,7 +1,7 @@
1
1
  appraise "rails42" do
2
2
  gem "mocha", "~> 1.0", :require=>false
3
3
  gem "rails", "4.2.9"
4
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
4
+ gem "fastthread", :github => "zoltankiss/fastthread", :platforms => :mri_20
5
5
  gem "passenger", "~>3.0"
6
6
  end
7
7
 
@@ -9,20 +9,34 @@ appraise "rails42-protected_attributes" do
9
9
  gem "protected_attributes", "1.1.0"
10
10
  gem "mocha", "~> 1.0", :require=>false
11
11
  gem "rails", "4.2.9"
12
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
12
+ gem "fastthread", :github => "zoltankiss/fastthread", :platforms => :mri_20
13
13
  gem "passenger", "~>3.0"
14
14
  end
15
15
 
16
16
  appraise "rails51" do
17
17
  gem "mocha", "~> 1.0", :require=>false
18
18
  gem "rails", "~>5.1.0"
19
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
19
+ gem "fastthread", :github => "zoltankiss/fastthread", :platforms => :mri_20
20
20
  gem "passenger", "~>3.0"
21
21
  end
22
22
 
23
23
  appraise "rails52" do
24
24
  gem "mocha", "~> 1.0", :require=>false
25
25
  gem "rails", "~>5.2.0"
26
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
26
+ gem "fastthread", :github => "zoltankiss/fastthread", :platforms => :mri_20
27
+ gem "passenger", "~>3.0"
28
+ end
29
+
30
+ appraise "rails60" do
31
+ gem "mocha", "~> 1.0", :require=>false
32
+ gem "rails", "~>5.2.0"
33
+ gem "fastthread", :github => "zoltankiss/fastthread", :platforms => :mri_20
34
+ gem "passenger", "~>3.0"
35
+ end
36
+
37
+ appraise "rails61" do
38
+ gem "mocha", "~> 1.0", :require=>false
39
+ gem "rails", "~>5.2.0"
40
+ gem "fastthread", :github => "zoltankiss/fastthread", :platforms => :mri_20
27
41
  gem "passenger", "~>3.0"
28
42
  end
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 3.0.1 (2022-01-26)
2
+
3
+ * Update template rendering and update_attributes for Rails 6.1 compatibility (@bensheldon)
4
+
1
5
  == 3.0.0 (2018-11-02)
2
6
 
3
7
  * Fully destroy experiments using the Redis adapter (@urbanautomaton)
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2
3
 
3
4
  # "development" gems in gemspec are required for testing, gems in the
4
5
  # development group here are for documentation
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vanity (3.0.0)
4
+ vanity (3.0.1)
5
5
  i18n
6
6
 
7
7
  GEM
@@ -15,7 +15,7 @@ GEM
15
15
  activerecord (>= 2.2)
16
16
  activesupport (2.3.14)
17
17
  addressable (2.2.7)
18
- appraisal (2.0.2)
18
+ appraisal (2.4.1)
19
19
  bundler
20
20
  rake
21
21
  thor (>= 0.14.0)
@@ -32,18 +32,18 @@ GEM
32
32
  execjs
33
33
  coffee-script-source (1.9.1)
34
34
  colorator (0.1)
35
- concurrent-ruby (1.0.5)
35
+ concurrent-ruby (1.1.9)
36
36
  crack (0.3.1)
37
37
  execjs (2.5.2)
38
38
  fakefs (0.6.7)
39
39
  fast-stemmer (1.0.2)
40
- ffi (1.9.8)
41
- ffi (1.9.8-java)
40
+ ffi (1.15.5)
41
+ ffi (1.15.5-java)
42
42
  garb (0.9.1)
43
43
  activesupport (>= 2.2.0)
44
44
  crack (>= 0.1.6)
45
45
  hitimes (1.2.2)
46
- i18n (1.0.1)
46
+ i18n (1.9.0)
47
47
  concurrent-ruby (~> 1.0)
48
48
  integration (0.1.0)
49
49
  jdbc-sqlite3 (3.8.7)
@@ -97,7 +97,7 @@ GEM
97
97
  posix-spawn (~> 0.3.6)
98
98
  yajl-ruby (~> 1.2.0)
99
99
  rack (1.1.3)
100
- rake (10.1.0)
100
+ rake (13.0.6)
101
101
  rb-fsevent (0.9.4)
102
102
  rb-inotify (0.9.5)
103
103
  ffi (>= 0.5.0)
@@ -112,7 +112,7 @@ GEM
112
112
  spoon (0.0.6)
113
113
  ffi
114
114
  sqlite3 (1.3.10)
115
- thor (0.20.0)
115
+ thor (1.2.1)
116
116
  timecop (0.3.5)
117
117
  timers (4.0.1)
118
118
  hitimes
@@ -131,7 +131,7 @@ PLATFORMS
131
131
  DEPENDENCIES
132
132
  RedCloth
133
133
  activerecord-jdbc-adapter
134
- appraisal (~> 2.0.0)
134
+ appraisal (~> 2.0)
135
135
  bundler (>= 1.8.0)
136
136
  fakefs
137
137
  garb (< 0.9.2)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Vanity
2
- [![Build
3
- Status](https://travis-ci.org/assaf/vanity.png?branch=master)](https://travis-ci.org/assaf/vanity)
2
+ [![Test Status](https://github.com/assaf/vanity/workflows/Test/badge.svg)](https://github.com/assaf/vanity/actions)
3
+
4
4
 
5
5
  Vanity is an A/B testing framework for Rails that is datastore agnostic.
6
6
 
@@ -425,7 +425,7 @@ Go ahead and target a pull request against the `gh-pages` branch.
425
425
  prepare the test suite to run against multiple versions of Rails
426
426
  * Fix, patch, enhance, document, improve, sprinkle pixie dust
427
427
  * Tests. Please. Run `appraisal rake test`, of if you can, `rake test:all`.
428
- (This project uses Travis CI where the test suite is run against multiple
428
+ (This project uses Github Actions where the test suite is run against multiple
429
429
  versions of ruby, rails and backends.)
430
430
  * Send a pull request on GitHub
431
431
 
@@ -3,15 +3,15 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rack"
6
- gem "redis", "= 3.3.3"
6
+ gem "redis", ">= 3.2.1"
7
7
  gem "redis-namespace", ">= 1.1.0"
8
8
  gem "mongo", "~> 2.1"
9
9
  gem "integration", "<= 0.1.0"
10
10
  gem "rubystats", ">= 0.2.5"
11
- gem "garb", "< 0.9.2", :require => false
12
- gem "mocha", "~> 1.0", :require => false
11
+ gem "garb", "< 0.9.2", require: false
12
+ gem "mocha", "~> 1.0", require: false
13
13
  gem "rails", "4.2.9"
14
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
14
+ gem "fastthread", platforms: :mri_20, git: "https://github.com/zoltankiss/fastthread.git"
15
15
  gem "passenger", "~>3.0"
16
16
 
17
17
  group :development do
@@ -30,4 +30,4 @@ platforms :jruby do
30
30
  gem "jdbc-sqlite3"
31
31
  end
32
32
 
33
- gemspec :development_group => :test, :path => "../"
33
+ gemspec development_group: :test, path: "../"
@@ -1,5 +1,5 @@
1
1
  GIT
2
- remote: git://github.com/zoltankiss/fastthread.git
2
+ remote: https://github.com/zoltankiss/fastthread.git
3
3
  revision: cefbca3009b9c68df5e473d840462ebcc7fa1504
4
4
  specs:
5
5
  fastthread (1.0.7)
@@ -7,7 +7,7 @@ GIT
7
7
  PATH
8
8
  remote: ..
9
9
  specs:
10
- vanity (3.0.0)
10
+ vanity (3.0.1)
11
11
  i18n
12
12
 
13
13
  GEM
@@ -81,8 +81,8 @@ GEM
81
81
  execjs (2.5.2)
82
82
  fakefs (0.6.7)
83
83
  fast-stemmer (1.0.2)
84
- ffi (1.9.8)
85
- ffi (1.9.8-java)
84
+ ffi (1.15.5)
85
+ ffi (1.15.5-java)
86
86
  garb (0.9.1)
87
87
  activesupport (>= 2.2.0)
88
88
  crack (>= 0.1.6)
@@ -131,15 +131,17 @@ GEM
131
131
  metaclass (0.0.4)
132
132
  method_source (0.8.2)
133
133
  mini_mime (1.0.0)
134
- mini_portile2 (2.3.0)
134
+ mini_portile2 (2.6.1)
135
135
  minitest (5.11.3)
136
136
  mocha (1.7.0)
137
137
  metaclass (~> 0.0.1)
138
138
  mongo (2.2.3)
139
139
  bson (~> 4.0)
140
- nokogiri (1.8.3)
141
- mini_portile2 (~> 2.3.0)
142
- nokogiri (1.8.3-java)
140
+ nokogiri (1.12.5)
141
+ mini_portile2 (~> 2.6.1)
142
+ racc (~> 1.4)
143
+ nokogiri (1.12.5-java)
144
+ racc (~> 1.4)
143
145
  parslet (1.5.0)
144
146
  blankslate (~> 2.0)
145
147
  passenger (3.0.21)
@@ -160,6 +162,8 @@ GEM
160
162
  pygments.rb (0.6.3)
161
163
  posix-spawn (~> 0.3.6)
162
164
  yajl-ruby (~> 1.2.0)
165
+ racc (1.6.0)
166
+ racc (1.6.0-java)
163
167
  rack (1.6.10)
164
168
  rack-test (0.6.3)
165
169
  rack (>= 1.0)
@@ -232,7 +236,7 @@ PLATFORMS
232
236
  DEPENDENCIES
233
237
  RedCloth
234
238
  activerecord-jdbc-adapter
235
- appraisal (~> 2.0.0)
239
+ appraisal (~> 2.0)
236
240
  bundler (>= 1.8.0)
237
241
  fakefs
238
242
  fastthread!
@@ -248,7 +252,7 @@ DEPENDENCIES
248
252
  rack
249
253
  rails (= 4.2.9)
250
254
  rake
251
- redis (= 3.3.3)
255
+ redis (>= 3.2.1)
252
256
  redis-namespace (>= 1.1.0)
253
257
  rubystats (>= 0.2.5)
254
258
  sqlite3 (~> 1.3.10)
@@ -258,4 +262,4 @@ DEPENDENCIES
258
262
  yard
259
263
 
260
264
  BUNDLED WITH
261
- 1.17.1
265
+ 1.17.2
@@ -3,16 +3,16 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rack"
6
- gem "redis", "= 3.3.3"
6
+ gem "redis", ">= 3.2.1"
7
7
  gem "redis-namespace", ">= 1.1.0"
8
8
  gem "mongo", "~> 2.1"
9
9
  gem "integration", "<= 0.1.0"
10
10
  gem "rubystats", ">= 0.2.5"
11
- gem "garb", "< 0.9.2", :require => false
11
+ gem "garb", "< 0.9.2", require: false
12
12
  gem "protected_attributes", "1.1.0"
13
- gem "mocha", "~> 1.0", :require => false
13
+ gem "mocha", "~> 1.0", require: false
14
14
  gem "rails", "4.2.9"
15
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
15
+ gem "fastthread", platforms: :mri_20, git: "https://github.com/zoltankiss/fastthread.git"
16
16
  gem "passenger", "~>3.0"
17
17
 
18
18
  group :development do
@@ -31,4 +31,4 @@ platforms :jruby do
31
31
  gem "jdbc-sqlite3"
32
32
  end
33
33
 
34
- gemspec :development_group => :test, :path => "../"
34
+ gemspec development_group: :test, path: "../"
@@ -1,5 +1,5 @@
1
1
  GIT
2
- remote: git://github.com/zoltankiss/fastthread.git
2
+ remote: https://github.com/zoltankiss/fastthread.git
3
3
  revision: cefbca3009b9c68df5e473d840462ebcc7fa1504
4
4
  specs:
5
5
  fastthread (1.0.7)
@@ -7,7 +7,7 @@ GIT
7
7
  PATH
8
8
  remote: ..
9
9
  specs:
10
- vanity (3.0.0)
10
+ vanity (3.0.1)
11
11
  i18n
12
12
 
13
13
  GEM
@@ -79,8 +79,8 @@ GEM
79
79
  execjs (2.5.2)
80
80
  fakefs (0.6.7)
81
81
  fast-stemmer (1.0.2)
82
- ffi (1.9.10)
83
- ffi (1.9.10-java)
82
+ ffi (1.15.5)
83
+ ffi (1.15.5-java)
84
84
  garb (0.9.1)
85
85
  activesupport (>= 2.2.0)
86
86
  crack (>= 0.1.6)
@@ -128,15 +128,17 @@ GEM
128
128
  metaclass (0.0.4)
129
129
  method_source (0.8.2)
130
130
  mini_mime (1.0.0)
131
- mini_portile2 (2.3.0)
131
+ mini_portile2 (2.6.1)
132
132
  minitest (5.11.3)
133
133
  mocha (1.7.0)
134
134
  metaclass (~> 0.0.1)
135
135
  mongo (2.2.3)
136
136
  bson (~> 4.0)
137
- nokogiri (1.8.3)
138
- mini_portile2 (~> 2.3.0)
139
- nokogiri (1.8.3-java)
137
+ nokogiri (1.12.5)
138
+ mini_portile2 (~> 2.6.1)
139
+ racc (~> 1.4)
140
+ nokogiri (1.12.5-java)
141
+ racc (~> 1.4)
140
142
  parslet (1.5.0)
141
143
  blankslate (~> 2.0)
142
144
  passenger (3.0.21)
@@ -159,6 +161,8 @@ GEM
159
161
  pygments.rb (0.6.3)
160
162
  posix-spawn (~> 0.3.6)
161
163
  yajl-ruby (~> 1.2.0)
164
+ racc (1.6.0)
165
+ racc (1.6.0-java)
162
166
  rack (1.6.10)
163
167
  rack-test (0.6.3)
164
168
  rack (>= 1.0)
@@ -230,7 +234,7 @@ PLATFORMS
230
234
  DEPENDENCIES
231
235
  RedCloth
232
236
  activerecord-jdbc-adapter
233
- appraisal (~> 2.0.0)
237
+ appraisal (~> 2.0)
234
238
  bundler (>= 1.8.0)
235
239
  fakefs
236
240
  fastthread!
@@ -247,7 +251,7 @@ DEPENDENCIES
247
251
  rack
248
252
  rails (= 4.2.9)
249
253
  rake
250
- redis (= 3.3.3)
254
+ redis (>= 3.2.1)
251
255
  redis-namespace (>= 1.1.0)
252
256
  rubystats (>= 0.2.5)
253
257
  sqlite3 (~> 1.3.10)
@@ -257,4 +261,4 @@ DEPENDENCIES
257
261
  yard
258
262
 
259
263
  BUNDLED WITH
260
- 1.17.1
264
+ 1.17.2
@@ -3,15 +3,15 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rack"
6
- gem "redis", ">= 4.0.0"
7
- gem "redis-namespace", ">= 1.6.0"
6
+ gem "redis", ">= 3.2.1"
7
+ gem "redis-namespace", ">= 1.1.0"
8
8
  gem "mongo", "~> 2.1"
9
9
  gem "integration", "<= 0.1.0"
10
10
  gem "rubystats", ">= 0.2.5"
11
- gem "garb", "< 0.9.2", :require => false
12
- gem "mocha", "~> 1.0", :require => false
11
+ gem "garb", "< 0.9.2", require: false
12
+ gem "mocha", "~> 1.0", require: false
13
13
  gem "rails", "~>5.1.0"
14
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
14
+ gem "fastthread", platforms: :mri_20, git: "https://github.com/zoltankiss/fastthread.git"
15
15
  gem "passenger", "~>3.0"
16
16
 
17
17
  group :development do
@@ -30,4 +30,4 @@ platforms :jruby do
30
30
  gem "jdbc-sqlite3"
31
31
  end
32
32
 
33
- gemspec :development_group => :test, :path => "../"
33
+ gemspec development_group: :test, path: "../"
@@ -1,5 +1,5 @@
1
1
  GIT
2
- remote: git://github.com/zoltankiss/fastthread.git
2
+ remote: https://github.com/zoltankiss/fastthread.git
3
3
  revision: cefbca3009b9c68df5e473d840462ebcc7fa1504
4
4
  specs:
5
5
  fastthread (1.0.7)
@@ -7,13 +7,14 @@ GIT
7
7
  PATH
8
8
  remote: ..
9
9
  specs:
10
- vanity (3.0.0)
10
+ vanity (3.0.1)
11
11
  i18n
12
12
 
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- RedCloth (4.3.2)
16
+ RedCloth (4.2.9)
17
+ RedCloth (4.2.9-java)
17
18
  actioncable (5.1.6)
18
19
  actionpack (= 5.1.6)
19
20
  nio4r (~> 2.0)
@@ -46,6 +47,8 @@ GEM
46
47
  activemodel (= 5.1.6)
47
48
  activesupport (= 5.1.6)
48
49
  arel (~> 8.0)
50
+ activerecord-jdbc-adapter (51.8-java)
51
+ activerecord (~> 5.1.0)
49
52
  activesupport (5.1.6)
50
53
  concurrent-ruby (~> 1.0, >= 1.0.2)
51
54
  i18n (>= 0.7, < 2)
@@ -60,6 +63,7 @@ GEM
60
63
  arel (8.0.0)
61
64
  blankslate (2.1.2.4)
62
65
  bson (4.3.0)
66
+ bson (4.3.0-java)
63
67
  builder (3.2.3)
64
68
  classifier-reborn (2.2.0)
65
69
  fast-stemmer (~> 1.0)
@@ -70,6 +74,7 @@ GEM
70
74
  coffee-script-source (1.11.1)
71
75
  colorator (0.1)
72
76
  concurrent-ruby (1.0.5)
77
+ concurrent-ruby (1.0.5-java)
73
78
  crack (0.4.3)
74
79
  safe_yaml (~> 1.0.0)
75
80
  crass (1.0.4)
@@ -80,7 +85,8 @@ GEM
80
85
  faraday (0.15.2)
81
86
  multipart-post (>= 1.2, < 3)
82
87
  fast-stemmer (1.0.2)
83
- ffi (1.9.25)
88
+ ffi (1.15.5)
89
+ ffi (1.15.5-java)
84
90
  garb (0.9.1)
85
91
  activesupport (>= 2.2.0)
86
92
  crack (>= 0.1.6)
@@ -90,6 +96,7 @@ GEM
90
96
  i18n (1.0.1)
91
97
  concurrent-ruby (~> 1.0)
92
98
  integration (0.1.0)
99
+ jdbc-sqlite3 (3.28.0)
93
100
  jekyll (2.5.3)
94
101
  classifier-reborn (~> 2.0)
95
102
  colorator (~> 0.1)
@@ -130,7 +137,7 @@ GEM
130
137
  metaclass (0.0.4)
131
138
  method_source (0.9.0)
132
139
  mini_mime (1.0.0)
133
- mini_portile2 (2.3.0)
140
+ mini_portile2 (2.6.1)
134
141
  minitest (5.11.3)
135
142
  mocha (1.7.0)
136
143
  metaclass (~> 0.0.1)
@@ -138,8 +145,12 @@ GEM
138
145
  bson (>= 4.3.0, < 5.0.0)
139
146
  multipart-post (2.0.0)
140
147
  nio4r (2.3.1)
141
- nokogiri (1.8.4)
142
- mini_portile2 (~> 2.3.0)
148
+ nio4r (2.3.1-java)
149
+ nokogiri (1.12.5)
150
+ mini_portile2 (~> 2.6.1)
151
+ racc (~> 1.4)
152
+ nokogiri (1.12.5-java)
153
+ racc (~> 1.4)
143
154
  octokit (4.9.0)
144
155
  sawyer (~> 0.8.0, >= 0.5.3)
145
156
  parslet (1.5.0)
@@ -153,10 +164,16 @@ GEM
153
164
  pry (0.11.3)
154
165
  coderay (~> 1.1.0)
155
166
  method_source (~> 0.9.0)
167
+ pry (0.11.3-java)
168
+ coderay (~> 1.1.0)
169
+ method_source (~> 0.9.0)
170
+ spoon (~> 0.0)
156
171
  public_suffix (3.0.2)
157
172
  pygments.rb (0.6.3)
158
173
  posix-spawn (~> 0.3.6)
159
174
  yajl-ruby (~> 1.2.0)
175
+ racc (1.6.0)
176
+ racc (1.6.0-java)
160
177
  rack (2.0.5)
161
178
  rack-test (1.1.0)
162
179
  rack (>= 1.0, < 3)
@@ -202,6 +219,8 @@ GEM
202
219
  sawyer (0.8.1)
203
220
  addressable (>= 2.3.5, < 2.6)
204
221
  faraday (~> 0.8, < 1.0)
222
+ spoon (0.0.6)
223
+ ffi
205
224
  sprockets (3.7.2)
206
225
  concurrent-ruby (~> 1.0)
207
226
  rack (> 1, < 3)
@@ -209,9 +228,10 @@ GEM
209
228
  actionpack (>= 4.0)
210
229
  activesupport (>= 4.0)
211
230
  sprockets (>= 3.0.0)
212
- sqlite3 (1.3.13)
231
+ sqlite3 (1.3.10)
213
232
  thor (0.20.0)
214
233
  thread_safe (0.3.6)
234
+ thread_safe (0.3.6-java)
215
235
  timecop (0.9.1)
216
236
  toml (0.1.2)
217
237
  parslet (~> 1.5.0)
@@ -223,17 +243,20 @@ GEM
223
243
  hashdiff
224
244
  websocket-driver (0.6.5)
225
245
  websocket-extensions (>= 0.1.0)
246
+ websocket-driver (0.6.5-java)
247
+ websocket-extensions (>= 0.1.0)
226
248
  websocket-extensions (0.1.3)
227
249
  yajl-ruby (1.2.3)
228
250
  yard (0.9.15)
229
251
 
230
252
  PLATFORMS
253
+ java
231
254
  ruby
232
255
 
233
256
  DEPENDENCIES
234
257
  RedCloth
235
258
  activerecord-jdbc-adapter
236
- appraisal (~> 2.0.0)
259
+ appraisal (~> 2.0)
237
260
  bundler (>= 1.8.0)
238
261
  fakefs
239
262
  fastthread!
@@ -259,4 +282,4 @@ DEPENDENCIES
259
282
  yard
260
283
 
261
284
  BUNDLED WITH
262
- 1.17.1
285
+ 1.17.2
@@ -8,10 +8,10 @@ gem "redis-namespace", ">= 1.1.0"
8
8
  gem "mongo", "~> 2.1"
9
9
  gem "integration", "<= 0.1.0"
10
10
  gem "rubystats", ">= 0.2.5"
11
- gem "garb", "< 0.9.2", :require => false
12
- gem "mocha", "~> 1.0", :require => false
11
+ gem "garb", "< 0.9.2", require: false
12
+ gem "mocha", "~> 1.0", require: false
13
13
  gem "rails", "~>5.2.0"
14
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
14
+ gem "fastthread", platforms: :mri_20, git: "https://github.com/zoltankiss/fastthread.git"
15
15
  gem "passenger", "~>3.0"
16
16
 
17
17
  group :development do
@@ -30,4 +30,4 @@ platforms :jruby do
30
30
  gem "jdbc-sqlite3"
31
31
  end
32
32
 
33
- gemspec :development_group => :test, :path => "../"
33
+ gemspec development_group: :test, path: "../"