copy_tuner_client 0.10.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/.eslintrc.js +12 -0
  3. data/.gitattributes +2 -0
  4. data/.github/workflows/rspec.yml +22 -30
  5. data/.ruby-version +1 -1
  6. data/.vscode/settings.json +7 -0
  7. data/CHANGELOG.md +13 -0
  8. data/Gemfile +1 -1
  9. data/Gemfile.lock +168 -145
  10. data/README.md +8 -10
  11. data/app/assets/javascripts/main.js +388 -0
  12. data/app/assets/stylesheets/style.css +1 -0
  13. data/copy_tuner_client.gemspec +3 -3
  14. data/gemfiles/6.1.gemfile +5 -0
  15. data/gemfiles/7.0.gemfile +5 -0
  16. data/gemfiles/main.gemfile +5 -0
  17. data/index.html +34 -0
  18. data/lib/copy_tuner_client/configuration.rb +9 -1
  19. data/lib/copy_tuner_client/copyray_middleware.rb +15 -29
  20. data/lib/copy_tuner_client/engine.rb +6 -31
  21. data/lib/copy_tuner_client/errors.rb +3 -0
  22. data/lib/copy_tuner_client/helper_extension.rb +34 -0
  23. data/lib/copy_tuner_client/i18n_backend.rb +6 -0
  24. data/lib/copy_tuner_client/version.rb +1 -1
  25. data/package.json +14 -15
  26. data/spec/copy_tuner_client/helper_extension_spec.rb +40 -0
  27. data/spec/copy_tuner_client/i18n_backend_spec.rb +2 -0
  28. data/{app/assets/stylesheets → src}/copyray.css +0 -0
  29. data/src/copyray.ts +130 -0
  30. data/src/copytuner_bar.ts +115 -0
  31. data/src/main.ts +58 -0
  32. data/src/specimen.ts +84 -0
  33. data/src/util.ts +38 -0
  34. data/src/vite-env.d.ts +1 -0
  35. data/tsconfig.json +26 -0
  36. data/vite.config.ts +18 -0
  37. data/yarn.lock +2251 -0
  38. metadata +36 -27
  39. data/.eslintrc +0 -4
  40. data/app/assets/javascripts/copyray.js +0 -1069
  41. data/app/views/_copy_tuner_bar.html.erb +0 -6
  42. data/gemfiles/5.2.gemfile +0 -7
  43. data/gemfiles/6.0.gemfile +0 -7
  44. data/package-lock.json +0 -4341
  45. data/rollup.config.js +0 -16
  46. data/src/copyray.js +0 -112
  47. data/src/copytuner_bar.js +0 -96
  48. data/src/main.js +0 -42
  49. data/src/specimen.js +0 -63
  50. data/src/util.js +0 -32
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bccd14def1ebe5752df2720935cff2474e749adc498cdcd310e4c8eeb3144245
4
- data.tar.gz: f1acb0047c41797eb773eb852379d1921e040a1e5688eea89a7becce3f4540c4
3
+ metadata.gz: ec8d15928bbbb3d88569bb8ec24755a845ef0d3cb0790bda8abe9ed824d473ac
4
+ data.tar.gz: 0b1d3749c9e763de26261839d5d8470eb33b1b4a673a1a09513a3ba7a2e49678
5
5
  SHA512:
6
- metadata.gz: 669c8e6bc71974318d16f4277f498a8933869486a23a9fcbbd67375cfd9d8325e65a700645b01454d062d986763a32a264f33d3b01f2ec41cc7e4d5d5fe7035d
7
- data.tar.gz: b201841f91363ec9f725bd071f2ddb8f341412ba0ce58edcd9e39b530ff092356592d33a57366fed95070d64e0226b428144b4fc315ffc6b121ac062f6d2848f
6
+ metadata.gz: 516a4b43547717f658498735f908c138427a01f951916aee27065181e525b48d4dee9e823930ce406e2119fac54f2f8be04dc54926dd8c3726f2ccdf958c69c3
7
+ data.tar.gz: d2aac09f2b3db806a0aa76ed493f0a43b1efd0806f860131c31c20b750c819ca7102fb015a6be5c0e7822256183fa7a10389ae08546e6253553295634dc987d6
data/.eslintrc.js ADDED
@@ -0,0 +1,12 @@
1
+ module.exports = {
2
+ plugins: ['@sonicgarden'],
3
+ extends: [
4
+ 'plugin:@sonicgarden/browser',
5
+ 'plugin:@sonicgarden/recommended',
6
+ 'plugin:@sonicgarden/typescript',
7
+ 'plugin:@sonicgarden/prettier',
8
+ ],
9
+ settings: {
10
+ 'import/internal-regex': '^@/',
11
+ },
12
+ }
data/.gitattributes ADDED
@@ -0,0 +1,2 @@
1
+ app/assets/javascripts/main.js linguist-generated=true
2
+ app/assets/stylesheets/style.css linguist-generated=true
@@ -9,7 +9,7 @@ name: Ruby
9
9
 
