vanity 4.0.2 → 4.0.3

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
  SHA256:
3
- metadata.gz: ea9d4e9d211abdf50a36e8d8bd1ede2d826b4d556ae52ef7537ee8f86cf3e0e8
4
- data.tar.gz: 583ba00d677b13d9c27f0e5556f238f99b197614ada1a5fa3d68d1822fb1edca
3
+ metadata.gz: b5e8b922f6a9f768a2f7daa807d71bd62dd54bb0fe1b56f7d0ed34e7c4055e55
4
+ data.tar.gz: 5d6e5caaf7b916df714d3c2f5deec50e1b930543d969d99cfac1f20f851ff936
5
5
  SHA512:
6
- metadata.gz: 679b3b9e5f5271b96bf57e7275edbcdd59765c0ccf80be786a71f8bfcf091dfb2d820eee1a6e3b4105ee49c462aed87ac4278f0146d5791f1923a3ecbf527ae6
7
- data.tar.gz: 1a905082e51bfe15294333e43bd18b55c2c22926194b22ac7c03f74902578fcc5865c82b2cd0580d10dae0d42b3c4e7edf50a024ed996a5d846a1afe1f5b27f8
6
+ metadata.gz: 1508bb0b7e94de3dccb2a6d3d8ff58fcb8fcb4ebb6e1c59a68e44239f4981235eb67814e1f472d5b0f4b969bbc9a89904c5e21a4e1bf3bc13633247aa2174524
7
+ data.tar.gz: cbdbda091b0fbf68b7fd9c848513748e13a3fc82857f56016e12290122b4bb0dbb49ff08b02a038803c33e3ff1d916c238b0472dc9b1563d8f2dc1eee6da5dd8
@@ -1,6 +1,11 @@
1
1
  name: Linting
2
2
 
3
- on: [push, pull_request]
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches: '*'
4
9
 
5
10
  jobs:
6
11
  build:
data/Appraisals CHANGED
@@ -1,20 +1,20 @@
1
1
  appraise "rails52" do
2
2
  gem "mocha", "~> 1.0", require: false
3
- gem "rails", "~>5.2.0"
3
+ gem "rails", "~> 5.2.0"
4
4
  gem "fastthread", github: "zoltankiss/fastthread", platforms: :mri_20
5
5
  gem "passenger"
6
6
  end
7
7
 
8
8
  appraise "rails60" do
9
9
  gem "mocha", "~> 1.0", require: false
10
- gem "rails", "~>5.2.0"
10
+ gem "rails", "~> 6.0.0"
11
11
  gem "fastthread", github: "zoltankiss/fastthread", platforms: :mri_20
12
12
  gem "passenger"
13
13
  end
14
14
 
15
15
  appraise "rails61" do
16
16
  gem "mocha", "~> 1.0", require: false
17
- gem "rails", "~>5.2.0"
17
+ gem "rails", "~> 6.1.0"
18
18
  gem "fastthread", github: "zoltankiss/fastthread", platforms: :mri_20
19
19
  gem "passenger"
20
20
  end
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  CHANGELOG
2
2
 
3
+ == 4.0.3 (2022-07-27)
4
+
5
+ * Fix Vanity::Rails::Helpers#vanity_js for Rails 6 (@ariel-codes)
6
+
3
7
  == 4.0.2 (2022-03-03)
4
8
 
5
9
  * Use Redis#exists? and fallback to #exists which could be either boolean or integer in recent redis gem versions (@bsedin)
data/Gemfile CHANGED
@@ -22,7 +22,7 @@ gem "garb", "< 0.9.2", require: false # API changes at this version
22
22
 
23
23
  platform :ruby do
24
24
  gem "jekyll", "~> 2.5.3"
25
- gem "sqlite3", "~> 1.3.10"
25
+ gem "sqlite3", "~> 1.4.0"
26
26
  end
27
27
 
28
28
  platform :jruby do
@@ -35,7 +35,8 @@ group :development do
35
35
  gem "RedCloth"
36
36
  gem "yard"
37
37
 
