jpmobile 6.0.0.beta → 6.0.0

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: 4d72106e4eade4a0d0c017d02fbad34f7bcf5cb3dadf94f460f41e877c5d66dc
4
- data.tar.gz: 2eea7e031ab65c9ce39f95521bc17b4e1929fc3bf4c3bd52588b4825145a51d2
3
+ metadata.gz: f2ac72dc53112eb5d8babd6b44194602d93c7f8f6b5940d4e5c15f950e27f611
4
+ data.tar.gz: 835cccb90c737865a0db753be8f0b1883ba4c420aafe2d2a75ad27e139817692
5
5
  SHA512:
6
- metadata.gz: 7f9f71bc3516f152146927f3034962bd0da171236d1190fd18696b99897a6a6901f2ec1c8d125cd29d2b018be20bd124d03ba289d6cdf84b6879ff937672b238
7
- data.tar.gz: f5cfa29eee46c9bf236e8e25038fe20e14c9ce768f74c0a6813bcdf794011aa78352d138b3658ae9654c34c34af5c1378df3bb7ec7269967f4d9eb4a87b9838a
6
+ metadata.gz: 2bf6ee36acf3766c0ffb1c709e8de2a51921a686c5ddbf9ba0041551637284551f72eb7983f79ece9f5837ec21c92d22b2c0e0605a29f8800cd080c9237f84e2
7
+ data.tar.gz: beb1c38b73a123652ca6a2f41091efd108f824844824cfe6eaae187f213b79627f4c5ddff77fc0f0ea4c0232c5bd7d2488c60868ca50d42bd324a145b6e32623
@@ -0,0 +1,423 @@
1
+ # 自動生成されるものはチェック対象から除外する
2
+ AllCops:
3
+ Exclude:
4
+ - "node_modules/**/*" # rubocop config/default.yml
5
+ - "vendor/**/*" # rubocop config/default.yml
6
+ - "db/schema.rb"
7
+
8
+ #################### Layout ################################
9
+
10
+ # メソッドをグループ分けして書き順を揃えておくと読みやすくなる。
11
+ # 多少のツラミはあるかもしれない。
12
+ # TODO: Categories を調整することで
13
+ # https://github.com/pocke/rubocop-rails-order_model_declarative_methods
14
+ # を再現できそう。
15
+ Layout/ClassStructure:
16
+ Enabled: true
17
+
18
+ # メソッドチェーンの改行は末尾に . を入れる
19
+ # * REPL に貼り付けた際の暴発を防ぐため
20
+ # * 途中にコメントをはさむことができて実用上圧倒的に便利
21
+ Layout/DotPosition:
22
+ EnforcedStyle: trailing
23
+
24
+ # 桁揃えが綺麗にならないことが多いので migration は除外
25
+ Layout/ExtraSpacing:
26
+ Exclude:
27
+ - "db/migrate/*.rb"
28
+
29
+ # special_inside_parentheses (default) と比べて
30
+ # * 横に長くなりづらい
31
+ # * メソッド名の長さが変わったときに diff が少ない
32
+ Layout/IndentFirstArrayElement:
33
+ EnforcedStyle: consistent
34
+
35
+ # ({ と hash を開始した場合に ( の位置にインデントさせる
36
+ # そもそも {} が必要ない可能性が高いが Style/BracesAroundHashParameters はチェックしないことにしたので
37
+ Layout/IndentFirstHashElement:
38
+ EnforcedStyle: consistent
39
+
40
+ # private/protected は一段深くインデントする
41
+ Layout/IndentationConsistency:
42
+ EnforcedStyle: indented_internal_methods
43
+
44
+ # メソッドチェーン感がより感じられるインデントにする
45
+ Layout/MultilineMethodCallIndentation:
46
+ EnforcedStyle: indented_relative_to_receiver
47
+
48
+ # {} は 1 行で書くときに主に使われるので、スペースよりも
49
+ # 横に長くならない方が嬉しさが多い。
50
+ # そもそも {| のスタイルの方が一般的だったと認識している。
51
+ Layout/SpaceInsideBlockBraces:
52
+ SpaceBeforeBlockParameters: false
53
+
54
+ #################### Lint ##################################
55
+
56
+ # spec 内では
57
+ # expect { subject }.to change { foo }
58
+ # という書き方をよく行うので () を省略したい。
59
+ # { foo } は明らかに change に紐付く。
60
+ Lint/AmbiguousBlockAssociation:
61
+ Exclude:
62
+ - "spec/**/*_spec.rb"
63
+
64
+ # Style/EmptyCaseCondition と同じく網羅の表現力が empty when を認めた方が高いし、
65
+ # 頻出する対象を最初の when で撥ねるのはパフォーマンス向上で頻出する。
66
+ # また、
67
+ # case foo
68
+ # when 42
69
+ # # nop
70
+ # when 1..100
71
+ # ...
72
+ # end
73
+ # と、下の when がキャッチしてしまう場合等に対応していない。
74
+ # See. http://tech.sideci.com/entry/2016/11/01/105900
75
+ Lint/EmptyWhen:
76
+ Enabled: false
77
+
78
+ # RuntimeError は「特定の Error を定義できない場合」なので、
79
+ # 定義できるエラーは RuntimeError ではなく StandardError を継承する。
80
+ Lint/InheritException:
81
+ EnforcedStyle: standard_error
82
+
83
+ # * 同名のメソッドがある場合にローカル変数に `_` を付ける
84
+ # * 一時変数として `_` を付ける
85
+ # というテクニックは頻出する
86
+ Lint/UnderscorePrefixedVariableName:
87
+ Enabled: false
88
+
89
+ # 子クラスで実装させるつもりで中身が
90
+ # raise NotImplementedError
91
+ # のみのメソッドが引っかかるので。
92
+ # (raise せずに中身が空だと IgnoreEmptyMethods でセーフ)
93
+ Lint/UnusedMethodArgument:
94
+ Enabled: false
95
+
96
+ # select 以外では引っかからないと思うので
97
+ # mutating_methods のチェックを有効に。
98
+ # TODO: select は引数が無い (ブロックのみ) の場合にだけチェックする
99
+ # ようにすると誤検知がほぼ無くなる?
100
+ Lint/Void:
101
+ CheckForMethodsWithNoSideEffects: true
102
+
103
+ #################### Metrics ###############################
104
+
105
+ # 30 まではギリギリ許せる範囲だったけど
106
+ # リリースごとに 3 ずつぐらい下げていきます。20 まで下げたい。
107
+ Metrics/AbcSize:
108
+ Max: 24
109
+
110
+ # Gemfile, Guardfile は DSL 的で基本的に複雑にはならないので除外
111
+ # rake, rspec, environments, routes は巨大な block 不可避なので除外
112
+ # TODO: ExcludedMethods の精査
113
+ Metrics/BlockLength:
114
+ Exclude:
115
+ - "Rakefile"
116
+ - "**/*.rake"
117
+ - "spec/**/*.rb"
118
+ - "Gemfile"
119
+ - "Guardfile"
120
+ - "config/environments/*.rb"
121
+ - "config/routes.rb"
122
+ - "config/routes/**/*.rb"
123
+ - "*.gemspec"
124
+
125
+ # 6 は強すぎるので緩める
126
+ Metrics/CyclomaticComplexity:
127
+ Max: 10
128
+
129
+ # * 警告 120文字
130
+ # * 禁止 160文字
131
+ # のイメージ
132
+ Metrics/LineLength:
133
+ Max: 160
134
+ Exclude:
135
+ - "db/migrate/*.rb"
136
+
137
+ # 20 行超えるのは migration ファイル以外滅多に無い
138
+ Metrics/MethodLength:
139
+ Max: 20
140
+ Exclude:
141
+ - "db/migrate/*.rb"
142
+
143
+ # 分岐の数。ガード句を多用しているとデフォルト 7 だと厳しい
144
+ Metrics/PerceivedComplexity:
145
+ Max: 8
146
+
147
+
148
+ #################### Naming ################################
149
+
150
+ # has_ から始まるメソッドは許可する
151
+ Naming/PredicateName:
152
+ NamePrefixBlacklist:
153
+ - "is_"
154
+ - "have_"
155
+ NamePrefix:
156
+ - "is_"
157
+ - "have_"
158
+
159
+ # 3 文字未満だと指摘されるが、未使用を示す _ や e(rror), b(lock),
160
+ # n(umber) といった 1 文字変数は頻出するし、前置詞(by, to, ...)や
161
+ # よく知られた省略語 (op: operator とか pk: primary key とか) も妥当。
162
+ # 変数 s にどんな文字列かを形容したい場合と、不要な場合とがある=無効
163
+ Naming/UncommunicativeMethodParamName:
164
+ Enabled: false
165
+
166
+ #################### Performance ###########################
167
+
168
+ # downcase or upcase しての比較はイディオムの域なので、多少の
169
+ # パフォーマンスの違いがあろうが casecmp に変える意義を感じない
170
+ Performance/Casecmp:
171
+ Enabled: false
172
+
173
+
174
+ #################### Security ##############################
175
+
176
+ # 毎回 YAML.safe_load(yaml_str, [Date, Time]) するのは面倒で。。
177
+ Security/YAMLLoad:
178
+ Enabled: false
179
+
180
+
181
+ #################### Style #################################
182
+
183
+ # レキシカルスコープの扱いが alias_method の方が自然。
184
+ # https://ernie.io/2014/10/23/in-defense-of-alias/ のように
185
+ # 問題になる場合は自分で緩める。
186
+ Style/Alias:
187
+ EnforcedStyle: prefer_alias_method
188
+
189
+ # redirect_to xxx and return のイディオムを維持したい
190
+ Style/AndOr:
191
+ EnforcedStyle: conditionals
192
+
193
+ # 日本語のコメントを許可する
194
+ Style/AsciiComments:
195
+ Enabled: false
196
+
197
+ # do .. end から更にメソッドチェーンすると見づらいので
198
+ # auto-correct せず、自分で修正する
199
+ # spec 内は見た目が綺麗になるので許可
200
+ Style/BlockDelimiters:
201
+ AutoCorrect: false
202
+ Exclude:
203
+ - "spec/**/*_spec.rb"
204
+
205
+ # option 等、明示的にハッシュにした方が分かりやすい場合もある
206
+ Style/BracesAroundHashParameters:
207
+ Enabled: false
208
+
209
+ # scope が違うとか親 module の存在確認が必要とかデメリットはあるが、
210
+ # namespace 付きのクラスはかなり頻繁に作るので簡単に書きたい。
211
+ Style/ClassAndModuleChildren:
212
+ Enabled: false
213
+
214
+ # Style/CollectionMethods 自体は無効になっているのだが、
215
+ # https://github.com/bbatsov/rubocop/issues/1084
216
+ # https://github.com/bbatsov/rubocop/issues/1334
217
+ # Performance/Detect がこの設定値を見るので PreferredMethods だけ変更しておく。
218
+ #
219
+ # デフォルト値から変えたのは
220
+ # find -> detect
221
+ # ActiveRecord の find と間違えやすいため
222
+ # reduce -> inject
223
+ # detect, reject, select と並べたときに韻を踏んでいるため。
224
+ # collect -> map を維持しているのは文字数が圧倒的に少ないため。
225
+ Style/CollectionMethods:
226
+ PreferredMethods:
227
+ detect: "detect"
228
+ find: "detect"
229
+ inject: "inject"
230
+ reduce: "inject"
231
+
232
+ # ドキュメントの無い public class を許可する
233
+ Style/Documentation:
234
+ Enabled: false
235
+
236
+ # !! のイディオムは積極的に使う
237
+ Style/DoubleNegation:
238
+ Enabled: false
239
+
240
+ # case
241
+ # when ios?
242
+ # when android?
243
+ # end
244
+ # のようなものは case の方が網羅の表現力が高い
245
+ Style/EmptyCaseCondition:
246
+ Enabled: false
247
+
248
+ # 明示的に else で nil を返すのは分かりやすいので許可する
249
+ Style/EmptyElse:
250
+ EnforcedStyle: empty
251
+
252
+ # 空メソッドの場合だけ1行で書かなければいけない理由が無い
253
+ # 「セミコロンは使わない」に寄せた方がルールがシンプル
254
+ Style/EmptyMethod:
255
+ EnforcedStyle: expanded
256
+
257
+ # いずれかに揃えるのならば `sprintf` や `format` より String#% が好きです
258
+ Style/FormatString:
259
+ EnforcedStyle: percent
260
+
261
+ # まだ対応するには早い
262
+ Style/FrozenStringLiteralComment:
263
+ Enabled: false
264
+
265
+ # if 文の中に 3 行程度のブロックを書くぐらいは許容した方が現実的
266
+ # NOTE: https://github.com/bbatsov/rubocop/commit/29945958034db13af9e8ff385ec58cb9eb464596
267
+ # の影響で、if 文の中身が 1 行の場合に警告されるようになっている。
268
+ # Style/IfUnlessModifier の設定見てくれないかなぁ? (v0.36.0)
269
+ Style/GuardClause:
270
+ MinBodyLength: 5
271
+
272
+ # rake タスクの順序の hash は rocket を許可する
273
+ Style/HashSyntax:
274
+ Exclude:
275
+ - "**/*.rake"
276
+ - "Rakefile"
277
+
278
+ # 平たくしてしまうと条件のグルーピングが脳内モデルとズレやすい
279
+ Style/IfInsideElse:
280
+ Enabled: false
281
+
282
+ # 条件式の方を意識させたい場合には後置の if/unless を使わない方が分かりやすい
283
+ Style/IfUnlessModifier:
284
+ Enabled: false
285
+
286
+ # scope 等は複数行でも lambda ではなく ->{} で揃えた方が見た目が綺麗
287
+ Style/Lambda:
288
+ EnforcedStyle: literal
289
+
290
+ # end.some_method とチェインするのはダサい
291
+ # Style/BlockDelimiters と相性が悪いけど、頑張ってコードを修正してください
292
+ Style/MethodCalledOnDoEndBlock:
293
+ Enabled: true
294
+
295
+ # この 2 つは単発で動かすのが分かっているので Object を汚染しても問題ない。
296
+ # spec/dummy は Rails Engine を開発するときに絶対に引っかかるので入れておく。
297
+ Style/MixinUsage:
298
+ Exclude:
299
+ - "bin/setup"
300
+ - "bin/update"
301
+ - "spec/dummy/bin/setup"
302
+ - "spec/dummy/bin/update"
303
+
304
+ # 1_000_000 と区切り文字が 2 個以上必要になる場合のみ _ 区切りを必須にする
305
+ # 10_000_00 は許可しない。(これは例えば 10000 ドルをセント単位にする時に便利だが
306
+ # 頻出しないので foolproof に振る
307
+ Style/NumericLiterals:
308
+ MinDigits: 7
309
+ Strict: true
310
+
311
+ # foo.positive? は foo > 0 に比べて意味が曖昧になる
312
+ # foo.zero? は許可したいけどメソッドごとに指定できないので一括で disable に
313
+ Style/NumericPredicate:
314
+ Enabled: false
315
+
316
+ # falsy な場合という条件式の方を意識させたい場合がある。
317
+ # Style/IfUnlessModifier と同じ雰囲気。
318
+ Style/OrAssignment:
319
+ Enabled: false
320
+
321
+ # 正規表現にマッチさせた時の特殊変数の置き換えは Regex.last_match ではなく
322
+ # 名前付きキャプチャを使って参照したいので auto-correct しない
323
+ Style/PerlBackrefs:
324
+ AutoCorrect: false
325
+
326
+ # Hash#has_key? の方が key? よりも意味が通る
327
+ Style/PreferredHashMethods:
328
+ EnforcedStyle: verbose
329
+
330
+ # 受け取り側で multiple assignment しろというのを明示
331
+ Style/RedundantReturn:
332
+ AllowMultipleReturnValues: true
333
+
334
+ # 特に model 内において、ローカル変数とメソッド呼び出しの区別をつけた方が分かりやすい場合が多い
335
+ Style/RedundantSelf:
336
+ Enabled: false
337
+
338
+ # 無指定だと StandardError を rescue するのは常識の範疇なので。
339
+ Style/RescueStandardError:
340
+ EnforcedStyle: implicit
341
+
342
+ # user&.admin? が、[nil, true, false] の 3 値を返すことに一瞬で気づけず
343
+ # boolean を返すっぽく見えてしまうので無効に。
344
+ # user && user.admin? なら短絡評価で nil が返ってくるのが一目で分かるので。
345
+ # (boolean を返すメソッド以外なら積極的に使いたいんだけどねぇ
346
+ #
347
+ # 他に auto-correct してはいけないパターンとして
348
+ # if hoge && hoge.count > 1
349
+ # がある。
350
+ Style/SafeNavigation:
351
+ Enabled: false
352
+
353
+ # spec 内は見た目が綺麗になるので許可
354
+ Style/Semicolon:
355
+ Exclude:
356
+ - "spec/**/*_spec.rb"
357
+
358
+ # * 式展開したい場合に書き換えるのが面倒
359
+ # * 文章ではダブルクォートよりもシングルクォートの方が頻出する
360
+ # ことから EnforcedStyle: double_quotes 推奨
361
+ Style/StringLiterals:
362
+ EnforcedStyle: double_quotes
363
+
364
+ # 式展開中でもダブルクォートを使う
365
+ # 普段の文字列リテラルがダブルクォートなので使い分けるのが面倒
366
+ Style/StringLiteralsInInterpolation:
367
+ EnforcedStyle: double_quotes
368
+
369
+ # String#intern は ruby の内部表現すぎるので String#to_sym を使う
370
+ Style/StringMethods:
371
+ Enabled: true
372
+
373
+ # %w() と %i() が見分けづらいので Style/WordArray と合わせて無効に。
374
+ # 書き手に委ねるという意味で、Enabled: false にしています。使っても良い。
375
+ Style/SymbolArray:
376
+ Enabled: false
377
+
378
+ # 三項演算子は分かりやすく使いたい。
379
+ # () を外さない方が条件式が何なのか読み取りやすいと感じる。
380
+ Style/TernaryParentheses:
381
+ EnforcedStyle: require_parentheses_when_complex
382
+
383
+ # 複数行の場合はケツカンマを入れる(引数)
384
+ # Ruby は関数の引数もカンマを許容しているので
385
+ # * 単行は常にケツカンマ無し
386
+ # * 複数行は常にケツカンマ有り
387
+ # に統一したい。
388
+ # 見た目がアレだが、ES2017 でも関数引数のケツカンマが許容されるので
389
+ # 世界はそちらに向かっている。
390
+ Style/TrailingCommaInArguments:
391
+ EnforcedStyleForMultiline: comma
392
+
393
+ # 複数行の場合はケツカンマを入れる(Arrayリテラル)
394
+ # JSON がケツカンマを許していないという反対意見もあるが、
395
+ # 古い JScript の仕様に縛られる必要は無い。
396
+ # IE9 以降はリテラルでケツカンマ OK なので正しい差分行の検出に寄せる。
397
+ # 2 insertions(+), 1 deletion(-) ではなく、1 insertions
398
+ Style/TrailingCommaInArrayLiteral:
399
+ EnforcedStyleForMultiline: comma
400
+
401
+ # 複数行の場合はケツカンマを入れる(Hashリテラル)
402
+ Style/TrailingCommaInHashLiteral:
403
+ EnforcedStyleForMultiline: comma
404
+
405
+ # %w() と %i() が見分けづらいので Style/SymbolArray と合わせて無効に。
406
+ # 書き手に委ねるという意味で、Enabled: false にしています。使っても良い。
407
+ Style/WordArray:
408
+ Enabled: false
409
+
410
+ # 0 <= foo && foo < 5 のように数直線上に並べるのは
411
+ # コードを読みやすくするテクニックなので equality_operators_only に。
412
+ # Style/YodaCondition:
413
+ # # TODO: rubocop 0.63.0以降はforbid_for_equality_operators_onlyなので依存を引き上げれば有効にできる
414
+ # EnforcedStyle: forbid_for_equality_operators_only
415
+
416
+ # 条件式で arr.size > 0 が使われた時に
417
+ # if !arr.empty?
418
+ # else
419
+ # end
420
+ # に修正されるのが嫌。
421
+ # 中身を入れ替えて否定外しても良いんだけど、どちらが例外的な処理なのかが分かりづらくなる。
422
+ Style/ZeroLengthPredicate:
423
+ Enabled: false
@@ -1,14 +1,11 @@
1
- inherit_gem:
2
- onkcop:
3
- - "config/rubocop.yml"
4
- # uncomment if use rails cops
5
- # - "config/rails.yml"
6
- # uncomment if use rspec cops
7
- # - "config/rspec.yml"
1
+ require: rubocop-performance
2
+
3
+ inherit_from: './.onkcop-config.yml'
8
4
 
