copy_tuner_client 0.5.3 → 0.6.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: 8c290a8152b613cff2f7a6eb7a1a4c38aad8efd00abe18ab02dd4d6948f0ba9d
4
- data.tar.gz: 49be3afdfe9251f4b5b4dfa76017986d93853e1dcddda846b26a5f7896be3836
3
+ metadata.gz: '090429dd089bb2fac016c9940170dc783f9a6928caad328fe4d345530a41f572'
4
+ data.tar.gz: b27ac90a2d114d53df7f0be53bd1406743d6d71bb7ada125b346805e67b8c8af
5
5
  SHA512:
6
- metadata.gz: 2abb1b21480ba86e3cc600457b173efebcadfe882c2c4d4002554212ee69f045e6a5e02ca25a2bf2a4af34eaa190f4c64e6f33559522511511e368c2c7e9ee1a
7
- data.tar.gz: 96cdf62ad947ecf93f1f7adee3f66773b95c37b4ba5e5bcc83e00e974a4499941b5f68f3d49a9a96505e0ccd9fdd0a7d3fa6d602f8075fc074ad3fa1969d4372
6
+ metadata.gz: af825d9e7303246142ef1f42a510835a5f35a64220bd5ec746e9171b57bea6d670d5182b9edd5327972679226dba97c0689fa6ac9533c1739b43c51476127b48
7
+ data.tar.gz: 0df7a262083240acf3d1eb69b8fa3c3177f71e1c90fd7b6f5e70707fa9ba8ba74f2084d73b48344b6597cdbc3aaad387c9144c04ebf8f2e77064dac7be54de28
@@ -0,0 +1,53 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
6
+ # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
7
+
8
+ name: Ruby
9
+
10
+ on:
11
+ push:
12
+ branches: [ master ]
13
+ pull_request:
14
+
15
+ jobs:
16
+ rspec:
17
+ runs-on: ubuntu-latest
18
+ env:
19
+ BUNDLE_JOBS: 4
20
+ BUNDLE_RETRY: 3
21
+ strategy:
22
+ fail-fast: false
23
+ matrix:
24
+ ruby: [2.6, 2.7]
25
+ gemfile: [
26
+ "gemfiles/5.2.gemfile",
27
+ "gemfiles/6.0.gemfile",
28
+ ]
29
+ steps:
30
+ - name: Install packages
31
+ run: |
32
+ sudo apt update -y
33
+ sudo apt install -y libsqlite3-dev
34
+ - uses: actions/checkout@v2
35
+ - uses: actions/cache@v1
36
+ with:
37
+ path: /home/runner/bundle
38
+ key: bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }}
39
+ restore-keys: |
40
+ bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-
41
+ - name: Set up Ruby
42
+ uses: ruby/setup-ruby@v1
43
+ with:
44
+ ruby-version: ${{ matrix.ruby }}
45
+ - name: Install dependencies
46
+ run: |
47
+ bundle config path /home/runner/bundle
48
+ bundle config --global gemfile ${{ matrix.gemfile }}
49
+ bundle install
50
+ bundle update
51
+ bundle clean
52
+ - name: Run rspec
53
+ run: bundle exec rspec
@@ -1 +1 @@
1
- 2.6.5
1
+ 2.7.1
@@ -1,3 +1,12 @@
1
+ ## 0.6.1
2
+
3
+ - Fix ruby@2.7 keyword warning
4
+
5
+ ## 0.6.0
6
+
7
+ - Drop support for ruby 2.4
8
+ - Drop support for rails 5.1
9
+
1
10
  ## 0.5.2
2
11
 
3
12
  - Do not upload invalid keys
@@ -1,228 +1,227 @@
1
1
  GIT
2
2
  remote: git://github.com/SonicGarden/sgcop.git
3
- revision: e2d584a7278a45b4f43d31fd9331b718f36b018e
3
+ revision: cbe7f18b9e81e9e3cda2e4bc5f64735fa014dc9b
4
4
  specs:
5
- sgcop (0.0.32)
5
+ sgcop (0.0.36)
6
6
  brakeman