38
- gem "rubocop"
38
+ gem "rubocop", "~> 1.25.1" # Lock for Ruby 2.5
39
+ gem "rubocop-ast", "~> 1.15.2" # Lock for Ruby 2.5
39
40
  gem "rubocop-performance"
40
41
  gem "rubocop-rspec"
41
42
  end
data/Gemfile.lock CHANGED
@@ -1,19 +1,18 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vanity (4.0.2)
4
+ vanity (4.0.3)
5
5
  i18n
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- RedCloth (4.2.9)
11
- RedCloth (4.2.9-java)
12
- activerecord (2.3.14)
13
- activesupport (= 2.3.14)
10
+ RedCloth (4.3.2)
11
+ activerecord (3.2.14)
14
12
  activerecord-jdbc-adapter (1.3.15)
15
13
  activerecord (>= 2.2)
16
- activesupport (2.3.14)
14
+ activesupport (3.1.12)
15
+ multi_json (~> 1.0)
17
16
  addressable (2.2.7)
18
17
  appraisal (2.4.1)
19
18
  bundler
@@ -44,7 +43,7 @@ GEM
44
43
  activesupport (>= 2.2.0)
45
44
  crack (>= 0.1.6)
46
45
  hitimes (1.2.2)
47
- i18n (1.10.0)
46
+ i18n (1.12.0)
48
47
  concurrent-ruby (~> 1.0)
49
48
  integration (0.1.0)
50
49
  jdbc-sqlite3 (3.8.7)
@@ -82,8 +81,9 @@ GEM
82
81
  minitest (4.7.5)
83
82
  mongo (2.2.3)
84
83
  bson (~> 4.0)
85
- parallel (1.21.0)
86
- parser (3.1.0.0)
84
+ multi_json (1.15.0)
85
+ parallel (1.22.1)
86
+ parser (3.1.2.0)
87
87
  ast (~> 2.4.1)
88
88
  parslet (1.5.0)
89
89
  blankslate (~> 2.0)
@@ -100,7 +100,7 @@ GEM
100
100
  pygments.rb (0.6.3)
101
101
  posix-spawn (~> 0.3.6)
102
102
  yajl-ruby (~> 1.2.0)
103
- rack (1.1.3)
103
+ rack (2.2.3.1)
104
104
  rainbow (3.1.1)
105
105
  rake (13.0.6)
106
106
  rb-fsevent (0.9.4)
@@ -110,7 +110,7 @@ GEM
110
110
  redis (4.6.0)
111
111
  redis-namespace (1.8.2)
112
112
  redis (>= 3.0.4)
113
- regexp_parser (2.2.1)
113
+ regexp_parser (2.5.0)
114
114
  rexml (3.2.5)
115
115
  rubocop (1.25.1)
116
116
  parallel (~> 1.10)
@@ -135,19 +135,21 @@ GEM
135
135
  slop (3.6.0)
136
136
  spoon (0.0.6)
137
137
  ffi
138
- sqlite3 (1.3.10)
138
+ sqlite3 (1.4.4)
139
139
  thor (1.2.1)
140
140
  timecop (0.3.5)
141
141
  timers (4.0.1)
142
142
  hitimes
143
143
  toml (0.1.2)
144
144
  parslet (~> 1.5.0)
145
- unicode-display_width (2.1.0)
145
+ unicode-display_width (2.2.0)
146
146
  webmock (1.8.0)
147
147
  addressable (>= 2.2.7)
148
148
  crack (>= 0.1.7)
149
+ webrick (1.7.0)
149
150
  yajl-ruby (1.2.3)
150
- yard (0.9.16)
151
+ yard (0.9.27)
152
+ webrick (~> 1.7.0)
151
153
 
152
154
  PLATFORMS
153
155
  java
@@ -170,11 +172,12 @@ DEPENDENCIES
170
172
  rake
171
173
  redis (>= 3.2.1)
172
174
  redis-namespace (>= 1.1.0)
173
- rubocop
175
+ rubocop (~> 1.25.1)
176
+ rubocop-ast (~> 1.15.2)
174
177
  rubocop-performance