9
5
  AllCops:
10
- TargetRubyVersion: 2.4
6
+ TargetRubyVersion: 2.6
11
7
  Exclude:
8
+ - 'tmp/**/*'
12
9
  - 'bin/*'
13
10
  - 'db/schema.rb'
14
11
  - 'vendor/bundle/**/*'
data/Gemfile CHANGED
@@ -3,5 +3,5 @@ source 'https://rubygems.org'
3
3
  # Specify your gem's dependencies in jpmobile.gemspec
4
4
  gemspec
5
5
 
6
- gem 'onkcop', require: false
7
6
  gem 'rubocop', require: false
7
+ gem 'rubocop-performance', require: false
@@ -7,72 +7,72 @@ PATH
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- actioncable (6.0.0.rc1)
11
- actionpack (= 6.0.0.rc1)
10
+ actioncable (6.0.0)
11
+ actionpack (= 6.0.0)
12
12
  nio4r (~> 2.0)
13
13
  websocket-driver (>= 0.6.1)
14
- actionmailbox (6.0.0.rc1)
15
- actionpack (= 6.0.0.rc1)
16
- activejob (= 6.0.0.rc1)
17
- activerecord (= 6.0.0.rc1)
18
- activestorage (= 6.0.0.rc1)
19
- activesupport (= 6.0.0.rc1)
14
+ actionmailbox (6.0.0)
15
+ actionpack (= 6.0.0)
16
+ activejob (= 6.0.0)
17
+ activerecord (= 6.0.0)
18
+ activestorage (= 6.0.0)
19
+ activesupport (= 6.0.0)
20
20
  mail (>= 2.7.1)