7
7
  brakeman_translate_checkstyle_format
8
8
  haml_lint (~> 0.34.0)
9
- rubocop (~> 0.75.1)
10
- rubocop-performance (~> 1.5.0)
11
- rubocop-rails (~> 2.3.2)
12
- rubocop-rspec (~> 1.36.0)
9
+ rubocop (~> 0.81.0)
10
+ rubocop-performance (~> 1.5.2)
11
+ rubocop-rails (~> 2.5.2)
12
+ rubocop-rspec (~> 1.38.1)
13
13
 
14
14
  PATH
15
15
  remote: .
16
16
  specs:
17
- copy_tuner_client (0.5.3)
17
+ copy_tuner_client (0.6.1)
18
18
  i18n (>= 0.5.0)
19
19
  json
20
20
 
21
21
  GEM
22
22
  remote: http://rubygems.org/
23
23
  specs:
24
- actionmailer (4.2.8)
25
- actionpack (= 4.2.8)
26
- actionview (= 4.2.8)
27
- activejob (= 4.2.8)
24
+ actioncable (5.2.4.2)
25
+ actionpack (= 5.2.4.2)
26
+ nio4r (~> 2.0)
27
+ websocket-driver (>= 0.6.1)
28
+ actionmailer (5.2.4.2)
29
+ actionpack (= 5.2.4.2)
30
+ actionview (= 5.2.4.2)
31
+ activejob (= 5.2.4.2)
28
32
  mail (~> 2.5, >= 2.5.4)
29
- rails-dom-testing (~> 1.0, >= 1.0.5)
30
- actionpack (4.2.8)
31
- actionview (= 4.2.8)
32
- activesupport (= 4.2.8)
33
- rack (~> 1.6)
34
- rack-test (~> 0.6.2)
35
- rails-dom-testing (~> 1.0, >= 1.0.5)
33
+ rails-dom-testing (~> 2.0)
34
+ actionpack (5.2.4.2)
35
+ actionview (= 5.2.4.2)
36
+ activesupport (= 5.2.4.2)
37
+ rack (~> 2.0, >= 2.0.8)
38
+ rack-test (>= 0.6.3)
39
+ rails-dom-testing (~> 2.0)
36
40
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
37
- actionview (4.2.8)
38
- activesupport (= 4.2.8)
41
+ actionview (5.2.4.2)
42
+ activesupport (= 5.2.4.2)
39
43
  builder (~> 3.1)
40
- erubis (~> 2.7.0)
41
- rails-dom-testing (~> 1.0, >= 1.0.5)
44
+ erubi (~> 1.4)
45
+ rails-dom-testing (~> 2.0)
42
46
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
43
- activejob (4.2.8)
44
- activesupport (= 4.2.8)
45
- globalid (>= 0.3.0)
46
- activemodel (4.2.8)
47
- activesupport (= 4.2.8)
48
- builder (~> 3.1)
49
- activerecord (4.2.8)
50
- activemodel (= 4.2.8)
51
- activesupport (= 4.2.8)
52
- arel (~> 6.0)
53
- activesupport (4.2.8)
54
- i18n (~> 0.7)
47
+ activejob (5.2.4.2)
48
+ activesupport (= 5.2.4.2)
49
+ globalid (>= 0.3.6)
50
+ activemodel (5.2.4.2)
51
+ activesupport (= 5.2.4.2)
52
+ activerecord (5.2.4.2)
53
+ activemodel (= 5.2.4.2)
54
+ activesupport (= 5.2.4.2)
55
+ arel (>= 9.0)
56
+ activestorage (5.2.4.2)
57
+ actionpack (= 5.2.4.2)
58
+ activerecord (= 5.2.4.2)
59
+ marcel (~> 0.3.1)
60
+ activesupport (5.2.4.2)
61
+ concurrent-ruby (~> 1.0, >= 1.0.2)
62
+ i18n (>= 0.7, < 2)
55
63
  minitest (~> 5.1)
56
- thread_safe (~> 0.3, >= 0.3.4)
57
64
  tzinfo (~> 1.1)