175
178
  rubocop-rspec
176
179
  rubystats (>= 0.2.5)
177
- sqlite3 (~> 1.3.10)
180
+ sqlite3 (~> 1.4.0)
178
181
  timecop
179
182
  vanity!
180
183
  webmock
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # Vanity
2
- [![Test Status](https://github.com/assaf/vanity/workflows/Test/badge.svg)](https://github.com/assaf/vanity/actions)
3
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/vanity.svg)](https://rubygems.org/gems/vanity)
4
+ [![Test Status](https://github.com/assaf/vanity/workflows/Test/badge.svg)](https://github.com/assaf/vanity/actions)
5
+ [![Ruby Toolbox](https://img.shields.io/badge/dynamic/json?color=blue&label=Ruby%20Toolbox&query=%24.projects%5B0%5D.score&url=https%3A%2F%2Fwww.ruby-toolbox.com%2Fapi%2Fprojects%2Fcompare%2Fvanity&logo=data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJmbGFzayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWZsYXNrIGZhLXctMTQiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNDQ4IDUxMiI+PHBhdGggZmlsbD0id2hpdGUiIGQ9Ik00MzcuMiA0MDMuNUwzMjAgMjE1VjY0aDhjMTMuMyAwIDI0LTEwLjcgMjQtMjRWMjRjMC0xMy4zLTEwLjctMjQtMjQtMjRIMTIwYy0xMy4zIDAtMjQgMTAuNy0yNCAyNHYxNmMwIDEzLjMgMTAuNyAyNCAyNCAyNGg4djE1MUwxMC44IDQwMy41Qy0xOC41IDQ1MC42IDE1LjMgNTEyIDcwLjkgNTEyaDMwNi4yYzU1LjcgMCA4OS40LTYxLjUgNjAuMS0xMDguNXpNMTM3LjkgMzIwbDQ4LjItNzcuNmMzLjctNS4yIDUuOC0xMS42IDUuOC0xOC40VjY0aDY0djE2MGMwIDYuOSAyLjIgMTMuMiA1LjggMTguNGw0OC4yIDc3LjZoLTE3MnoiPjwvcGF0aD48L3N2Zz4=)](https://www.ruby-toolbox.com/projects/vanity)
4
6
 
5
7
  Vanity is an A/B testing framework for Rails that is datastore agnostic.
6
8
 
@@ -10,7 +10,7 @@ gem "integration", "<= 0.1.0"
10
10
  gem "rubystats", ">= 0.2.5"
11
11
  gem "garb", "< 0.9.2", require: false
12
12
  gem "mocha", "~> 1.0", require: false
13
- gem "rails", "~>5.2.0"
13
+ gem "rails", "~> 5.2.0"
14
14
  gem "fastthread", platforms: :mri_20, git: "https://github.com/zoltankiss/fastthread.git"
15
15
  gem "passenger"
16
16
 
@@ -18,14 +18,15 @@ group :development do
18
18
  gem "rake"
19
19
  gem "RedCloth"
20
20
  gem "yard"
21
- gem "rubocop"
21
+ gem "rubocop", "~> 1.25.1"
22
+ gem "rubocop-ast", "~> 1.15.2"
22
23
  gem "rubocop-performance"
23
24
  gem "rubocop-rspec"
24
25
  end
25
26
 
26
27
  platforms :ruby do
27
28
  gem "jekyll", "~> 2.5.3"
28
- gem "sqlite3", "~> 1.3.10"
29
+ gem "sqlite3", "~> 1.4.0"
29
30
  end
30
31
 
31
32
  platforms :jruby do
@@ -7,100 +7,115 @@ GIT
7
7
  PATH
8
8
  remote: ..
9
9
  specs:
10
- vanity (4.0.2)
10
+ vanity (4.0.3)
11
11
  i18n
12
12
 
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- RedCloth (4.2.9)
17
- RedCloth (4.2.9-java)
18
- actioncable (5.2.0)
19
- actionpack (= 5.2.0)
16
+ RedCloth (4.3.2)
17
+ actioncable (5.2.8.1)
18
+ actionpack (= 5.2.8.1)
20
19
  nio4r (~> 2.0)
21
20
  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)
21
+ actionmailer (5.2.8.1)
22
+ actionpack (= 5.2.8.1)
23
+ actionview (= 5.2.8.1)
24
+ activejob (= 5.2.8.1)
26
25
  mail (~> 2.5, >= 2.5.4)
27
26
  rails-dom-testing (~> 2.0)
28
- actionpack (5.2.0)
29
- actionview (= 5.2.0)
30
- activesupport (= 5.2.0)
31
- rack (~> 2.0)
27
+ actionpack (5.2.8.1)
28
+ actionview (= 5.2.8.1)
29
+ activesupport (= 5.2.8.1)
30
+ rack (~> 2.0, >= 2.0.8)
32
31
  rack-test (>= 0.6.3)
33
32
  rails-dom-testing (~> 2.0)
34
33
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
35
- actionview (5.2.0)
36
- activesupport (= 5.2.0)
34
+ actionview (5.2.8.1)
35
+ activesupport (= 5.2.8.1)
37
36
  builder (~> 3.1)
38
37
  erubi (~> 1.4)
39
38
  rails-dom-testing (~> 2.0)
40
39
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
41
- activejob (5.2.0)
42
- activesupport (= 5.2.0)
40
+ activejob (5.2.8.1)
41
+ activesupport (= 5.2.8.1)
43
42
  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)
43
+ activemodel (5.2.8.1)
44
+ activesupport (= 5.2.8.1)
45
+ activerecord (5.2.8.1)
46
+ activemodel (= 5.2.8.1)
47
+ activesupport (= 5.2.8.1)
49
48
  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)
49
+ activestorage (5.2.8.1)
50
+ actionpack (= 5.2.8.1)
51
+ activerecord (= 5.2.8.1)
52
+ marcel (~> 1.0.0)
53
+ activesupport (5.2.8.1)
57
54
  concurrent-ruby (~> 1.0, >= 1.0.2)
58
55
  i18n (>= 0.7, < 2)
59
56
  minitest (~> 5.1)
60
57
  tzinfo (~> 1.1)
61
- addressable (2.5.2)
62
- public_suffix (>= 2.0.2, < 4.0)
63
- appraisal (2.0.2)
58
+ addressable (2.8.0)
59
+ public_suffix (>= 2.0.2, < 5.0)
60
+ appraisal (2.4.1)
64
61
  bundler
65
62
  rake
66
63
  thor (>= 0.14.0)
67
64
  arel (9.0.0)
68
65
  ast (2.4.2)
69
66
  blankslate (2.1.2.4)
70
- bson (4.3.0)
71
- bson (4.3.0-java)
72
- builder (3.2.3)
73
- classifier-reborn (2.2.0)
67
+ bson (4.15.0)
68
+ builder (3.2.4)
69
+ classifier-reborn (2.3.0)
74
70
  fast-stemmer (~> 1.0)
75
- coderay (1.1.2)
71
+ matrix (~> 0.4)
72
+ coderay (1.1.3)
76
73
  coffee-script (2.4.1)
77
74
  coffee-script-source
78
75
  execjs
79
- coffee-script-source (1.11.1)
76
+ coffee-script-source (1.12.2)
80
77
  colorator (0.1)
81
- concurrent-ruby (1.0.5)
82
- concurrent-ruby (1.0.5-java)
83
- crack (0.4.3)
84
- safe_yaml (~> 1.0.0)
85
- crass (1.0.4)
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)
78
+ concurrent-ruby (1.1.10)
79
+ crack (0.4.5)
80
+ rexml
81
+ crass (1.0.6)
82
+ erubi (1.10.0)
83
+ execjs (2.8.1)
84
+ fakefs (1.8.0)
85
+ faraday (1.10.0)
86
+ faraday-em_http (~> 1.0)
87
+ faraday-em_synchrony (~> 1.0)
88
+ faraday-excon (~> 1.1)
89
+ faraday-httpclient (~> 1.0)
90
+ faraday-multipart (~> 1.0)
91
+ faraday-net_http (~> 1.0)
92
+ faraday-net_http_persistent (~> 1.0)
93
+ faraday-patron (~> 1.0)
94
+ faraday-rack (~> 1.0)
95
+ faraday-retry (~> 1.0)
96
+ ruby2_keywords (>= 0.0.4)
97
+ faraday-em_http (1.0.0)
98
+ faraday-em_synchrony (1.0.0)
99
+ faraday-excon (1.1.0)
100
+ faraday-httpclient (1.0.1)
101
+ faraday-multipart (1.0.4)
102
+ multipart-post (~> 2)
103
+ faraday-net_http (1.0.1)
104
+ faraday-net_http_persistent (1.2.0)
105
+ faraday-patron (1.0.0)
106
+ faraday-rack (1.0.0)
107
+ faraday-retry (1.0.3)
91
108
  fast-stemmer (1.0.2)
92
109
  ffi (1.15.5)
93
- ffi (1.15.5-java)
94
110
  garb (0.9.1)
95
111
  activesupport (>= 2.2.0)
96
112
  crack (>= 0.1.6)
97
- globalid (0.4.1)
98
- activesupport (>= 4.2.0)
99
- hashdiff (0.3.7)
100
- i18n (1.0.1)
113
+ globalid (1.0.0)
114
+ activesupport (>= 5.0)
115
+ hashdiff (1.0.1)
116
+ i18n (1.11.0)
101
117
  concurrent-ruby (~> 1.0)
102
118
  integration (0.1.0)
103
- jdbc-sqlite3 (3.28.0)
104
119
  jekyll (2.5.3)
105
120
  classifier-reborn (~> 2.0)
106
121
  colorator (~> 0.1)
@@ -116,9 +131,9 @@ GEM
116
131
  redcarpet (~> 3.1)
117
132
  safe_yaml (~> 1.0)
118
133
  toml (~> 0.1.0)
119
- jekyll-coffeescript (1.1.1)
134
+ jekyll-coffeescript (1.2.2)
120
135
  coffee-script (~> 2.2)
121
- coffee-script-source (~> 1.11.1)
136
+ coffee-script-source (~> 1.12)
122
137
  jekyll-gist (1.5.0)
123
138
  octokit (~> 4.2)
124
139
  jekyll-paginate (1.1.0)
@@ -128,99 +143,86 @@ GEM
128
143
  listen (~> 3.0)
129
144
  kramdown (1.17.0)
130
145
  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)
146
+ listen (3.7.1)
147
+ rb-fsevent (~> 0.10, >= 0.10.3)
148
+ rb-inotify (~> 0.9, >= 0.9.10)
149
+ loofah (2.18.0)
136
150
  crass (~> 1.0.2)
137
151
  nokogiri (>= 1.5.9)
138
- mail (2.7.0)
152
+ mail (2.7.1)
139
153
  mini_mime (>= 0.1.1)
140
- marcel (0.3.3)
141
- mimemagic (~> 0.3.2)
154
+ marcel (1.0.2)
155
+ matrix (0.4.2)
142
156
  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)
157
+ method_source (1.0.0)
158
+ mini_mime (1.1.2)
149
159
  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)
160
+ minitest (5.15.0)
161
+ mocha (1.14.0)
162
+ mongo (2.17.1)
163
+ bson (>= 4.8.2, < 5.0.0)
164
+ multipart-post (2.2.3)
165
+ nio4r (2.5.8)
158
166
  nokogiri (1.12.5)
159
167
  mini_portile2 (~> 2.6.1)
160
168
  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
- parallel (1.21.0)
166
- parser (3.1.1.0)
169
+ octokit (4.25.1)
170
+ faraday (>= 1, < 3)
171
+ sawyer (~> 0.9)
172
+ parallel (1.22.1)
173
+ parser (3.1.2.0)
167
174
  ast (~> 2.4.1)