21
- actionmailer (6.0.0.rc1)
22
- actionpack (= 6.0.0.rc1)
23
- actionview (= 6.0.0.rc1)
24
- activejob (= 6.0.0.rc1)
21
+ actionmailer (6.0.0)
22
+ actionpack (= 6.0.0)
23
+ actionview (= 6.0.0)
24
+ activejob (= 6.0.0)
25
25
  mail (~> 2.5, >= 2.5.4)
26
26
  rails-dom-testing (~> 2.0)
27
- actionpack (6.0.0.rc1)
28
- actionview (= 6.0.0.rc1)
29
- activesupport (= 6.0.0.rc1)
27
+ actionpack (6.0.0)
28
+ actionview (= 6.0.0)
29
+ activesupport (= 6.0.0)
30
30
  rack (~> 2.0)
31
31
  rack-test (>= 0.6.3)
32
32
  rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
34
- actiontext (6.0.0.rc1)
35
- actionpack (= 6.0.0.rc1)
36
- activerecord (= 6.0.0.rc1)
37
- activestorage (= 6.0.0.rc1)
38
- activesupport (= 6.0.0.rc1)
33
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
34
+ actiontext (6.0.0)
35
+ actionpack (= 6.0.0)
36
+ activerecord (= 6.0.0)
37
+ activestorage (= 6.0.0)
38
+ activesupport (= 6.0.0)
39
39
  nokogiri (>= 1.8.5)