58
- addressable (2.5.1)
59
- public_suffix (~> 2.0, >= 2.0.2)
60
- appraisal (2.1.0)
61
- bundler
62
- rake
63
- thor (>= 0.14.0)
64
- arel (6.0.4)
65
- aruba (0.6.2)
66
- childprocess (>= 0.3.6)
67
- cucumber (>= 1.1.1)
68
- rspec-expectations (>= 2.7.0)
65
+ addressable (2.7.0)
66
+ public_suffix (>= 2.0.2, < 5.0)
67
+ arel (9.0.0)
69
68
  ast (2.4.0)
70
- brakeman (4.7.1)
69
+ brakeman (4.8.1)
71
70
  brakeman_translate_checkstyle_format (0.0.1)
72
71
  thor
73
- builder (3.2.3)
74
- childprocess (0.6.3)
75
- ffi (~> 1.0, >= 1.0.11)
76
- concurrent-ruby (1.0.5)
72
+ builder (3.2.4)
73
+ concurrent-ruby (1.1.6)
77
74
  crack (0.4.3)
78
75
  safe_yaml (~> 1.0.0)
79
- cucumber (1.3.20)
80
- builder (>= 2.1.2)
81
- diff-lcs (>= 1.1.3)
82
- gherkin (~> 2.12)
83
- multi_json (>= 1.7.5, < 2.0)
84
- multi_test (>= 0.1.2)
85
- daemons (1.2.4)
76
+ crass (1.0.6)
77
+ daemons (1.3.1)
86
78
  diff-lcs (1.3)
87
- erubis (2.7.0)
88
- eventmachine (1.2.3)
89
- ffi (1.9.18)
90
- gherkin (2.12.2)
91
- multi_json (~> 1.3)
92
- globalid (0.3.7)
93
- activesupport (>= 4.1.0)
79
+ erubi (1.9.0)
80
+ eventmachine (1.2.7)
81
+ globalid (0.4.2)
82
+ activesupport (>= 4.2.0)
94
83
  haml (5.1.2)
95
84
  temple (>= 0.8.0)
96
85
  tilt
97
- haml_lint (0.34.0)
86
+ haml_lint (0.34.2)
98
87
  haml (>= 4.0, < 5.2)
99
88
  rainbow
100
89
  rubocop (>= 0.50.0)
101
90
  sysexits (~> 1.1)
102
- hashdiff (0.3.2)
103
- i18n (0.8.1)
91
+ hashdiff (1.0.1)
92
+ i18n (1.8.2)
93
+ concurrent-ruby (~> 1.0)
104
94
  jaro_winkler (1.5.4)
105
- json (2.2.0)
106
- loofah (2.0.3)
95
+ json (2.3.1)
96
+ loofah (2.5.0)
97
+ crass (~> 1.0.2)
107
98
  nokogiri (>= 1.5.9)
108
- mail (2.6.4)
109
- mime-types (>= 1.16, < 4)
110
- mime-types (3.1)
111
- mime-types-data (~> 3.2015)
112
- mime-types-data (3.2016.0521)
113
- mini_portile2 (2.3.0)
114
- minitest (5.10.1)
115
- multi_json (1.12.1)
116
- multi_test (0.1.2)
117
- nokogiri (1.8.2)
118
- mini_portile2 (~> 2.3.0)
119
- parallel (1.18.0)
120
- parser (2.6.5.0)
99
+ mail (2.7.1)
100
+ mini_mime (>= 0.1.1)
101
+ marcel (0.3.3)
102
+ mimemagic (~> 0.3.2)
103
+ method_source (1.0.0)
104
+ mimemagic (0.3.4)
105
+ mini_mime (1.0.2)
106
+ mini_portile2 (2.4.0)
107
+ minitest (5.14.0)
108
+ mustermann (1.1.1)
109
+ ruby2_keywords (~> 0.0.1)
110
+ nio4r (2.5.2)
111
+ nokogiri (1.10.9)
112
+ mini_portile2 (~> 2.4.0)
113
+ parallel (1.19.1)
114
+ parser (2.7.1.2)
121
115
  ast (~> 2.4.0)
