vanity 2.2.8 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/test.yml +55 -0
  3. data/Appraisals +24 -20
  4. data/CHANGELOG +20 -1
  5. data/Gemfile +2 -1
  6. data/Gemfile.lock +24 -14
  7. data/README.md +118 -34
  8. data/gemfiles/rails42.gemfile +6 -6
  9. data/gemfiles/rails42.gemfile.lock +94 -85
  10. data/gemfiles/rails42_protected_attributes.gemfile +6 -6
  11. data/gemfiles/rails42_protected_attributes.gemfile.lock +96 -74
  12. data/gemfiles/{rails5.gemfile → rails51.gemfile} +6 -6
  13. data/gemfiles/rails51.gemfile.lock +285 -0
  14. data/gemfiles/{rails41.gemfile → rails52.gemfile} +6 -6
  15. data/gemfiles/rails52.gemfile.lock +295 -0
  16. data/gemfiles/{rails32.gemfile → rails60.gemfile} +6 -9
  17. data/gemfiles/rails60.gemfile.lock +293 -0
  18. data/gemfiles/rails61.gemfile +33 -0
  19. data/gemfiles/rails61.gemfile.lock +293 -0
  20. data/lib/generators/templates/add_participants_unique_index_migration.rb.erb +24 -0
  21. data/lib/generators/templates/add_unique_indexes_migration.rb.erb +28 -0
  22. data/lib/generators/templates/{vanity_migration.rb → vanity_migration.rb.erb} +6 -4
  23. data/lib/generators/vanity/migration_generator.rb +34 -0
  24. data/lib/vanity/adapters/active_record_adapter.rb +29 -9
  25. data/lib/vanity/adapters/redis_adapter.rb +20 -20
  26. data/lib/vanity/commands/report.rb +4 -3
  27. data/lib/vanity/frameworks/rails.rb +20 -9
  28. data/lib/vanity/locales/vanity.ru.yml +50 -0
  29. data/lib/vanity/templates/_experiment.erb +3 -3
  30. data/lib/vanity/templates/_experiments.erb +1 -1
  31. data/lib/vanity/templates/_metrics.erb +1 -1
  32. data/lib/vanity/templates/_report.erb +2 -2
  33. data/lib/vanity/templates/vanity.css +5 -5
  34. data/lib/vanity/version.rb +1 -1
  35. data/test/adapters/redis_adapter_test.rb +8 -12
  36. data/test/adapters/shared_tests.rb +7 -6
  37. data/test/commands/report_test.rb +13 -1
  38. data/test/configuration_test.rb +15 -2
  39. data/test/dummy/app/mailers/vanity_mailer.rb +3 -1
  40. data/test/dummy/config/initializers/secret_token.rb +5 -2
  41. data/test/dummy/config/routes.rb +17 -3
  42. data/test/experiment/ab_test.rb +3 -3
  43. data/test/frameworks/rails/action_controller_test.rb +12 -6
  44. data/test/frameworks/rails/action_mailer_test.rb +0 -1
  45. data/test/metric/active_record_test.rb +8 -2
  46. data/test/test_helper.rb +57 -10
  47. data/test/web/rails/dashboard_test.rb +19 -10
  48. data/vanity.gemspec +1 -1
  49. metadata +20 -16
  50. data/.travis.yml +0 -33
  51. data/gemfiles/rails32.gemfile.lock +0 -242
  52. data/gemfiles/rails41.gemfile.lock +0 -230
  53. data/gemfiles/rails5.gemfile.lock +0 -256
  54. data/lib/generators/vanity_generator.rb +0 -15