40
- actionview (6.0.0.rc1)
41
- activesupport (= 6.0.0.rc1)
40
+ actionview (6.0.0)
41
+ activesupport (= 6.0.0)
42
42
  builder (~> 3.1)
43
43
  erubi (~> 1.4)
44
44
  rails-dom-testing (~> 2.0)
45
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
46
- activejob (6.0.0.rc1)
47
- activesupport (= 6.0.0.rc1)
45
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
46
+ activejob (6.0.0)
47
+ activesupport (= 6.0.0)
48
48
  globalid (>= 0.3.6)
49
- activemodel (6.0.0.rc1)
50
- activesupport (= 6.0.0.rc1)
51
- activerecord (6.0.0.rc1)
52
- activemodel (= 6.0.0.rc1)
53
- activesupport (= 6.0.0.rc1)
54
- activestorage (6.0.0.rc1)
55
- actionpack (= 6.0.0.rc1)
56
- activejob (= 6.0.0.rc1)
57
- activerecord (= 6.0.0.rc1)
49
+ activemodel (6.0.0)
50
+ activesupport (= 6.0.0)
51
+ activerecord (6.0.0)
52
+ activemodel (= 6.0.0)
53
+ activesupport (= 6.0.0)
54
+ activestorage (6.0.0)
55
+ actionpack (= 6.0.0)
56
+ activejob (= 6.0.0)
57
+ activerecord (= 6.0.0)
58
58
  marcel (~> 0.3.1)
59
- activesupport (6.0.0.rc1)
59
+ activesupport (6.0.0)
60
60
  concurrent-ruby (~> 1.0, >= 1.0.2)
61
61
  i18n (>= 0.7, < 2)
62
62
  minitest (~> 5.1)
63
63
  tzinfo (~> 1.1)
64
- zeitwerk (~> 2.1, >= 2.1.4)
64
+ zeitwerk (~> 2.1, >= 2.1.8)
65
65
  addressable (2.6.0)
66
66
  public_suffix (>= 2.0.2, < 4.0)
67
67
  ast (2.4.0)
68
68
  builder (3.2.3)
69
- capybara (3.18.0)
69
+ capybara (3.28.0)
70
70
  addressable
71
71
  mini_mime (>= 0.1.3)
72
72
  nokogiri (~> 1.8)
73
73
  rack (>= 1.6.0)
74
74
  rack-test (>= 0.6.3)
75
- regexp_parser (~> 1.2)
75
+ regexp_parser (~> 1.5)
76
76
  xpath (~> 3.2)
77
77
  capybara-webkit (1.15.1)
78
78
  capybara (>= 2.3, < 4.0)
@@ -89,7 +89,7 @@ GEM
89
89
  hpricot (0.8.6)
90
90
  i18n (1.6.0)
91
91
  concurrent-ruby (~> 1.0)
92
- jaro_winkler (1.5.2)
92
+ jaro_winkler (1.5.3)
93
93
  json (2.2.0)
94
94
  loofah (2.2.3)
95
95
  crass (~> 1.0.2)
@@ -100,67 +100,64 @@ GEM
100
100
  mimemagic (~> 0.3.2)
101
101
  method_source (0.9.2)
102
102
  mimemagic (0.3.3)
103
- mini_mime (1.0.1)
103
+ mini_mime (1.0.2)
104
104
  mini_portile2 (2.4.0)
105
105
  minitest (5.11.3)
106
- nio4r (2.3.1)
107
- nokogiri (1.10.3)
106
+ nio4r (2.4.0)
107
+ nokogiri (1.10.4)
108
108
  mini_portile2 (~> 2.4.0)