10
10
  on:
11
11
  push:
12
- branches: [ master ]
12
+ branches: [master]
13
13
  pull_request:
14
14
 
15
15
  jobs:
@@ -18,36 +18,28 @@ jobs:
18
18
  env:
19
19
  BUNDLE_JOBS: 4
20
20
  BUNDLE_RETRY: 3
21
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
21
22
  strategy:
22
23
  fail-fast: false
23
24
  matrix:
24
- ruby: [2.6, 2.7]
25
- gemfile: [
26
- "gemfiles/5.2.gemfile",
27
- "gemfiles/6.0.gemfile",
28
- ]
25
+ ruby: [2.7, "3.0", 3.1]
26
+ gemfile: ["6.1", "7.0", "main"]
27
+ exclude:
28
+ - ruby: "3.1"
29
+ gemfile: "6.1"
29
30
  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
31
+ - name: Install packages
32
+ run: |
33
+ sudo apt update -y
34
+ sudo apt install -y libsqlite3-dev
35
+
36
+ - uses: actions/checkout@v2
37
+
38
+ - name: Set up Ruby
39
+ uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby }}
42
+ bundler-cache: true
43
+
44
+ - name: Run rspec
45
+ run: bundle exec rspec
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.1
1
+ 3.0.4
@@ -0,0 +1,7 @@
1
+ {
2
+ "editor.codeActionsOnSave": {
3
+ "source.fixAll.eslint": true,
4
+ },
5
+ "typescript.tsdk": "node_modules/typescript/lib",
6
+ "typescript.preferences.importModuleSpecifier": "non-relative",
7
+ }
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 0.13.0
2
+
3
+ - Drop support for ruby 2.6
4
+
5
+ ## 0.12.0
6
+
7
+ - Add `config.ignored_keys` and `config.ignored_key_handler`
8
+
9
+ ## 0.11.0
10
+
11
+ - Remove deprecated rescue_format option
12
+ - Fix ruby@2.7 keyword warning
13
+
1
14
  ## 0.10.0
2
15
 
3
16
  - Add copy_tuner:detect_html_incompatible_keys task
data/Gemfile CHANGED
@@ -2,4 +2,4 @@ source 'http://rubygems.org'
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'sgcop', git: 'git://github.com/SonicGarden/sgcop.git'
5
+ gem 'sgcop', github: 'SonicGarden/sgcop'
data/Gemfile.lock CHANGED
@@ -1,20 +1,19 @@
1
1
  GIT
2
- remote: git://github.com/SonicGarden/sgcop.git
3
- revision: cbe7f18b9e81e9e3cda2e4bc5f64735fa014dc9b
2
+ remote: https://github.com/SonicGarden/sgcop.git
3
+ revision: a2478f309e7c82d32b93073e0a1158ab20c894c8
4
4
  specs:
5
- sgcop (0.0.36)
6
- brakeman
7
- brakeman_translate_checkstyle_format
8
- haml_lint (~> 0.34.0)
9
- rubocop (~> 0.81.0)
10
- rubocop-performance (~> 1.5.2)
11
- rubocop-rails (~> 2.5.2)
12
- rubocop-rspec (~> 1.38.1)
5
+ sgcop (0.5.14)
6
+ haml_lint (~> 0.40.0)
7
+ rubocop (~> 1.30.0)
8
+ rubocop-performance (~> 1.14.0)
9
+ rubocop-rails (~> 2.14.2)
10
+ rubocop-rake (~> 0.6.0)
11
+ rubocop-rspec (~> 2.11.1)
13
12
 
14
13
  PATH
15
14
  remote: .
16
15
  specs:
17
- copy_tuner_client (0.10.0)
16
+ copy_tuner_client (0.13.0)
18
17
  i18n (>= 0.5.0)
19
18
  json
20
19
  nokogiri
@@ -22,207 +21,231 @@ PATH
22
21
  GEM
23
22
  remote: http://rubygems.org/
24
23
  specs:
25
- actioncable (5.2.4.2)
26
- actionpack (= 5.2.4.2)
24
+ actioncable (6.1.6)
25
+ actionpack (= 6.1.6)
26
+ activesupport (= 6.1.6)
27
27
  nio4r (~> 2.0)
28
28
  websocket-driver (>= 0.6.1)
29
- actionmailer (5.2.4.2)
30
- actionpack (= 5.2.4.2)
31
- actionview (= 5.2.4.2)
32
- activejob (= 5.2.4.2)
29
+ actionmailbox (6.1.6)
30
+ actionpack (= 6.1.6)
31
+ activejob (= 6.1.6)
32
+ activerecord (= 6.1.6)
33
+ activestorage (= 6.1.6)
34
+ activesupport (= 6.1.6)
35
+ mail (>= 2.7.1)
36
+ actionmailer (6.1.6)
37
+ actionpack (= 6.1.6)
38
+ actionview (= 6.1.6)
39
+ activejob (= 6.1.6)
40
+ activesupport (= 6.1.6)
33
41
  mail (~> 2.5, >= 2.5.4)
34
42
  rails-dom-testing (~> 2.0)
35
- actionpack (5.2.4.2)
36
- actionview (= 5.2.4.2)
37
- activesupport (= 5.2.4.2)
38
- rack (~> 2.0, >= 2.0.8)
43
+ actionpack (6.1.6)
44
+ actionview (= 6.1.6)
45
+ activesupport (= 6.1.6)
46
+ rack (~> 2.0, >= 2.0.9)
39
47
  rack-test (>= 0.6.3)
40
48
  rails-dom-testing (~> 2.0)
41
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
42
- actionview (5.2.4.2)
43
- activesupport (= 5.2.4.2)
49
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
50
+ actiontext (6.1.6)
51
+ actionpack (= 6.1.6)
52
+ activerecord (= 6.1.6)
53
+ activestorage (= 6.1.6)
54
+ activesupport (= 6.1.6)
55
+ nokogiri (>= 1.8.5)
56
+ actionview (6.1.6)
57
+ activesupport (= 6.1.6)
44
58
  builder (~> 3.1)
45
59
  erubi (~> 1.4)
46
60
  rails-dom-testing (~> 2.0)
47
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
48
- activejob (5.2.4.2)
49
- activesupport (= 5.2.4.2)
61
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
62
+ activejob (6.1.6)
63
+ activesupport (= 6.1.6)
50
64
  globalid (>= 0.3.6)
51
- activemodel (5.2.4.2)
52
- activesupport (= 5.2.4.2)
53
- activerecord (5.2.4.2)
54
- activemodel (= 5.2.4.2)
55
- activesupport (= 5.2.4.2)
56
- arel (>= 9.0)
57
- activestorage (5.2.4.2)
58
- actionpack (= 5.2.4.2)
59
- activerecord (= 5.2.4.2)
60
- marcel (~> 0.3.1)
61
- activesupport (5.2.4.2)
65
+ activemodel (6.1.6)
66
+ activesupport (= 6.1.6)
67
+ activerecord (6.1.6)
68
+ activemodel (= 6.1.6)
69
+ activesupport (= 6.1.6)
70
+ activestorage (6.1.6)
71
+ actionpack (= 6.1.6)
72
+ activejob (= 6.1.6)
73
+ activerecord (= 6.1.6)
74
+ activesupport (= 6.1.6)
75
+ marcel (~> 1.0)
76
+ mini_mime (>= 1.1.0)
77
+ activesupport (6.1.6)
62
78
  concurrent-ruby (~> 1.0, >= 1.0.2)
63
- i18n (>= 0.7, < 2)
64
- minitest (~> 5.1)
65
- tzinfo (~> 1.1)
66
- addressable (2.7.0)
79
+ i18n (>= 1.6, < 2)
80
+ minitest (>= 5.1)
81
+ tzinfo (~> 2.0)
82
+ zeitwerk (~> 2.3)
83
+ addressable (2.8.0)
67
84
  public_suffix (>= 2.0.2, < 5.0)