168
175
  parslet (1.5.0)
169
176
  blankslate (~> 2.0)
170
- passenger (6.0.12)
177
+ passenger (6.0.14)
171
178
  rack
172
179
  rake (>= 0.8.1)
173
- posix-spawn (0.3.13)
174
- pry (0.11.3)
175
- coderay (~> 1.1.0)
176
- method_source (~> 0.9.0)
177
- pry (0.11.3-java)
178
- coderay (~> 1.1.0)
179
- method_source (~> 0.9.0)
180
- spoon (~> 0.0)
181
- public_suffix (3.0.2)
180
+ posix-spawn (0.3.15)
181
+ pry (0.14.1)
182
+ coderay (~> 1.1)
183
+ method_source (~> 1.0)
184
+ public_suffix (4.0.7)
182
185
  pygments.rb (0.6.3)
183
186
  posix-spawn (~> 0.3.6)
184
187
  yajl-ruby (~> 1.2.0)
185
188
  racc (1.6.0)
186
- racc (1.6.0-java)
187
- rack (2.2.3)
188
- rack-test (1.1.0)
189
- rack (>= 1.0, < 3)
190
- rails (5.2.0)
191
- actioncable (= 5.2.0)
192
- actionmailer (= 5.2.0)
193
- actionpack (= 5.2.0)
194
- actionview (= 5.2.0)
195
- activejob (= 5.2.0)
196
- activemodel (= 5.2.0)
197
- activerecord (= 5.2.0)
198
- activestorage (= 5.2.0)
199
- activesupport (= 5.2.0)
189
+ rack (2.2.4)
190
+ rack-test (2.0.2)
191
+ rack (>= 1.3)
192
+ rails (5.2.8.1)
193
+ actioncable (= 5.2.8.1)
194
+ actionmailer (= 5.2.8.1)
195
+ actionpack (= 5.2.8.1)
196
+ actionview (= 5.2.8.1)
197
+ activejob (= 5.2.8.1)
198
+ activemodel (= 5.2.8.1)
199
+ activerecord (= 5.2.8.1)
200
+ activestorage (= 5.2.8.1)
201
+ activesupport (= 5.2.8.1)
200
202
  bundler (>= 1.3.0)
201
- railties (= 5.2.0)
203
+ railties (= 5.2.8.1)
202
204
  sprockets-rails (>= 2.0.0)
203
205
  rails-dom-testing (2.0.3)
204
206
  activesupport (>= 4.2.0)
205
207
  nokogiri (>= 1.6)
206
- rails-html-sanitizer (1.0.4)
207
- loofah (~> 2.2, >= 2.2.2)
208
- railties (5.2.0)
209
- actionpack (= 5.2.0)
210
- activesupport (= 5.2.0)
208
+ rails-html-sanitizer (1.4.3)
209
+ loofah (~> 2.3)
210
+ railties (5.2.8.1)
211
+ actionpack (= 5.2.8.1)
212
+ activesupport (= 5.2.8.1)
211
213
  method_source
212
214
  rake (>= 0.8.7)
213
- thor (>= 0.18.1, < 2.0)
215
+ thor (>= 0.19.0, < 2.0)
214
216
  rainbow (3.1.1)
215
217
  rake (13.0.6)
216
- rb-fsevent (0.10.3)
217
- rb-inotify (0.9.10)
218
- ffi (>= 0.5.0, < 2)
219
- redcarpet (3.4.0)
220
- redis (4.6.0)
218
+ rb-fsevent (0.11.1)
219
+ rb-inotify (0.10.1)
220
+ ffi (~> 1.0)
221
+ redcarpet (3.5.1)
222
+ redis (4.7.1)
221
223
  redis-namespace (1.8.2)
222
224
  redis (>= 3.0.4)
223
- regexp_parser (2.2.1)
225
+ regexp_parser (2.5.0)
224
226
  rexml (3.2.5)
225
227
  rubocop (1.25.1)
226
228
  parallel (~> 1.10)
@@ -233,56 +235,52 @@ GEM
233
235
  unicode-display_width (>= 1.4.0, < 3.0)
234
236
  rubocop-ast (1.15.2)
235
237
  parser (>= 3.0.1.1)
236
- rubocop-performance (1.13.2)
238
+ rubocop-performance (1.13.3)
237
239
  rubocop (>= 1.7.0, < 2.0)
238
240
  rubocop-ast (>= 0.4.0)
239
- rubocop-rspec (2.8.0)
241
+ rubocop-rspec (2.10.0)
240
242
  rubocop (~> 1.19)
241
243
  ruby-progressbar (1.11.0)
242
- ruby_dep (1.5.0)
244
+ ruby2_keywords (0.0.5)
243
245
  rubystats (0.3.0)
244
- safe_yaml (1.0.4)
245
- sass (3.5.7)
246
+ safe_yaml (1.0.5)
247
+ sass (3.7.4)
246
248
  sass-listen (~> 4.0.0)
247
249
  sass-listen (4.0.0)
248
250
  rb-fsevent (~> 0.9, >= 0.9.4)
249
251
  rb-inotify (~> 0.9, >= 0.9.7)
250
- sawyer (0.8.1)
251
- addressable (>= 2.3.5, < 2.6)
252
- faraday (~> 0.8, < 1.0)
253
- spoon (0.0.6)
254
- ffi
255
- sprockets (3.7.2)
252
+ sawyer (0.9.2)
253
+ addressable (>= 2.3.5)
254
+ faraday (>= 0.17.3, < 3)
255
+ sprockets (4.1.1)
256
256
  concurrent-ruby (~> 1.0)
257
257
  rack (> 1, < 3)
258
- sprockets-rails (3.2.1)
259
- actionpack (>= 4.0)
260
- activesupport (>= 4.0)
258
+ sprockets-rails (3.4.2)
259
+ actionpack (>= 5.2)
260
+ activesupport (>= 5.2)
261
261
  sprockets (>= 3.0.0)
262
- sqlite3 (1.3.10)
263
- thor (0.20.0)
262
+ sqlite3 (1.4.4)
263
+ thor (1.2.1)
264
264
  thread_safe (0.3.6)
265
- thread_safe (0.3.6-java)
266
- timecop (0.9.1)
265
+ timecop (0.9.5)
267
266
  toml (0.1.2)
268
267
  parslet (~> 1.5.0)
269
- tzinfo (1.2.5)
268
+ tzinfo (1.2.9)
270
269
  thread_safe (~> 0.1)
271
- unicode-display_width (2.1.0)
272
- webmock (3.4.2)
273
- addressable (>= 2.3.6)
270
+ unicode-display_width (2.2.0)
271
+ webmock (3.14.0)
272
+ addressable (>= 2.8.0)
274
273
  crack (>= 0.3.2)
275
- hashdiff
276
- websocket-driver (0.7.0)
277
- websocket-extensions (>= 0.1.0)
278
- websocket-driver (0.7.0-java)
274
+ hashdiff (>= 0.4.0, < 2.0.0)
275
+ webrick (1.7.0)
276
+ websocket-driver (0.7.5)
279
277
  websocket-extensions (>= 0.1.0)
280
- websocket-extensions (0.1.3)
278
+ websocket-extensions (0.1.5)
281
279
  yajl-ruby (1.2.3)
282
- yard (0.9.15)
280
+ yard (0.9.28)
281
+ webrick (~> 1.7.0)
283
282
 
284
283
  PLATFORMS
285
- java
286
284
  ruby
287
285
 
288
286
  DEPENDENCIES
@@ -306,11 +304,12 @@ DEPENDENCIES
306
304
  rake
307
305
  redis (>= 3.2.1)
308
306
  redis-namespace (>= 1.1.0)
309
- rubocop
307
+ rubocop (~> 1.25.1)
308
+ rubocop-ast (~> 1.15.2)
310
309
  rubocop-performance
311
310
  rubocop-rspec
312
311
  rubystats (>= 0.2.5)
313
- sqlite3 (~> 1.3.10)
312
+ sqlite3 (~> 1.4.0)
314
313
  timecop
315
314
  vanity!
316
315
  webmock