@@ -0,0 +1,285 @@
1
+ GIT
2
+ remote: https://github.com/zoltankiss/fastthread.git
3
+ revision: cefbca3009b9c68df5e473d840462ebcc7fa1504
4
+ specs:
5
+ fastthread (1.0.7)
6
+
7
+ PATH
8
+ remote: ..
9
+ specs:
10
+ vanity (3.0.1)
11
+ i18n
12
+
13
+ GEM
14
+ remote: https://rubygems.org/
15
+ specs:
16
+ RedCloth (4.2.9)
17
+ RedCloth (4.2.9-java)
18
+ actioncable (5.1.6)
19
+ actionpack (= 5.1.6)
20
+ nio4r (~> 2.0)
21
+ websocket-driver (~> 0.6.1)
22
+ actionmailer (5.1.6)
23
+ actionpack (= 5.1.6)
24
+ actionview (= 5.1.6)
25
+ activejob (= 5.1.6)
26
+ mail (~> 2.5, >= 2.5.4)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (5.1.6)
29
+ actionview (= 5.1.6)
30
+ activesupport (= 5.1.6)
31
+ rack (~> 2.0)
32
+ rack-test (>= 0.6.3)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
35
+ actionview (5.1.6)
36
+ activesupport (= 5.1.6)
37
+ builder (~> 3.1)
38
+ erubi (~> 1.4)
39
+ rails-dom-testing (~> 2.0)
40
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
41
+ activejob (5.1.6)
42
+ activesupport (= 5.1.6)
43
+ globalid (>= 0.3.6)
44
+ activemodel (5.1.6)
45
+ activesupport (= 5.1.6)
46
+ activerecord (5.1.6)
47
+ activemodel (= 5.1.6)
48
+ activesupport (= 5.1.6)
49
+ arel (~> 8.0)
50
+ activerecord-jdbc-adapter (51.8-java)
51
+ activerecord (~> 5.1.0)
52
+ activesupport (5.1.6)
53
+ concurrent-ruby (~> 1.0, >= 1.0.2)
54
+ i18n (>= 0.7, < 2)
55
+ minitest (~> 5.1)
56
+ tzinfo (~> 1.1)
57
+ addressable (2.5.2)
58
+ public_suffix (>= 2.0.2, < 4.0)
59
+ appraisal (2.0.2)
60
+ bundler
61
+ rake
62
+ thor (>= 0.14.0)
63
+ arel (8.0.0)
64
+ blankslate (2.1.2.4)
65
+ bson (4.3.0)
66
+ bson (4.3.0-java)
67
+ builder (3.2.3)
68
+ classifier-reborn (2.2.0)
69
+ fast-stemmer (~> 1.0)
70
+ coderay (1.1.2)
71
+ coffee-script (2.4.1)
72
+ coffee-script-source
73
+ execjs
74
+ coffee-script-source (1.11.1)
75
+ colorator (0.1)
76
+ concurrent-ruby (1.0.5)
77
+ concurrent-ruby (1.0.5-java)
78
+ crack (0.4.3)
79
+ safe_yaml (~> 1.0.0)
80
+ crass (1.0.4)
81
+ daemon_controller (1.2.0)
82
+ erubi (1.7.1)
83
+ execjs (2.7.0)
84
+ fakefs (0.18.0)
85
+ faraday (0.15.2)
86
+ multipart-post (>= 1.2, < 3)
87
+ fast-stemmer (1.0.2)
88
+ ffi (1.15.5)
89
+ ffi (1.15.5-java)
90
+ garb (0.9.1)
91
+ activesupport (>= 2.2.0)
92
+ crack (>= 0.1.6)
93
+ globalid (0.4.1)
94
+ activesupport (>= 4.2.0)
95
+ hashdiff (0.3.7)
96
+ i18n (1.0.1)
97
+ concurrent-ruby (~> 1.0)
98
+ integration (0.1.0)
99
+ jdbc-sqlite3 (3.28.0)
100
+ jekyll (2.5.3)
101
+ classifier-reborn (~> 2.0)
102
+ colorator (~> 0.1)
103
+ jekyll-coffeescript (~> 1.0)
104
+ jekyll-gist (~> 1.0)
105
+ jekyll-paginate (~> 1.0)
106
+ jekyll-sass-converter (~> 1.0)
107
+ jekyll-watch (~> 1.1)
108
+ kramdown (~> 1.3)
109
+ liquid (~> 2.6.1)
110
+ mercenary (~> 0.3.3)
111
+ pygments.rb (~> 0.6.0)
112
+ redcarpet (~> 3.1)
113
+ safe_yaml (~> 1.0)
114
+ toml (~> 0.1.0)
115
+ jekyll-coffeescript (1.1.1)
116
+ coffee-script (~> 2.2)
117
+ coffee-script-source (~> 1.11.1)
118
+ jekyll-gist (1.5.0)
119
+ octokit (~> 4.2)
120
+ jekyll-paginate (1.1.0)
121
+ jekyll-sass-converter (1.5.2)
122
+ sass (~> 3.4)
123
+ jekyll-watch (1.5.1)
124
+ listen (~> 3.0)
125
+ kramdown (1.17.0)
126
+ liquid (2.6.3)
127
+ listen (3.1.5)
128
+ rb-fsevent (~> 0.9, >= 0.9.4)
129
+ rb-inotify (~> 0.9, >= 0.9.7)
130
+ ruby_dep (~> 1.2)
131
+ loofah (2.2.2)
132
+ crass (~> 1.0.2)
133
+ nokogiri (>= 1.5.9)
134
+ mail (2.7.0)
135
+ mini_mime (>= 0.1.1)
136
+ mercenary (0.3.6)
137
+ metaclass (0.0.4)
138
+ method_source (0.9.0)
139
+ mini_mime (1.0.0)
140
+ mini_portile2 (2.6.1)
141
+ minitest (5.11.3)
142
+ mocha (1.7.0)
143
+ metaclass (~> 0.0.1)
144
+ mongo (2.6.1)
145
+ bson (>= 4.3.0, < 5.0.0)
146
+ multipart-post (2.0.0)
147
+ nio4r (2.3.1)
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)
154
+ octokit (4.9.0)
155
+ sawyer (~> 0.8.0, >= 0.5.3)
156
+ parslet (1.5.0)
157
+ blankslate (~> 2.0)
158
+ passenger (3.0.21)
159
+ daemon_controller (>= 1.0.0)
160
+ fastthread (>= 1.0.1)
161
+ rack
162
+ rake (>= 0.8.1)
163
+ posix-spawn (0.3.13)
164
+ pry (0.11.3)
165
+ coderay (~> 1.1.0)
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)
171
+ public_suffix (3.0.2)
172
+ pygments.rb (0.6.3)
173
+ posix-spawn (~> 0.3.6)
174
+ yajl-ruby (~> 1.2.0)
175
+ racc (1.6.0)
176
+ racc (1.6.0-java)
177
+ rack (2.0.5)
178
+ rack-test (1.1.0)
179
+ rack (>= 1.0, < 3)
180
+ rails (5.1.6)
181
+ actioncable (= 5.1.6)
182
+ actionmailer (= 5.1.6)
183
+ actionpack (= 5.1.6)
184
+ actionview (= 5.1.6)
185
+ activejob (= 5.1.6)
186
+ activemodel (= 5.1.6)
187
+ activerecord (= 5.1.6)
188
+ activesupport (= 5.1.6)
189
+ bundler (>= 1.3.0)
190
+ railties (= 5.1.6)
191
+ sprockets-rails (>= 2.0.0)
192
+ rails-dom-testing (2.0.3)
193
+ activesupport (>= 4.2.0)
194
+ nokogiri (>= 1.6)
195
+ rails-html-sanitizer (1.0.4)
196
+ loofah (~> 2.2, >= 2.2.2)
197
+ railties (5.1.6)
198
+ actionpack (= 5.1.6)
199
+ activesupport (= 5.1.6)
200
+ method_source
201
+ rake (>= 0.8.7)
202
+ thor (>= 0.18.1, < 2.0)
203
+ rake (12.3.1)
204
+ rb-fsevent (0.10.3)
205
+ rb-inotify (0.9.10)
206
+ ffi (>= 0.5.0, < 2)
207
+ redcarpet (3.4.0)
208
+ redis (4.0.3)
209
+ redis-namespace (1.6.0)
210
+ redis (>= 3.0.4)
211
+ ruby_dep (1.5.0)
212
+ rubystats (0.3.0)
213
+ safe_yaml (1.0.4)
214
+ sass (3.5.7)
215
+ sass-listen (~> 4.0.0)
216
+ sass-listen (4.0.0)
217
+ rb-fsevent (~> 0.9, >= 0.9.4)
218
+ rb-inotify (~> 0.9, >= 0.9.7)
219
+ sawyer (0.8.1)
220
+ addressable (>= 2.3.5, < 2.6)
221
+ faraday (~> 0.8, < 1.0)
222
+ spoon (0.0.6)
223
+ ffi
224
+ sprockets (3.7.2)
225
+ concurrent-ruby (~> 1.0)
226
+ rack (> 1, < 3)
227
+ sprockets-rails (3.2.1)
228
+ actionpack (>= 4.0)
229
+ activesupport (>= 4.0)
230
+ sprockets (>= 3.0.0)
231
+ sqlite3 (1.3.10)
232
+ thor (0.20.0)
233
+ thread_safe (0.3.6)
234
+ thread_safe (0.3.6-java)
235
+ timecop (0.9.1)
236
+ toml (0.1.2)
237
+ parslet (~> 1.5.0)
238
+ tzinfo (1.2.5)
239
+ thread_safe (~> 0.1)
240
+ webmock (3.4.2)
241
+ addressable (>= 2.3.6)
242
+ crack (>= 0.3.2)
243
+ hashdiff
244
+ websocket-driver (0.6.5)
245
+ websocket-extensions (>= 0.1.0)
246
+ websocket-driver (0.6.5-java)
247
+ websocket-extensions (>= 0.1.0)
248
+ websocket-extensions (0.1.3)
249
+ yajl-ruby (1.2.3)
250
+ yard (0.9.15)
251
+
252
+ PLATFORMS
253
+ java
254
+ ruby
255
+
256
+ DEPENDENCIES
257
+ RedCloth
258
+ activerecord-jdbc-adapter
259
+ appraisal (~> 2.0)
260
+ bundler (>= 1.8.0)
261
+ fakefs
262
+ fastthread!
263
+ garb (< 0.9.2)
264
+ integration (<= 0.1.0)
265
+ jdbc-sqlite3
266
+ jekyll (~> 2.5.3)
267
+ minitest (>= 4.2)
268
+ mocha (~> 1.0)
269
+ mongo (~> 2.1)
270
+ passenger (~> 3.0)
271
+ pry
272
+ rack
273
+ rails (~> 5.1.0)
274
+ rake
275
+ redis (>= 3.2.1)
276
+ redis-namespace (>= 1.1.0)
277
+ rubystats (>= 0.2.5)
278
+ sqlite3 (~> 1.3.10)
279
+ timecop
280
+ vanity!
281
+ webmock
282
+ yard
283
+
284
+ BUNDLED WITH
285
+ 1.17.2
@@ -3,15 +3,15 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rack"
6
- gem "redis", ">= 2.1"
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
13
- gem "rails", "4.1.9"
14
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
11
+ gem "garb", "< 0.9.2", require: false
12
+ gem "mocha", "~> 1.0", require: false
13
+ gem "rails", "~>5.2.0"
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: "../"
@@ -0,0 +1,295 @@
1
+ GIT
2
+ remote: https://github.com/zoltankiss/fastthread.git
3
+ revision: cefbca3009b9c68df5e473d840462ebcc7fa1504
4
+ specs:
5
+ fastthread (1.0.7)
6
+
7
+ PATH
8
+ remote: ..
9
+ specs:
10
+ vanity (3.0.1)
11
+ i18n
12
+
13
+ GEM
14
+ remote: https://rubygems.org/
15
+ specs:
16
+ RedCloth (4.2.9)
17
+ RedCloth (4.2.9-java)
18
+ actioncable (5.2.0)
19
+ actionpack (= 5.2.0)
20
+ nio4r (~> 2.0)
21
+ websocket-driver (>= 0.6.1)
22
+ actionmailer (5.2.0)
23
+ actionpack (= 5.2.0)
24
+ actionview (= 5.2.0)
25
+ activejob (= 5.2.0)
26
+ mail (~> 2.5, >= 2.5.4)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (5.2.0)
29
+ actionview (= 5.2.0)
30
+ activesupport (= 5.2.0)
31
+ rack (~> 2.0)
32
+ rack-test (>= 0.6.3)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
35
+ actionview (5.2.0)
36
+ activesupport (= 5.2.0)
37
+ builder (~> 3.1)
38
+ erubi (~> 1.4)
39
+ rails-dom-testing (~> 2.0)
40
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
41
+ activejob (5.2.0)
42
+ activesupport (= 5.2.0)
43
+ globalid (>= 0.3.6)
44
+ activemodel (5.2.0)
45
+ activesupport (= 5.2.0)
46
+ activerecord (5.2.0)
47
+ activemodel (= 5.2.0)
48
+ activesupport (= 5.2.0)
49
+ arel (>= 9.0)
50
+ activerecord-jdbc-adapter (52.8-java)
51
+ activerecord (~> 5.2.0)
52
+ activestorage (5.2.0)
53
+ actionpack (= 5.2.0)
54
+ activerecord (= 5.2.0)
55
+ marcel (~> 0.3.1)
56
+ activesupport (5.2.0)
57
+ concurrent-ruby (~> 1.0, >= 1.0.2)
58
+ i18n (>= 0.7, < 2)
59
+ minitest (~> 5.1)
60
+ tzinfo (~> 1.1)
61
+ addressable (2.5.2)
62
+ public_suffix (>= 2.0.2, < 4.0)
63
+ appraisal (2.0.2)
64
+ bundler
65
+ rake
66
+ thor (>= 0.14.0)
67
+ arel (9.0.0)
68
+ blankslate (2.1.2.4)
69
+ bson (4.3.0)
70
+ bson (4.3.0-java)
71
+ builder (3.2.3)
72
+ classifier-reborn (2.2.0)
73
+ fast-stemmer (~> 1.0)
74
+ coderay (1.1.2)
75
+ coffee-script (2.4.1)
76
+ coffee-script-source
77
+ execjs
78
+ coffee-script-source (1.11.1)
79
+ colorator (0.1)
80
+ concurrent-ruby (1.0.5)
81
+ concurrent-ruby (1.0.5-java)
82
+ crack (0.4.3)
83
+ safe_yaml (~> 1.0.0)
84
+ crass (1.0.4)
85
+ daemon_controller (1.2.0)
86
+ erubi (1.7.1)
87
+ execjs (2.7.0)
88
+ fakefs (0.18.0)
89
+ faraday (0.15.2)
90
+ multipart-post (>= 1.2, < 3)
91
+ fast-stemmer (1.0.2)
92
+ ffi (1.15.5)
93
+ ffi (1.15.5-java)
94
+ garb (0.9.1)
95
+ activesupport (>= 2.2.0)
96
+ crack (>= 0.1.6)
97
+ globalid (0.4.1)
98
+ activesupport (>= 4.2.0)
99
+ hashdiff (0.3.7)
100
+ i18n (1.0.1)
101
+ concurrent-ruby (~> 1.0)
102
+ integration (0.1.0)
103
+ jdbc-sqlite3 (3.28.0)
104
+ jekyll (2.5.3)
105
+ classifier-reborn (~> 2.0)
106
+ colorator (~> 0.1)
107
+ jekyll-coffeescript (~> 1.0)
108
+ jekyll-gist (~> 1.0)
109
+ jekyll-paginate (~> 1.0)
110
+ jekyll-sass-converter (~> 1.0)
111
+ jekyll-watch (~> 1.1)
112
+ kramdown (~> 1.3)
113
+ liquid (~> 2.6.1)
114
+ mercenary (~> 0.3.3)
115
+ pygments.rb (~> 0.6.0)
116
+ redcarpet (~> 3.1)
117
+ safe_yaml (~> 1.0)
118
+ toml (~> 0.1.0)
119
+ jekyll-coffeescript (1.1.1)
120
+ coffee-script (~> 2.2)
121
+ coffee-script-source (~> 1.11.1)
122
+ jekyll-gist (1.5.0)
123
+ octokit (~> 4.2)
124
+ jekyll-paginate (1.1.0)
125
+ jekyll-sass-converter (1.5.2)
126
+ sass (~> 3.4)
127
+ jekyll-watch (1.5.1)
128
+ listen (~> 3.0)
129
+ kramdown (1.17.0)
130
+ liquid (2.6.3)
131
+ listen (3.1.5)
132
+ rb-fsevent (~> 0.9, >= 0.9.4)
133
+ rb-inotify (~> 0.9, >= 0.9.7)
134
+ ruby_dep (~> 1.2)
135
+ loofah (2.2.2)
136
+ crass (~> 1.0.2)
137
+ nokogiri (>= 1.5.9)
138
+ mail (2.7.0)
139
+ mini_mime (>= 0.1.1)
140
+ marcel (0.3.3)
141
+ mimemagic (~> 0.3.2)
142
+ mercenary (0.3.6)
143
+ metaclass (0.0.4)
144
+ method_source (0.9.0)
145
+ mimemagic (0.3.10)
146
+ nokogiri (~> 1)
147
+ rake
148
+ mini_mime (1.0.0)
149
+ mini_portile2 (2.6.1)
150
+ minitest (5.11.3)
151
+ mocha (1.6.0)
152
+ metaclass (~> 0.0.1)
153
+ mongo (2.6.1)
154
+ bson (>= 4.3.0, < 5.0.0)
155
+ multipart-post (2.0.0)
156
+ nio4r (2.3.1)
157
+ nio4r (2.3.1-java)
158
+ nokogiri (1.12.5)
159
+ mini_portile2 (~> 2.6.1)
160
+ racc (~> 1.4)
161
+ nokogiri (1.12.5-java)
162
+ racc (~> 1.4)
163
+ octokit (4.9.0)
164
+ sawyer (~> 0.8.0, >= 0.5.3)
165
+ parslet (1.5.0)
166
+ blankslate (~> 2.0)
167
+ passenger (3.0.21)
168
+ daemon_controller (>= 1.0.0)
169
+ fastthread (>= 1.0.1)
170
+ rack
171
+ rake (>= 0.8.1)
172
+ posix-spawn (0.3.13)
173
+ pry (0.11.3)
174
+ coderay (~> 1.1.0)
175
+ method_source (~> 0.9.0)
176
+ pry (0.11.3-java)
177
+ coderay (~> 1.1.0)
178
+ method_source (~> 0.9.0)
179
+ spoon (~> 0.0)
180
+ public_suffix (3.0.2)
181
+ pygments.rb (0.6.3)
182
+ posix-spawn (~> 0.3.6)
183
+ yajl-ruby (~> 1.2.0)
184
+ racc (1.6.0)
185
+ racc (1.6.0-java)
186
+ rack (2.0.5)
187
+ rack-test (1.1.0)
188
+ rack (>= 1.0, < 3)
189
+ rails (5.2.0)
190
+ actioncable (= 5.2.0)
191
+ actionmailer (= 5.2.0)
192
+ actionpack (= 5.2.0)
193
+ actionview (= 5.2.0)
194
+ activejob (= 5.2.0)
195
+ activemodel (= 5.2.0)
196
+ activerecord (= 5.2.0)
197
+ activestorage (= 5.2.0)
198
+ activesupport (= 5.2.0)
199
+ bundler (>= 1.3.0)
200
+ railties (= 5.2.0)
201
+ sprockets-rails (>= 2.0.0)
202
+ rails-dom-testing (2.0.3)
203
+ activesupport (>= 4.2.0)
204
+ nokogiri (>= 1.6)
205
+ rails-html-sanitizer (1.0.4)
206
+ loofah (~> 2.2, >= 2.2.2)
207
+ railties (5.2.0)
208
+ actionpack (= 5.2.0)
209
+ activesupport (= 5.2.0)
210
+ method_source
211
+ rake (>= 0.8.7)
212
+ thor (>= 0.18.1, < 2.0)
213
+ rake (12.3.1)
214
+ rb-fsevent (0.10.3)
215
+ rb-inotify (0.9.10)
216
+ ffi (>= 0.5.0, < 2)
217
+ redcarpet (3.4.0)
218
+ redis (4.0.1)
219
+ redis-namespace (1.6.0)
220
+ redis (>= 3.0.4)
221
+ ruby_dep (1.5.0)
222
+ rubystats (0.3.0)
223
+ safe_yaml (1.0.4)
224
+ sass (3.5.7)
225
+ sass-listen (~> 4.0.0)
226
+ sass-listen (4.0.0)
227
+ rb-fsevent (~> 0.9, >= 0.9.4)
228
+ rb-inotify (~> 0.9, >= 0.9.7)
229
+ sawyer (0.8.1)
230
+ addressable (>= 2.3.5, < 2.6)
231
+ faraday (~> 0.8, < 1.0)
232
+ spoon (0.0.6)
233
+ ffi
234
+ sprockets (3.7.2)
235
+ concurrent-ruby (~> 1.0)
236
+ rack (> 1, < 3)
237
+ sprockets-rails (3.2.1)
238
+ actionpack (>= 4.0)
239
+ activesupport (>= 4.0)
240
+ sprockets (>= 3.0.0)
241
+ sqlite3 (1.3.10)
242
+ thor (0.20.0)
243
+ thread_safe (0.3.6)
244
+ thread_safe (0.3.6-java)
245
+ timecop (0.9.1)
246
+ toml (0.1.2)
247
+ parslet (~> 1.5.0)
248
+ tzinfo (1.2.5)
249
+ thread_safe (~> 0.1)
250
+ webmock (3.4.2)
251
+ addressable (>= 2.3.6)
252
+ crack (>= 0.3.2)
253
+ hashdiff
254
+ websocket-driver (0.7.0)
255
+ websocket-extensions (>= 0.1.0)
256
+ websocket-driver (0.7.0-java)
257
+ websocket-extensions (>= 0.1.0)
258
+ websocket-extensions (0.1.3)
259
+ yajl-ruby (1.2.3)
260
+ yard (0.9.15)
261
+
262
+ PLATFORMS
263
+ java
264
+ ruby
265
+
266
+ DEPENDENCIES
267
+ RedCloth
268
+ activerecord-jdbc-adapter
269
+ appraisal (~> 2.0)
270
+ bundler (>= 1.8.0)
271
+ fakefs
272
+ fastthread!
273
+ garb (< 0.9.2)
274
+ integration (<= 0.1.0)
275
+ jdbc-sqlite3
276
+ jekyll (~> 2.5.3)
277
+ minitest (>= 4.2)
278
+ mocha (~> 1.0)
279
+ mongo (~> 2.1)
280
+ passenger (~> 3.0)
281
+ pry
282
+ rack
283
+ rails (~> 5.2.0)
284
+ rake
285
+ redis (>= 3.2.1)
286
+ redis-namespace (>= 1.1.0)
287
+ rubystats (>= 0.2.5)
288
+ sqlite3 (~> 1.3.10)
289
+ timecop
290
+ vanity!
291
+ webmock
292
+ yard
293
+
294
+ BUNDLED WITH
295
+ 1.17.2
@@ -3,19 +3,16 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "rack"
6
- gem "redis", ">= 2.1"
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
13
- gem "minitest", "~>4.2.0"
14
- gem "rails", "3.2.22"
15
- gem "minitest_tu_shim", "~> 1.3.3", :platforms => :mri_22
16
- gem "fastthread", :git => "git://github.com/zoltankiss/fastthread.git", :platforms => :mri_20
11
+ gem "garb", "< 0.9.2", require: false
12
+ gem "mocha", "~> 1.0", require: false
13
+ gem "rails", "~>5.2.0"
14
+ gem "fastthread", platforms: :mri_20, git: "https://github.com/zoltankiss/fastthread.git"
17
15
  gem "passenger", "~>3.0"
18
- gem "test-unit", "~> 3.0"
19
16
 
20
17
  group :development do
21
18
  gem "rake"
@@ -33,4 +30,4 @@ platforms :jruby do
33
30
  gem "jdbc-sqlite3"
34
31
  end
35
32
 
36
- gemspec :development_group => :test, :path => "../"
33
+ gemspec development_group: :test, path: "../"