68
- arel (9.0.0)
69
- ast (2.4.0)
70
- brakeman (4.8.1)
71
- brakeman_translate_checkstyle_format (0.0.1)
72
- thor
85
+ ast (2.4.2)
73
86
  builder (3.2.4)
74
- concurrent-ruby (1.1.6)
75
- crack (0.4.3)
76
- safe_yaml (~> 1.0.0)
87
+ concurrent-ruby (1.1.10)
88
+ crack (0.4.5)
89
+ rexml
77
90
  crass (1.0.6)
78
- daemons (1.3.1)
79
- diff-lcs (1.3)
80
- erubi (1.9.0)
91
+ daemons (1.4.1)
92
+ diff-lcs (1.5.0)
93
+ erubi (1.10.0)
81
94
  eventmachine (1.2.7)
82
- globalid (0.4.2)
83
- activesupport (>= 4.2.0)
84
- haml (5.1.2)
95
+ globalid (1.0.0)
96
+ activesupport (>= 5.0)
97
+ haml (5.2.2)
85
98
  temple (>= 0.8.0)
86
99
  tilt
87
- haml_lint (0.34.2)
88
- haml (>= 4.0, < 5.2)
100
+ haml_lint (0.40.0)
101
+ haml (>= 4.0, < 5.3)
102
+ parallel (~> 1.10)
89
103
  rainbow
90
104
  rubocop (>= 0.50.0)
91
105
  sysexits (~> 1.1)
92
106
  hashdiff (1.0.1)
93
- i18n (1.8.2)
107
+ i18n (1.10.0)
94
108
  concurrent-ruby (~> 1.0)
95
- jaro_winkler (1.5.4)
96
- json (2.5.1)
97
- loofah (2.5.0)
109
+ json (2.6.2)
110
+ loofah (2.18.0)
98
111
  crass (~> 1.0.2)
99
112
  nokogiri (>= 1.5.9)
100
113
  mail (2.7.1)
101
114
  mini_mime (>= 0.1.1)
102
- marcel (0.3.3)
103
- mimemagic (~> 0.3.2)
115
+ marcel (1.0.2)
104
116
  method_source (1.0.0)
105
- mimemagic (0.3.4)
106
- mini_mime (1.0.2)
107
- mini_portile2 (2.4.0)
108
- minitest (5.14.0)
117
+ mini_mime (1.1.2)
118
+ mini_portile2 (2.8.0)
119
+ minitest (5.15.0)
109
120
  mustermann (1.1.1)
110
121
  ruby2_keywords (~> 0.0.1)
111
- nio4r (2.5.2)
112
- nokogiri (1.10.9)
113
- mini_portile2 (~> 2.4.0)
114
- parallel (1.19.1)
115
- parser (2.7.1.2)
116
- ast (~> 2.4.0)
117
- public_suffix (4.0.4)
118
- rack (2.2.2)
119
- rack-protection (2.0.8.1)
122
+ nio4r (2.5.8)
123
+ nokogiri (1.13.6)
124
+ mini_portile2 (~> 2.8.0)
125
+ racc (~> 1.4)
126
+ parallel (1.22.1)
127
+ parser (3.1.2.0)
128
+ ast (~> 2.4.1)
129
+ public_suffix (4.0.7)
130
+ racc (1.6.0)
131
+ rack (2.2.3.1)
132
+ rack-protection (2.2.0)
120
133
  rack
121
134
  rack-test (1.1.0)
122
135
  rack (>= 1.0, < 3)
123
- rails (5.2.4.2)
124
- actioncable (= 5.2.4.2)
125
- actionmailer (= 5.2.4.2)
126
- actionpack (= 5.2.4.2)
127
- actionview (= 5.2.4.2)
128
- activejob (= 5.2.4.2)
129
- activemodel (= 5.2.4.2)
130
- activerecord (= 5.2.4.2)
131
- activestorage (= 5.2.4.2)
132
- activesupport (= 5.2.4.2)
133
- bundler (>= 1.3.0)
134
- railties (= 5.2.4.2)
136
+ rails (6.1.6)
137
+ actioncable (= 6.1.6)
138
+ actionmailbox (= 6.1.6)
139
+ actionmailer (= 6.1.6)
140
+ actionpack (= 6.1.6)
141
+ actiontext (= 6.1.6)
142
+ actionview (= 6.1.6)
143
+ activejob (= 6.1.6)
144
+ activemodel (= 6.1.6)
145
+ activerecord (= 6.1.6)
146
+ activestorage (= 6.1.6)
147
+ activesupport (= 6.1.6)
148
+ bundler (>= 1.15.0)
149
+ railties (= 6.1.6)
135
150
  sprockets-rails (>= 2.0.0)
136
151
  rails-dom-testing (2.0.3)
137
152
  activesupport (>= 4.2.0)
138
153
  nokogiri (>= 1.6)
139
- rails-html-sanitizer (1.3.0)
154
+ rails-html-sanitizer (1.4.2)
140
155
  loofah (~> 2.3)
141
- railties (5.2.4.2)
142
- actionpack (= 5.2.4.2)
143
- activesupport (= 5.2.4.2)
156
+ railties (6.1.6)
157
+ actionpack (= 6.1.6)
158
+ activesupport (= 6.1.6)
144
159
  method_source
145
- rake (>= 0.8.7)
146
- thor (>= 0.19.0, < 2.0)
147
- rainbow (3.0.0)
148
- rake (13.0.1)
149
- rexml (3.2.4)
150
- rspec (3.8.0)
151
- rspec-core (~> 3.8.0)
152
- rspec-expectations (~> 3.8.0)
153
- rspec-mocks (~> 3.8.0)
154
- rspec-core (3.8.2)
155
- rspec-support (~> 3.8.0)
156
- rspec-expectations (3.8.6)
160
+ rake (>= 12.2)
161
+ thor (~> 1.0)
162
+ rainbow (3.1.1)
163
+ rake (13.0.6)
164
+ regexp_parser (2.5.0)
165
+ rexml (3.2.5)
166
+ rspec (3.11.0)
167
+ rspec-core (~> 3.11.0)
168
+ rspec-expectations (~> 3.11.0)
169
+ rspec-mocks (~> 3.11.0)
170
+ rspec-core (3.11.0)
171
+ rspec-support (~> 3.11.0)
172
+ rspec-expectations (3.11.0)
157
173
  diff-lcs (>= 1.2.0, < 2.0)
158
- rspec-support (~> 3.8.0)
159
- rspec-mocks (3.8.2)
174
+ rspec-support (~> 3.11.0)
175
+ rspec-mocks (3.11.1)
160
176
  diff-lcs (>= 1.2.0, < 2.0)
161
- rspec-support (~> 3.8.0)
162
- rspec-support (3.8.3)
163
- rubocop (0.81.0)
164
- jaro_winkler (~> 1.5.1)
177
+ rspec-support (~> 3.11.0)
178
+ rspec-support (3.11.0)
179
+ rubocop (1.30.0)
165
180
  parallel (~> 1.10)
166
- parser (>= 2.7.0.1)
181
+ parser (>= 3.1.0.0)
167
182
  rainbow (>= 2.2.2, < 4.0)
168
- rexml
183
+ regexp_parser (>= 1.8, < 3.0)
184
+ rexml (>= 3.2.5, < 4.0)
185
+ rubocop-ast (>= 1.18.0, < 2.0)
169
186
  ruby-progressbar (~> 1.7)
170
- unicode-display_width (>= 1.4.0, < 2.0)
171
- rubocop-performance (1.5.2)
172
- rubocop (>= 0.71.0)
173
- rubocop-rails (2.5.2)
174
- activesupport
187
+ unicode-display_width (>= 1.4.0, < 3.0)
188
+ rubocop-ast (1.18.0)
189
+ parser (>= 3.1.1.0)
190
+ rubocop-performance (1.14.0)
191
+ rubocop (>= 1.7.0, < 2.0)
192
+ rubocop-ast (>= 0.4.0)
193
+ rubocop-rails (2.14.2)
194
+ activesupport (>= 4.2.0)
175
195
  rack (>= 1.1)
176
- rubocop (>= 0.72.0)
177
- rubocop-rspec (1.38.1)
178
- rubocop (>= 0.68.1)
179
- ruby-progressbar (1.10.1)
180
- ruby2_keywords (0.0.2)
181
- safe_yaml (1.0.5)
196
+ rubocop (>= 1.7.0, < 2.0)
197
+ rubocop-rake (0.6.0)
198
+ rubocop (~> 1.0)
199
+ rubocop-rspec (2.11.1)
200
+ rubocop (~> 1.19)
201
+ ruby-progressbar (1.11.0)
202
+ ruby2_keywords (0.0.5)
182
203
  sham_rack (1.4.1)