109
- onkcop (0.53.0.3)
110
- rubocop (>= 0.53.0)
111
- rubocop-rspec (>= 1.24.0)
112
109
  parallel (1.17.0)
113
110
  parser (2.6.3.0)
114
111
  ast (~> 2.4.0)
115
112
  pry (0.12.2)
116
113
  coderay (~> 1.1.0)
117
114
  method_source (~> 0.9.0)
118
- public_suffix (3.0.3)
115
+ public_suffix (3.1.1)
119
116
  rack (2.0.7)
120
117
  rack-test (1.1.0)
121
118
  rack (>= 1.0, < 3)
122
- rails (6.0.0.rc1)
123
- actioncable (= 6.0.0.rc1)
124
- actionmailbox (= 6.0.0.rc1)
125
- actionmailer (= 6.0.0.rc1)
126
- actionpack (= 6.0.0.rc1)
127
- actiontext (= 6.0.0.rc1)
128
- actionview (= 6.0.0.rc1)
129
- activejob (= 6.0.0.rc1)
130
- activemodel (= 6.0.0.rc1)
131
- activerecord (= 6.0.0.rc1)
132
- activestorage (= 6.0.0.rc1)
133
- activesupport (= 6.0.0.rc1)
119
+ rails (6.0.0)
120
+ actioncable (= 6.0.0)
121
+ actionmailbox (= 6.0.0)
122
+ actionmailer (= 6.0.0)
123
+ actionpack (= 6.0.0)
124
+ actiontext (= 6.0.0)
125
+ actionview (= 6.0.0)
126
+ activejob (= 6.0.0)
127
+ activemodel (= 6.0.0)
128
+ activerecord (= 6.0.0)
129
+ activestorage (= 6.0.0)
130
+ activesupport (= 6.0.0)
134
131
  bundler (>= 1.3.0)
135
- railties (= 6.0.0.rc1)
132
+ railties (= 6.0.0)
136
133
  sprockets-rails (>= 2.0.0)
137
134
  rails-dom-testing (2.0.3)
138
135
  activesupport (>= 4.2.0)
139
136
  nokogiri (>= 1.6)
140
- rails-html-sanitizer (1.0.4)
137
+ rails-html-sanitizer (1.2.0)
141
138
  loofah (~> 2.2, >= 2.2.2)
142
- railties (6.0.0.rc1)
143
- actionpack (= 6.0.0.rc1)
144
- activesupport (= 6.0.0.rc1)
139
+ railties (6.0.0)
140
+ actionpack (= 6.0.0)
141
+ activesupport (= 6.0.0)
145
142
  method_source
146
143
  rake (>= 0.8.7)
147
144
  thor (>= 0.20.3, < 2.0)
148
145
  rainbow (3.0.0)
149
- rake (12.3.2)
150
- regexp_parser (1.4.0)
146
+ rake (12.3.3)
147
+ regexp_parser (1.6.0)
151
148
  rspec (3.8.0)
152
149
  rspec-core (~> 3.8.0)
153
150
  rspec-expectations (~> 3.8.0)
154
151
  rspec-mocks (~> 3.8.0)
155
- rspec-core (3.8.0)
152
+ rspec-core (3.8.2)
156
153
  rspec-support (~> 3.8.0)
157
- rspec-expectations (3.8.3)
154
+ rspec-expectations (3.8.4)
158
155
  diff-lcs (>= 1.2.0, < 2.0)
159
156
  rspec-support (~> 3.8.0)
160
157
  rspec-its (1.3.0)
161
158
  rspec-core (>= 3.0.0)
162
159
  rspec-expectations (>= 3.0.0)
163
- rspec-mocks (3.8.0)
160
+ rspec-mocks (3.8.1)
164
161
  diff-lcs (>= 1.2.0, < 2.0)
165
162
  rspec-support (~> 3.8.0)
166
163
  rspec-rails (3.8.2)
@@ -171,17 +168,17 @@ GEM
171
168
  rspec-expectations (~> 3.8.0)
172
169
  rspec-mocks (~> 3.8.0)
173
170
  rspec-support (~> 3.8.0)
174
- rspec-support (3.8.0)
175
- rubocop (0.68.1)
171
+ rspec-support (3.8.2)
172
+ rubocop (0.74.0)
176
173
  jaro_winkler (~> 1.5.1)
177
174
  parallel (~> 1.10)
178
- parser (>= 2.5, != 2.5.1.1)
175
+ parser (>= 2.6)
179
176
  rainbow (>= 2.2.2, < 4.0)
180
177
  ruby-progressbar (~> 1.7)
181
- unicode-display_width (>= 1.4.0, < 1.6)
182
- rubocop-rspec (1.32.0)
183
- rubocop (>= 0.60.0)
184
- ruby-progressbar (1.10.0)
178
+ unicode-display_width (>= 1.4.0, < 1.7)
179
+ rubocop-performance (1.4.1)
180
+ rubocop (>= 0.71.0)
181
+ ruby-progressbar (1.10.1)
185
182
  sprockets (3.7.2)
186
183
  concurrent-ruby (~> 1.0)
187
184
  rack (> 1, < 3)
@@ -196,13 +193,13 @@ GEM
196
193
  thread_safe (0.3.6)
197
194
  tzinfo (1.2.5)
198
195
  thread_safe (~> 0.1)
199
- unicode-display_width (1.5.0)
200
- websocket-driver (0.7.0)
196
+ unicode-display_width (1.6.0)
197
+ websocket-driver (0.7.1)
201
198
  websocket-extensions (>= 0.1.0)
202
- websocket-extensions (0.1.3)
199
+ websocket-extensions (0.1.4)
203
200
  xpath (3.2.0)
204
201
  nokogiri (~> 1.8)
205
- zeitwerk (2.1.6)
202
+ zeitwerk (2.1.9)
206
203
 
207
204
  PLATFORMS
208
205
  ruby
@@ -213,13 +210,13 @@ DEPENDENCIES
213
210
  git
214
211
  hpricot
215
212
  jpmobile!
216
- onkcop
217
213
  pry
218
- rails (~> 6.0.0.rc1)
214
+ rails (~> 6.0.0)
219
215
  rspec
220
216
  rspec-its
221
217
  rspec-rails
222
218
  rubocop
219
+ rubocop-performance
223
220
  sqlite3-ruby
224
221
 
225
222
  BUNDLED WITH
@@ -22,7 +22,7 @@ Gem::Specification.new do |gem|
22
22
  gem.add_development_dependency 'git'
23
23
  gem.add_development_dependency 'hpricot'
24
24
  gem.add_development_dependency 'pry'
25
- gem.add_development_dependency 'rails', '~> 6.0.0.rc1'
25
+ gem.add_development_dependency 'rails', '~> 6.0.0'
26
26
  gem.add_development_dependency 'rspec'
27
27
  gem.add_development_dependency 'rspec-its'
28
28
  gem.add_development_dependency 'rspec-rails'