122
- public_suffix (2.0.5)
123
- rack (1.6.5)
124
- rack-protection (1.5.3)
116
+ public_suffix (4.0.4)
117
+ rack (2.2.2)
118
+ rack-protection (2.0.8.1)
125
119
  rack
126
- rack-test (0.6.3)
127
- rack (>= 1.0)
128
- rails (4.2.8)
129
- actionmailer (= 4.2.8)
130
- actionpack (= 4.2.8)
131
- actionview (= 4.2.8)
132
- activejob (= 4.2.8)
133
- activemodel (= 4.2.8)
134
- activerecord (= 4.2.8)
135
- activesupport (= 4.2.8)
136
- bundler (>= 1.3.0, < 2.0)
137
- railties (= 4.2.8)
138
- sprockets-rails
139
- rails-deprecated_sanitizer (1.0.3)
140
- activesupport (>= 4.2.0.alpha)
141
- rails-dom-testing (1.0.8)
142
- activesupport (>= 4.2.0.beta, < 5.0)
143
- nokogiri (~> 1.6)
144
- rails-deprecated_sanitizer (>= 1.0.1)
145
- rails-html-sanitizer (1.0.3)
146
- loofah (~> 2.0)
147
- railties (4.2.8)
148
- actionpack (= 4.2.8)
149
- activesupport (= 4.2.8)
120
+ rack-test (1.1.0)
121
+ rack (>= 1.0, < 3)
122
+ rails (5.2.4.2)
123
+ actioncable (= 5.2.4.2)
124
+ actionmailer (= 5.2.4.2)
125
+ actionpack (= 5.2.4.2)
126
+ actionview (= 5.2.4.2)
127
+ activejob (= 5.2.4.2)
128
+ activemodel (= 5.2.4.2)
129
+ activerecord (= 5.2.4.2)
130
+ activestorage (= 5.2.4.2)
131
+ activesupport (= 5.2.4.2)
132
+ bundler (>= 1.3.0)
133
+ railties (= 5.2.4.2)
134
+ sprockets-rails (>= 2.0.0)
135
+ rails-dom-testing (2.0.3)
136
+ activesupport (>= 4.2.0)
137
+ nokogiri (>= 1.6)
138
+ rails-html-sanitizer (1.3.0)
139
+ loofah (~> 2.3)
140
+ railties (5.2.4.2)
141
+ actionpack (= 5.2.4.2)
142
+ activesupport (= 5.2.4.2)
143
+ method_source
150
144
  rake (>= 0.8.7)
151
- thor (>= 0.18.1, < 2.0)
145
+ thor (>= 0.19.0, < 2.0)
152
146
  rainbow (3.0.0)
153
- rake (12.0.0)
154
- rspec (3.5.0)
155
- rspec-core (~> 3.5.0)
156
- rspec-expectations (~> 3.5.0)
157
- rspec-mocks (~> 3.5.0)
158
- rspec-core (3.5.4)
159
- rspec-support (~> 3.5.0)
160
- rspec-expectations (3.5.0)
147
+ rake (13.0.1)
148
+ rexml (3.2.4)
149
+ rspec (3.8.0)
150
+ rspec-core (~> 3.8.0)
151
+ rspec-expectations (~> 3.8.0)
152
+ rspec-mocks (~> 3.8.0)
153
+ rspec-core (3.8.2)
154
+ rspec-support (~> 3.8.0)
155
+ rspec-expectations (3.8.6)
161
156
  diff-lcs (>= 1.2.0, < 2.0)
162
- rspec-support (~> 3.5.0)
163
- rspec-mocks (3.5.0)
157
+ rspec-support (~> 3.8.0)
158
+ rspec-mocks (3.8.2)
164
159
  diff-lcs (>= 1.2.0, < 2.0)
165
- rspec-support (~> 3.5.0)
166
- rspec-support (3.5.0)
167
- rubocop (0.75.1)
160
+ rspec-support (~> 3.8.0)
161
+ rspec-support (3.8.3)
162
+ rubocop (0.81.0)
168
163
  jaro_winkler (~> 1.5.1)
169
164
  parallel (~> 1.10)
170
- parser (>= 2.6)
165
+ parser (>= 2.7.0.1)
171
166
  rainbow (>= 2.2.2, < 4.0)
167
+ rexml
172
168
  ruby-progressbar (~> 1.7)
173
- unicode-display_width (>= 1.4.0, < 1.7)
174
- rubocop-performance (1.5.0)
169
+ unicode-display_width (>= 1.4.0, < 2.0)
170
+ rubocop-performance (1.5.2)
175
171
  rubocop (>= 0.71.0)
176
- rubocop-rails (2.3.2)
172
+ rubocop-rails (2.5.2)
173
+ activesupport
177
174
  rack (>= 1.1)
178
175
  rubocop (>= 0.72.0)
179
- rubocop-rspec (1.36.0)
176
+ rubocop-rspec (1.38.1)
180
177
  rubocop (>= 0.68.1)
181
178
  ruby-progressbar (1.10.1)
182
- safe_yaml (1.0.4)
183
- sham_rack (1.4.0)
179
+ ruby2_keywords (0.0.2)
180
+ safe_yaml (1.0.5)
181
+ sham_rack (1.4.1)
184
182
  rack
185
- sinatra (1.4.8)
186
- rack (~> 1.5)
187
- rack-protection (~> 1.4)
188
- tilt (>= 1.3, < 3)
189
- sprockets (3.7.1)
183
+ sinatra (2.0.8.1)
184
+ mustermann (~> 1.0)
185
+ rack (~> 2.0)
186
+ rack-protection (= 2.0.8.1)
187
+ tilt (~> 2.0)
188
+ sprockets (4.0.0)
190
189
  concurrent-ruby (~> 1.0)
191
190
  rack (> 1, < 3)
192
- sprockets-rails (3.2.0)
191
+ sprockets-rails (3.2.1)
193
192
  actionpack (>= 4.0)
194
193
  activesupport (>= 4.0)
195
194
  sprockets (>= 3.0.0)
196
- sqlite3 (1.3.13)
195
+ sqlite3 (1.4.2)
197
196
  sysexits (1.2.0)
198
197
  temple (0.8.2)
199
- thin (1.7.0)
198
+ thin (1.7.2)
200
199
  daemons (~> 1.0, >= 1.0.9)
201
200
  eventmachine (~> 1.0, >= 1.0.4)
202
201
  rack (>= 1, < 3)
203
- thor (0.19.4)
202
+ thor (1.0.1)
204
203
  thread_safe (0.3.6)
205
- tilt (2.0.7)
206
- tzinfo (1.2.3)
204
+ tilt (2.0.10)
205
+ tzinfo (1.2.7)
207
206
  thread_safe (~> 0.1)
208
- unicode-display_width (1.6.0)
209
- webmock (2.3.2)
207
+ unicode-display_width (1.7.0)
208
+ webmock (3.8.3)
210
209
  addressable (>= 2.3.6)
211
210
  crack (>= 0.3.2)
212
- hashdiff
213
- yard (0.9.8)
211
+ hashdiff (>= 0.4.0, < 2.0.0)
212
+ websocket-driver (0.7.1)
213
+ websocket-extensions (>= 0.1.0)
214
+ websocket-extensions (0.1.4)
215
+ yard (0.9.24)
214
216
 
215
217
  PLATFORMS
216
218
  ruby
217
219
 
218
220
  DEPENDENCIES
219
- appraisal (~> 2.1)
220
- aruba (~> 0.6.0)
221
221
  copy_tuner_client!
222
- cucumber (~> 1.3.16)
223
- rails (~> 4.2.6)
222
+ rails (~> 5.2.4.2)
224
223
  rake
225
- rspec
224
+ rspec (= 3.8.0)
226
225
  sgcop!
227
226
  sham_rack
228
227
  sinatra
@@ -232,4 +231,4 @@ DEPENDENCIES
232
231
  yard
233
232
 
234
233
  BUNDLED WITH
235
- 1.17.2
234
+ 2.1.4