183
204
  rack
184
- sinatra (2.0.8.1)
205
+ sinatra (2.2.0)
185
206
  mustermann (~> 1.0)
186
- rack (~> 2.0)
187
- rack-protection (= 2.0.8.1)
207
+ rack (~> 2.2)
208
+ rack-protection (= 2.2.0)
188
209
  tilt (~> 2.0)
189
- sprockets (4.0.0)
210
+ sprockets (4.0.3)
190
211
  concurrent-ruby (~> 1.0)
191
212
  rack (> 1, < 3)
192
- sprockets-rails (3.2.1)
193
- actionpack (>= 4.0)
194
- activesupport (>= 4.0)
213
+ sprockets-rails (3.4.2)
214
+ actionpack (>= 5.2)
215
+ activesupport (>= 5.2)
195
216
  sprockets (>= 3.0.0)
196
217
  sqlite3 (1.4.2)
197
218
  sysexits (1.2.0)
198
219
  temple (0.8.2)
199
- thin (1.7.2)
220
+ thin (1.8.1)
200
221
  daemons (~> 1.0, >= 1.0.9)
201
222
  eventmachine (~> 1.0, >= 1.0.4)
202
223
  rack (>= 1, < 3)
203
- thor (1.0.1)
204
- thread_safe (0.3.6)
224
+ thor (1.2.1)
205
225
  tilt (2.0.10)
206
- tzinfo (1.2.7)
207
- thread_safe (~> 0.1)
208
- unicode-display_width (1.7.0)
209
- webmock (3.8.3)
210
- addressable (>= 2.3.6)
226
+ tzinfo (2.0.4)
227
+ concurrent-ruby (~> 1.0)
228
+ unicode-display_width (2.1.0)
229
+ webmock (3.14.0)
230
+ addressable (>= 2.8.0)
211
231
  crack (>= 0.3.2)
212
232
  hashdiff (>= 0.4.0, < 2.0.0)
213
- websocket-driver (0.7.1)
233
+ webrick (1.7.0)
234
+ websocket-driver (0.7.5)
214
235
  websocket-extensions (>= 0.1.0)
215
- websocket-extensions (0.1.4)
216
- yard (0.9.24)
236
+ websocket-extensions (0.1.5)
237
+ yard (0.9.27)
238
+ webrick (~> 1.7.0)
239
+ zeitwerk (2.5.4)
217
240
 
218
241
  PLATFORMS
219
242
  ruby
220
243
 
221
244
  DEPENDENCIES
222
245
  copy_tuner_client!
223
- rails (~> 5.2.4.2)
246
+ rails (~> 6.1)
224
247
  rake
225
- rspec (= 3.8.0)
248
+ rspec
226
249
  sgcop!
227
250
  sham_rack
228
251
  sinatra
@@ -232,4 +255,4 @@ DEPENDENCIES
232
255
  yard
233
256
 
234
257
  BUNDLED WITH
235
- 2.1.4
258
+ 2.2.33
data/README.md CHANGED
@@ -47,13 +47,14 @@ bundle exec rake copy_tuner:export
47
47
  Development
48
48
  =================
49
49
 
50
- ## JavaScript
50
+ ## クライアント用コード
51
51
 
52
- `app/assets/javascripts/copyray.js`を直接編集したらダメよ。
52
+ `src`以下を編集してください。
53
+ `app/assets/*`を直接編集したらダメよ!
53
54
 
54
55
  ```
55
- $ npm run watch # Watch files for changes
56
- $ npm run build # Compile to a <script> containing a self-executing function
56
+ $ yarn dev # 開発時
57
+ $ yarn build # ビルド
57
58
  ```
58
59
 
59
60
 
@@ -61,12 +62,9 @@ $ npm run build # Compile to a <script> containing a self-executing function
61
62
 
62
63
  ### default spec
63
64
 
64
- $ bundle exec rake
65
-
66
- ### Appraisal for Multi Version Rails spec
67
-
68
- $ bundle exec appraisal install
69
- $ bundle exec rake appraisal
65
+ ```
66
+ $ bundle exec rspec
67
+ ```
70
68
 
71
69
  ## release gem
72
70