@@ -41,7 +41,7 @@ module Jpmobile
41
41
  # +str+ のなかでDoCoMo絵文字をUnicode数値文字参照に置換した文字列を返す。
42
42
  def self.external_to_unicodecr_docomo(str)
43
43
  str.gsub(DOCOMO_SJIS_REGEXP) do |match|
44
- sjis = match.unpack('n').first
44
+ sjis = match.unpack1('n')
45
45
  unicode = DOCOMO_SJIS_TO_UNICODE[sjis]
46
46
  unicode ? ('&#x%04x;' % unicode) : match
47
47
  end
@@ -50,7 +50,7 @@ module Jpmobile
50
50
  # +str+ のなかでau絵文字をUnicode数値文字参照に置換した文字列を返す。
51
51
  def self.external_to_unicodecr_au(str)
52
52
  str.gsub(AU_SJIS_REGEXP) do |match|
53
- sjis = match.unpack('n').first
53
+ sjis = match.unpack1('n')
54
54
  unicode = AU_SJIS_TO_UNICODE[sjis]
55
55
  unicode ? ('&#x%04x;' % unicode) : match
56
56
  end
@@ -61,7 +61,7 @@ module Jpmobile
61
61
  str = Jpmobile::Util.ascii_8bit(in_str)
62
62
  str.gsub(Jpmobile::Util.jis_string_regexp) do |jis_string|
63
63
  jis_string.gsub(/[\x21-\x7e]{2}/) do |match|
64
- jis = match.unpack('n').first
64
+ jis = match.unpack1('n')
65
65
  unicode = AU_EMAILJIS_TO_UNICODE[jis]
66
66
  unicode ? Jpmobile::Util.ascii_8bit("\x1b\x28\x42&#x%04x;\x1b\x24\x42" % unicode) : match
67
67
  end
@@ -72,7 +72,7 @@ module Jpmobile
72
72
  def self.external_to_unicodecr_softbank(str)
73
73
  # SoftBank Unicode
74
74
  str.gsub(SOFTBANK_UNICODE_REGEXP) do |match|
75
- unicode = match.unpack('U').first
75
+ unicode = match.unpack1('U')
76
76
  '&#x%04x;' % (unicode + 0x1000)
77
77
  end
78
78
  end
@@ -80,7 +80,7 @@ module Jpmobile
80
80
  def self.external_to_unicodecr_softbank_sjis(str)
81
81
  # SoftBank Shift_JIS
82
82
  str.gsub(SOFTBANK_SJIS_REGEXP) do |match|
83
- sjis = match.unpack('n').first
83
+ sjis = match.unpack1('n')
84
84
  unicode = SOFTBANK_SJIS_TO_UNICODE[sjis]
85
85
  '&#x%04x;' % (unicode + 0x1000)
86
86
  end
@@ -209,7 +209,7 @@ module Jpmobile
209
209
  # +str+ のなかでUTF-8で表記された絵文字をUnicode数値文字参照に置換する。
210
210
  def self.utf8_to_unicodecr(str)
211
211
  str.gsub(UTF8_REGEXP) do |match|
212
- '&#x%04x;' % match.unpack('U').first
212
+ '&#x%04x;' % match.unpack1('U')
213
213
  end
214
214
  end
215
215
 
@@ -37,6 +37,11 @@ module Jpmobile
37
37
  }
38
38
  end
39
39
 
40
+ ALLOWED_CONTENT_TYPE_REGEXP = Regexp.union(
41
+ Regexp.escape('text/html'),
42
+ Regexp.escape('application/xhtml+xm'),
43
+ )
44
+
40
45
  class << self
41
46
  def hankaku_format(str)
42
47
  replace_chars(str, zen_to_han_table)
@@ -90,8 +95,8 @@ module Jpmobile
90
95
  end
91
96
 
92
97
  def apply_outgoing?
93
- @controller.request.mobile? and
94
- [nil, 'text/html', 'application/xhtml+xml'].include?(@controller.response.content_type)
98
+ @controller.request.mobile? &&
99
+ @controller.response.content_type&.match?(ALLOWED_CONTENT_TYPE_REGEXP)
95
100
  end
96
101
 
97
102
  def to_internal(str)
@@ -173,7 +173,7 @@ module Mail
173
173
  text_body_part = find_part_by_content_type('text/plain').first
174
174
  html_body_part = find_part_by_content_type('text/html').first
175
175
  html_body_part.transport_encoding = 'quoted-printable' if html_body_part
176
- inline_images = []
176
+ inline_images = []
177
177
  attached_files = []
178
178
  attachments.each do |p|
179
179
  if p.content_type.match(%r{^image/}) && p.content_disposition.match(/^inline/)
@@ -579,8 +579,8 @@ module Mail
579
579
 
580
580
  def get_display_name_with_jpmobile
581
581
  get_display_name_without_jpmobile
582
- rescue NoMethodError => ex
583
- raise ex unless ex.message.match?(/undefined method `gsub' for nil:NilClass/)
582
+ rescue NoMethodError => e
583
+ raise e unless e.message.match?(/undefined method `gsub' for nil:NilClass/)
584
584
 
585
585
  name = unquote(tree.display_name.text_value.strip.to_s)
586
586
  strip_all_comments(name.to_s)
@@ -6,6 +6,6 @@ module Jpmobile::Mobile
6
6
  include Jpmobile::Mobile::GoogleEmoticon
7
7
 
8
8
  # 対応するUser-Agentの正規表現
9
- USER_AGENT_REGEXP = /Android/
9
+ USER_AGENT_REGEXP = /Android/.freeze
10
10
  end
11
11
  end
@@ -6,9 +6,9 @@ module Jpmobile::Mobile
6
6
  class Au < AbstractMobile
7
7
  # 対応するUser-Agentの正規表現
8
8
  # User-Agent文字列中に "UP.Browser" を含むVodafoneの端末があるので注意が必要
9
- USER_AGENT_REGEXP = %r{^(?:KDDI|UP.Browser/.+?)-(.+?) }
9
+ USER_AGENT_REGEXP = %r{^(?:KDDI|UP.Browser/.+?)-(.+?) }.freeze
10
10
  # 対応するメールアドレスの正規表現
11
- MAIL_ADDRESS_REGEXP = /.+@ezweb\.ne\.jp/
11
+ MAIL_ADDRESS_REGEXP = /.+@ezweb\.ne\.jp/.freeze
12
12
  # 簡易位置情報取得に対応していないデバイスID
13
13
  # http://www.au.kddi.com/ezfactory/tec/spec/eznavi.html
14
14
  LOCATION_UNSUPPORTED_DEVICE_ID = %w[PT21 TS25 KCTE TST9 KCU1 SYT5 KCTD TST8 TST7 KCTC SYT4 KCTB KCTA TST6 KCT9 TST5 TST4 KCT8 SYT3 KCT7 MIT1 MAT3 KCT6 TST3 KCT5 KCT4 SYT2 MAT1 MAT2 TST2 KCT3 KCT2 KCT1 TST1 SYT1].freeze
@@ -4,6 +4,6 @@ module Jpmobile::Mobile
4
4
  # ==BlackBerry
5
5
  class BlackBerry < SmartPhone
6
6
  # 対応するUser-Agentの正規表現
7
- USER_AGENT_REGEXP = /BlackBerry/
7
+ USER_AGENT_REGEXP = /BlackBerry/.freeze
8
8
  end
9
9
  end
@@ -4,7 +4,7 @@ module Jpmobile::Mobile
4
4
  # スーパクラスはWillcom。
5
5
  class Ddipocket < Willcom
6
6
  # 対応するUser-Agentの正規表現
7
- USER_AGENT_REGEXP = %r{^Mozilla/3.0\(DDIPOCKET}
7
+ USER_AGENT_REGEXP = %r{^Mozilla/3.0\(DDIPOCKET}.freeze
8
8
 
9
9
  MAIL_ADDRESS_REGEXP = nil # DdipocketはEmail判定だとWillcomと判定させたい
10
10
  end
@@ -4,9 +4,9 @@ module Jpmobile::Mobile
4
4
  # ==DoCoMo携帯電話
5
5
  class Docomo < AbstractMobile
6
6
  # 対応するUser-Agentの正規表現
7
- USER_AGENT_REGEXP = /^DoCoMo/
7
+ USER_AGENT_REGEXP = /^DoCoMo/.freeze
8
8
  # 対応するメールアドレスの正規表現
9
- MAIL_ADDRESS_REGEXP = /.+@docomo\.ne\.jp/
9
+ MAIL_ADDRESS_REGEXP = /.+@docomo\.ne\.jp/.freeze
10
10
  # メールのデフォルトのcharset
11
11
  MAIL_CHARSET = 'Shift_JIS'.freeze
12
12
  # テキスト部分の content-transfer-encoding
@@ -3,9 +3,9 @@
3
3
  module Jpmobile::Mobile
4
4
  # ==EMOBILE携帯電話
5
5
  class Emobile < AbstractMobile
6
- USER_AGENT_REGEXP = %r{^emobile/|^Mozilla/5.0 \(H11T; like Gecko; OpenBrowser\) NetFront/3.4$|^Mozilla/4.0 \(compatible; MSIE 6.0; Windows CE; IEMobile 7.7\) S11HT$}
6
+ USER_AGENT_REGEXP = %r{^emobile/|^Mozilla/5.0 \(H11T; like Gecko; OpenBrowser\) NetFront/3.4$|^Mozilla/4.0 \(compatible; MSIE 6.0; Windows CE; IEMobile 7.7\) S11HT$}.freeze
7
7
  # 対応するメールアドレスの正規表現
8
- MAIL_ADDRESS_REGEXP = /.+@emnet\.ne\.jp/
8
+ MAIL_ADDRESS_REGEXP = /.+@emnet\.ne\.jp/.freeze
9
9
  # EMnet対応端末から通知されるユニークなユーザIDを取得する。
10
10
  def em_uid
11
11
  @request.env['HTTP_X_EM_UID']
@@ -6,6 +6,6 @@ module Jpmobile::Mobile
6
6
  include Jpmobile::Mobile::UnicodeEmoticon
7
7
 
8
8
  # 対応するUser-Agentの正規表現
9
- USER_AGENT_REGEXP = /iPad/
9
+ USER_AGENT_REGEXP = /iPad/.freeze
10
10
  end
11
11
  end
@@ -6,6 +6,6 @@ module Jpmobile::Mobile
6
6
  include Jpmobile::Mobile::UnicodeEmoticon
7
7
 
8
8
  # 対応するUser-Agentの正規表現
9
- USER_AGENT_REGEXP = /iPhone/
9
+ USER_AGENT_REGEXP = /iPhone/.freeze
10
10
  end
11
11
  end
@@ -5,9 +5,9 @@ module Jpmobile::Mobile
5
5
  # Vodafoneのスーパクラス。
6
6
  class Softbank < AbstractMobile
7
7
  # 対応するuser-agentの正規表現
8
- USER_AGENT_REGEXP = /^(?:SoftBank|Semulator)/
8
+ USER_AGENT_REGEXP = /^(?:SoftBank|Semulator)/.freeze
9
9
  # 対応するメールアドレスの正規表現 ディズニーモバイル対応
10
- MAIL_ADDRESS_REGEXP = /.+@(?:softbank\.ne\.jp|disney\.ne\.jp)/
10
+ MAIL_ADDRESS_REGEXP = /.+@(?:softbank\.ne\.jp|disney\.ne\.jp)/.freeze
11
11
  # メールのデフォルトのcharset
12
12
  MAIL_CHARSET = 'Shift_JIS'.freeze
13
13
  # テキスト部分の content-transfer-encoding
@@ -4,9 +4,9 @@ module Jpmobile::Mobile
4
4
  # スーパクラスはSoftbank。
5
5
  class Vodafone < Softbank
6
6
  # 対応するUser-Agentの正規表現
7
- USER_AGENT_REGEXP = /^(Vodafone|Vemulator)/
7
+ USER_AGENT_REGEXP = /^(Vodafone|Vemulator)/.freeze
8
8
  # 対応するメールアドレスの正規表現
9
- MAIL_ADDRESS_REGEXP = /.+@[dhtcrknsq]\.vodafone\.ne\.jp/
9
+ MAIL_ADDRESS_REGEXP = /.+@[dhtcrknsq]\.vodafone\.ne\.jp/.freeze
10
10
 
11
11
  # cookieに対応しているか?
12
12
  def supports_cookie?
@@ -4,9 +4,9 @@ module Jpmobile::Mobile
4
4
  # Ddipocketのスーパクラス。
5
5
  class Willcom < AbstractMobile
6
6
  # 対応するUser-Agentの正規表現
7
- USER_AGENT_REGEXP = %r{^Mozilla/3.0\(WILLCOM}
7
+ USER_AGENT_REGEXP = %r{^Mozilla/3.0\(WILLCOM}.freeze
8
8
  # 対応するメールアドレスの正規表現
9
- MAIL_ADDRESS_REGEXP = /.+@((.+\.)?pdx\.ne\.jp|willcom\.com)/
9
+ MAIL_ADDRESS_REGEXP = /.+@((.+\.)?pdx\.ne\.jp|willcom\.com)/.freeze
10
10
 
11
11
  # 位置情報があれば Position のインスタンスを返す。無ければ +nil+ を返す。
12
12
  def position
@@ -4,6 +4,6 @@ module Jpmobile::Mobile
4
4
  # ==WindowsPhone
5
5
  class WindowsPhone < SmartPhone
6
6
  # 対応するUser-Agentの正規表現
7
- USER_AGENT_REGEXP = /Windows Phone/
7
+ USER_AGENT_REGEXP = /Windows Phone/.freeze
8
8
  end
9
9
  end
@@ -5,6 +5,7 @@ module Jpmobile
5
5
 
6
6
  def initialize(path, pattern = nil)
7
7
  raise ArgumentError, 'path already is a Resolver class' if path.is_a?(Resolver)
8
+
8
9
  super
9
10
  @pattern = DEFAULT_PATTERN
10
11
  @path = File.expand_path(path)
@@ -312,9 +312,9 @@ module Jpmobile
312
312
  def decode(str, encoding, charset)
313
313
  _str = case encoding
314
314
  when /quoted-printable/i
315
- str.unpack('M').first.strip
315
+ str.unpack1('M').strip
316
316
  when /base64/i
317
- str.unpack('m').first.strip
317
+ str.unpack1('m').strip
318
318
  else
319
319
  str
320
320
  end
@@ -1,3 +1,3 @@
1
1
  module Jpmobile
2
- VERSION = '6.0.0.beta'.freeze
2
+ VERSION = '6.0.0'.freeze
3
3
  end
@@ -197,10 +197,10 @@ describe Jpmobile::Util do
197
197
  hash = invert_table(
198
198
  {
199
199
  [0x1F1E8, 0x1F1F3] => 0x3013,
200
- 0x1F1FF => 0x3013,
201
- 0x1F526 => 0xE6FB,
202
- [0x0023, 0x20E3] => 0xE6E0,
203
- 0x1F354 => 0xE673,
200
+ 0x1F1FF => 0x3013,
201
+ 0x1F526 => 0xE6FB,
202
+ [0x0023, 0x20E3] => 0xE6E0,
203
+ 0x1F354 => 0xE673,
204
204
  },
205
205
  )
206
206
  expect(hash[0x3013]).to eq([0x1F1E8, 0x1F1F3])
@@ -11,11 +11,6 @@ gem 'pry-byebug'
11
11
 
12
12
  # Bundle gems for certain environments:
13
13
  group :development, :test do
14
- gem 'rspec', github: 'rspec/rspec'
15
- gem 'rspec-core', github: 'rspec/rspec-core'
16
- gem 'rspec-mocks', github: 'rspec/rspec-mocks'
17
- gem "rspec-expectations", github: 'rspec/rspec-expectations'
18
- gem "rspec-support", github: 'rspec/rspec-support'
19
- gem "rspec-rails", github: 'rspec/rspec-rails', branch: '4-0-dev'
14
+ gem "rspec-rails"
20
15
  gem 'rails-controller-testing'
21
16
  end
@@ -1,3 +1,3 @@
1
1
  class ApplicationMailbox < ActionMailbox::Base
2
- routing /.*/ => :mobile_mailer
2
+ routing(/.*/ => :mobile_mailer)
3
3
  end
@@ -10,7 +10,7 @@ class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
10
10
  t.string :checksum, null: false
11
11
  t.datetime :created_at, null: false
12
12
 
13
- t.index [ :key ], unique: true
13
+ t.index [:key], unique: true
14
14
  end
15
15
 
16
16
  create_table :active_storage_attachments do |t|
@@ -20,7 +20,7 @@ class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
20
20
 
21
21
  t.datetime :created_at, null: false
22
22
 
23
- t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
23
+ t.index [:record_type, :record_id, :name, :blob_id], name: 'index_active_storage_attachments_uniqueness', unique: true
24
24
  t.foreign_key :active_storage_blobs, column: :blob_id
25
25
  end
26
26
  end
@@ -8,7 +8,7 @@ class CreateActionMailboxTables < ActiveRecord::Migration[6.0]
8
8
 
9
9
  t.timestamps
10
10
 
11
- t.index [ :message_id, :message_checksum ], name: "index_action_mailbox_inbound_emails_uniqueness", unique: true
11
+ t.index [:message_id, :message_checksum], name: 'index_action_mailbox_inbound_emails_uniqueness', unique: true
12
12
  end
13
13
  end
14
14
  end
@@ -1,6 +1,8 @@
1
1
  require 'rails_helper'
2
2
 
3
3
  describe TemplatePathController, type: :controller do
4
+ render_views
5
+
4
6
  before do
5
7
  request.user_agent = user_agent
6
8
  end
@@ -32,7 +32,7 @@ describe MobileMailerMailbox, type: :mailbox do
32
32
 
33
33
  describe 'jis コードの場合に' do
34
34
  it '適切に変換できること' do
35
- inbound_email = receive_inbound_email_from_fixture('mobile_mailer/docomo-jis.eml')
35
+ inbound_email = receive_inbound_email_from_fixture('mobile_mailer/docomo-jis.eml')
36
36
 
37
37
  expect(inbound_email.mail.subject).to match(/テスト/)
38
38
  expect(inbound_email.mail.body).to match(/テスト本文/)
@@ -3,8 +3,8 @@ require 'rails_helper'
3
3
  describe 'H11T モバイルブラウザからのアクセス' do
4
4
  before do
5
5
  @headers = {
6
- 'HTTP_USER_AGENT' => 'emobile/1.0.0 (H11T; like Gecko; Wireless) NetFront/3.4',
7
- 'HTTP_X_EM_UID' => 'u00000000000000000',
6
+ 'HTTP_USER_AGENT' => 'emobile/1.0.0 (H11T; like Gecko; Wireless) NetFront/3.4',
7
+ 'HTTP_X_EM_UID' => 'u00000000000000000',
8
8
  'REMOTE_ADDR' => '117.55.1.232',
9
9
  }
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jpmobile
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0.beta
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shin-ichiro OGAWA
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-05-07 00:00:00.000000000 Z
12
+ date: 2019-08-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: mail
@@ -101,14 +101,14 @@ dependencies:
101
101
  requirements:
102
102
  - - "~>"
103
103
  - !ruby/object:Gem::Version
104
- version: 6.0.0.rc1
104
+ version: 6.0.0
105
105
  type: :development
106
106
  prerelease: false
107
107
  version_requirements: !ruby/object:Gem::Requirement
108
108
  requirements:
109
109
  - - "~>"
110
110
  - !ruby/object:Gem::Version
111
- version: 6.0.0.rc1
111
+ version: 6.0.0
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: rspec
114
114
  requirement: !ruby/object:Gem::Requirement
@@ -174,6 +174,7 @@ extra_rdoc_files: []
174
174
  files:
175
175
  - ".circleci/config.yml"
176
176
  - ".gitignore"
177
+ - ".onkcop-config.yml"
177
178
  - ".rspec"
178
179
  - ".rubocop.yml"
179
180
  - ".ruby-version"
@@ -452,9 +453,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
452
453
  version: '0'
453
454
  required_rubygems_version: !ruby/object:Gem::Requirement
454
455
  requirements:
455
- - - ">"
456
+ - - ">="
456
457
  - !ruby/object:Gem::Version
457
- version: 1.3.1
458
+ version: '0'
458
459
  requirements: []
459
460
  rubygems_version: 3.0.3
460
461
  signing_key: