jpmobile 7.1.0 → 7.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +2 -2
- data/.rubocop.yml +48 -3
- data/.ruby-version +1 -1
- data/Gemfile +1 -4
- data/Gemfile.lock +147 -158
- data/jpmobile.gemspec +2 -2
- data/lib/jpmobile/email.rb +1 -1
- data/lib/jpmobile/emoticon.rb +1 -2
- data/lib/jpmobile/fallback_view_selector.rb +1 -1
- data/lib/jpmobile/filter.rb +1 -1
- data/lib/jpmobile/helpers.rb +1 -1
- data/lib/jpmobile/hook_template_details_requested.rb +1 -1
- data/lib/jpmobile/mail.rb +22 -24
- data/lib/jpmobile/mailer.rb +4 -4
- data/lib/jpmobile/method_less_action_support.rb +3 -3
- data/lib/jpmobile/mobile/abstract_mobile.rb +8 -8
- data/lib/jpmobile/mobile/android.rb +1 -1
- data/lib/jpmobile/mobile/au.rb +2 -2
- data/lib/jpmobile/mobile/black_berry.rb +1 -1
- data/lib/jpmobile/mobile/ddipocket.rb +1 -1
- data/lib/jpmobile/mobile/docomo.rb +2 -2
- data/lib/jpmobile/mobile/emobile.rb +2 -2
- data/lib/jpmobile/mobile/ipad.rb +1 -1
- data/lib/jpmobile/mobile/iphone.rb +1 -1
- data/lib/jpmobile/mobile/softbank.rb +2 -2
- data/lib/jpmobile/mobile/vodafone.rb +2 -2
- data/lib/jpmobile/mobile/willcom.rb +2 -2
- data/lib/jpmobile/mobile/windows_phone.rb +1 -1
- data/lib/jpmobile/path_set.rb +1 -1
- data/lib/jpmobile/rack/filter.rb +2 -0
- data/lib/jpmobile/resolver.rb +1 -1
- data/lib/jpmobile/session/active_record_store.rb +1 -1
- data/lib/jpmobile/session/mem_cache_store.rb +1 -1
- data/lib/jpmobile/template_details.rb +1 -1
- data/lib/jpmobile/trans_sid.rb +1 -1
- data/lib/jpmobile/version.rb +1 -1
- data/spec/rack_helper.rb +0 -1
- data/spec/unit/email_spec.rb +2 -2
- data/spec/unit/is_carrier_spec.rb +1 -1
- data/spec/unit/receive_mail_spec.rb +1 -1
- data/spec/unit/util_spec.rb +0 -1
- data/test/rails/overrides/spec/controllers/hankaku_filter_controller_spec.rb +1 -1
- data/test/rails/overrides/spec/controllers/helpers_spec.rb +1 -1
- data/test/rails/overrides/spec/rails_helper.rb +3 -1
- data/test/rails/overrides/spec/requests/method_less_action_support_spec.rb +1 -1
- data/test/rails/overrides/spec/system_helper.rb +1 -1
- data/test/sinatra/guestbook.rb +1 -1
- metadata +6 -9
- data/tools/generate_au_emoticon_table.rb +0 -34
- data/tools/generate_docomo_emoticon_table.rb +0 -33
- data/tools/generate_softbank_emoticon_table.rb +0 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d72981ae235237ef1bab49c5e4113fe1e4ab0c95ba36767b4483513f3cda1505
|
4
|
+
data.tar.gz: 44d93b06f4e3c31f300adcaf411d50992b6d07ea5842a8d66525917c647abb2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9083c648760665f1a5960474aceda88081fc2c516c7eeeb50860de8b337c08efdf74a20031887ab1842f77d4e1ef58389847429edd51ad5d1bf3f44480f9bd1d
|
7
|
+
data.tar.gz: 397cb3b74428ccde97b84b9b6ba07eb99a0b5f2848bfad091714b72b7ec3367fa25a03a8250c41c28915078f9836eb62b3f24a16af9ee1984f29f95d8d85c70e
|
data/.circleci/config.yml
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
version: 2.1
|
2
2
|
orbs:
|
3
|
-
browser-tools: circleci/browser-tools@1.4.
|
3
|
+
browser-tools: circleci/browser-tools@1.4.8
|
4
4
|
jobs:
|
5
5
|
test-job:
|
6
6
|
working_directory: ~/jpmobile
|
7
7
|
docker:
|
8
|
-
- image: cimg/ruby:3.
|
8
|
+
- image: cimg/ruby:3.3-browsers
|
9
9
|
environment:
|
10
10
|
BUNDLE_JOBS: 3
|
11
11
|
BUNDLE_RETRY: 3
|
data/.rubocop.yml
CHANGED
@@ -1,9 +1,10 @@
|
|
1
|
-
require:
|
1
|
+
require:
|
2
|
+
- rubocop-performance
|
2
3
|
|
3
4
|
inherit_from: './.onkcop-config.yml'
|
4
5
|
|
5
6
|
AllCops:
|
6
|
-
TargetRubyVersion: 2
|
7
|
+
TargetRubyVersion: 3.2
|
7
8
|
Exclude:
|
8
9
|
- 'tmp/**/*'
|
9
10
|
- 'bin/*'
|
@@ -12,6 +13,7 @@ AllCops:
|
|
12
13
|
- 'tools/**/*'
|
13
14
|
- 'test/rails/rails_root/**/*'
|
14
15
|
- 'vendor/**/*'
|
16
|
+
NewCops: enable
|
15
17
|
|
16
18
|
Style/StringLiterals:
|
17
19
|
EnforcedStyle: single_quotes
|
@@ -366,4 +368,47 @@ Style/MinMaxComparison: # new in 1.42
|
|
366
368
|
Style/OperatorMethodCall: # new in 1.37
|
367
369
|
Enabled: true
|
368
370
|
Style/RedundantConstantBase: # new in 1.40
|
369
|
-
Enabled: true
|
371
|
+
Enabled: true
|
372
|
+
|
373
|
+
Lint/DuplicateMatchPattern: # new in 1.50
|
374
|
+
Enabled: true
|
375
|
+
Lint/ItWithoutArgumentsInBlock: # new in 1.59
|
376
|
+
Enabled: true
|
377
|
+
Lint/LiteralAssignmentInCondition: # new in 1.58
|
378
|
+
Enabled: true
|
379
|
+
Lint/MixedCaseRange: # new in 1.53
|
380
|
+
Enabled: true
|
381
|
+
Lint/RedundantRegexpQuantifiers: # new in 1.53
|
382
|
+
Enabled: true
|
383
|
+
Style/DataInheritance: # new in 1.49
|
384
|
+
Enabled: true
|
385
|
+
Style/ExactRegexpMatch: # new in 1.51
|
386
|
+
Enabled: true
|
387
|
+
Style/MapIntoArray: # new in 1.63
|
388
|
+
Enabled: true
|
389
|
+
Style/RedundantArrayConstructor: # new in 1.52
|
390
|
+
Enabled: true
|
391
|
+
Style/RedundantCurrentDirectoryInPath: # new in 1.53
|
392
|
+
Enabled: true
|
393
|
+
Style/RedundantFilterChain: # new in 1.52
|
394
|
+
Enabled: true
|
395
|
+
Style/RedundantLineContinuation: # new in 1.49
|
396
|
+
Enabled: true
|
397
|
+
Style/RedundantRegexpArgument: # new in 1.53
|
398
|
+
Enabled: true
|
399
|
+
Style/RedundantRegexpConstructor: # new in 1.52
|
400
|
+
Enabled: true
|
401
|
+
Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
|
402
|
+
Enabled: true
|
403
|
+
Style/SendWithLiteralMethodName: # new in 1.64
|
404
|
+
Enabled: true
|
405
|
+
Style/SingleLineDoEndBlock: # new in 1.57
|
406
|
+
Enabled: true
|
407
|
+
Style/SuperArguments: # new in 1.64
|
408
|
+
Enabled: true
|
409
|
+
Style/SuperWithArgsParentheses: # new in 1.58
|
410
|
+
Enabled: true
|
411
|
+
Style/YAMLFileRead: # new in 1.53
|
412
|
+
Enabled: true
|
413
|
+
Performance/MapMethodChain: # new in 1.19
|
414
|
+
Enabled: true
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.4
|
data/Gemfile
CHANGED
@@ -5,14 +5,11 @@ gemspec
|
|
5
5
|
|
6
6
|
gem 'geokit'
|
7
7
|
gem 'git'
|
8
|
-
gem 'hpricot'
|
9
8
|
gem 'pry'
|
10
|
-
gem 'rails', '~> 7.
|
9
|
+
gem 'rails', '~> 7.2.0'
|
11
10
|
gem 'rspec'
|
12
11
|
gem 'rspec-its'
|
13
12
|
gem 'rspec-rails'
|
14
13
|
gem 'rubocop', require: false
|
15
14
|
gem 'rubocop-performance', require: false
|
16
|
-
gem 'rubocop-rails', require: false
|
17
|
-
gem 'rubocop-rspec', require: false
|
18
15
|
gem 'sqlite3-ruby'
|
data/Gemfile.lock
CHANGED
@@ -1,174 +1,175 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
jpmobile (7.0
|
5
|
-
mail (~> 2.
|
4
|
+
jpmobile (7.1.0)
|
5
|
+
mail (~> 2.8.0)
|
6
6
|
rexml
|
7
7
|
scanf
|
8
8
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actioncable (7.
|
13
|
-
actionpack (= 7.
|
14
|
-
activesupport (= 7.
|
12
|
+
actioncable (7.2.0)
|
13
|
+
actionpack (= 7.2.0)
|
14
|
+
activesupport (= 7.2.0)
|
15
15
|
nio4r (~> 2.0)
|
16
16
|
websocket-driver (>= 0.6.1)
|
17
17
|
zeitwerk (~> 2.6)
|
18
|
-
actionmailbox (7.
|
19
|
-
actionpack (= 7.
|
20
|
-
activejob (= 7.
|
21
|
-
activerecord (= 7.
|
22
|
-
activestorage (= 7.
|
23
|
-
activesupport (= 7.
|
24
|
-
mail (>= 2.
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
activejob (= 7.1.0)
|
32
|
-
activesupport (= 7.1.0)
|
33
|
-
mail (~> 2.5, >= 2.5.4)
|
34
|
-
net-imap
|
35
|
-
net-pop
|
36
|
-
net-smtp
|
18
|
+
actionmailbox (7.2.0)
|
19
|
+
actionpack (= 7.2.0)
|
20
|
+
activejob (= 7.2.0)
|
21
|
+
activerecord (= 7.2.0)
|
22
|
+
activestorage (= 7.2.0)
|
23
|
+
activesupport (= 7.2.0)
|
24
|
+
mail (>= 2.8.0)
|
25
|
+
actionmailer (7.2.0)
|
26
|
+
actionpack (= 7.2.0)
|
27
|
+
actionview (= 7.2.0)
|
28
|
+
activejob (= 7.2.0)
|
29
|
+
activesupport (= 7.2.0)
|
30
|
+
mail (>= 2.8.0)
|
37
31
|
rails-dom-testing (~> 2.2)
|
38
|
-
actionpack (7.
|
39
|
-
actionview (= 7.
|
40
|
-
activesupport (= 7.
|
32
|
+
actionpack (7.2.0)
|
33
|
+
actionview (= 7.2.0)
|
34
|
+
activesupport (= 7.2.0)
|
41
35
|
nokogiri (>= 1.8.5)
|
42
|
-
|
36
|
+
racc
|
37
|
+
rack (>= 2.2.4, < 3.2)
|
43
38
|
rack-session (>= 1.0.1)
|
44
39
|
rack-test (>= 0.6.3)
|
45
40
|
rails-dom-testing (~> 2.2)
|
46
41
|
rails-html-sanitizer (~> 1.6)
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
42
|
+
useragent (~> 0.16)
|
43
|
+
actiontext (7.2.0)
|
44
|
+
actionpack (= 7.2.0)
|
45
|
+
activerecord (= 7.2.0)
|
46
|
+
activestorage (= 7.2.0)
|
47
|
+
activesupport (= 7.2.0)
|
52
48
|
globalid (>= 0.6.0)
|
53
49
|
nokogiri (>= 1.8.5)
|
54
|
-
actionview (7.
|
55
|
-
activesupport (= 7.
|
50
|
+
actionview (7.2.0)
|
51
|
+
activesupport (= 7.2.0)
|
56
52
|
builder (~> 3.1)
|
57
53
|
erubi (~> 1.11)
|
58
54
|
rails-dom-testing (~> 2.2)
|
59
55
|
rails-html-sanitizer (~> 1.6)
|
60
|
-
activejob (7.
|
61
|
-
activesupport (= 7.
|
56
|
+
activejob (7.2.0)
|
57
|
+
activesupport (= 7.2.0)
|
62
58
|
globalid (>= 0.3.6)
|
63
|
-
activemodel (7.
|
64
|
-
activesupport (= 7.
|
65
|
-
activerecord (7.
|
66
|
-
activemodel (= 7.
|
67
|
-
activesupport (= 7.
|
59
|
+
activemodel (7.2.0)
|
60
|
+
activesupport (= 7.2.0)
|
61
|
+
activerecord (7.2.0)
|
62
|
+
activemodel (= 7.2.0)
|
63
|
+
activesupport (= 7.2.0)
|
68
64
|
timeout (>= 0.4.0)
|
69
|
-
activestorage (7.
|
70
|
-
actionpack (= 7.
|
71
|
-
activejob (= 7.
|
72
|
-
activerecord (= 7.
|
73
|
-
activesupport (= 7.
|
65
|
+
activestorage (7.2.0)
|
66
|
+
actionpack (= 7.2.0)
|
67
|
+
activejob (= 7.2.0)
|
68
|
+
activerecord (= 7.2.0)
|
69
|
+
activesupport (= 7.2.0)
|
74
70
|
marcel (~> 1.0)
|
75
|
-
activesupport (7.
|
71
|
+
activesupport (7.2.0)
|
76
72
|
base64
|
77
73
|
bigdecimal
|
78
|
-
concurrent-ruby (~> 1.0, >= 1.
|
74
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
79
75
|
connection_pool (>= 2.2.5)
|
80
76
|
drb
|
81
77
|
i18n (>= 1.6, < 2)
|
78
|
+
logger (>= 1.4.2)
|
82
79
|
minitest (>= 5.1)
|
83
|
-
|
84
|
-
tzinfo (~> 2.0)
|
85
|
-
addressable (2.8.
|
80
|
+
securerandom (>= 0.3)
|
81
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
82
|
+
addressable (2.8.6)
|
86
83
|
public_suffix (>= 2.0.2, < 6.0)
|
87
84
|
ast (2.4.2)
|
88
|
-
base64 (0.
|
89
|
-
bigdecimal (3.1.
|
85
|
+
base64 (0.2.0)
|
86
|
+
bigdecimal (3.1.8)
|
90
87
|
builder (3.2.4)
|
91
88
|
coderay (1.1.3)
|
92
|
-
concurrent-ruby (1.
|
89
|
+
concurrent-ruby (1.3.3)
|
93
90
|
connection_pool (2.4.1)
|
94
91
|
crass (1.0.6)
|
95
|
-
date (3.3.
|
96
|
-
diff-lcs (1.5.
|
97
|
-
drb (2.
|
98
|
-
ruby2_keywords
|
92
|
+
date (3.3.4)
|
93
|
+
diff-lcs (1.5.1)
|
94
|
+
drb (2.2.1)
|
99
95
|
erubi (1.12.0)
|
100
96
|
geokit (1.14.0)
|
101
|
-
git (1.
|
97
|
+
git (2.1.1)
|
98
|
+
activesupport (>= 5.0)
|
102
99
|
addressable (~> 2.8)
|
100
|
+
process_executer (~> 1.1)
|
103
101
|
rchardet (~> 1.8)
|
104
102
|
globalid (1.2.1)
|
105
103
|
activesupport (>= 6.1)
|
106
|
-
|
107
|
-
i18n (1.14.1)
|
104
|
+
i18n (1.14.5)
|
108
105
|
concurrent-ruby (~> 1.0)
|
109
106
|
io-console (0.6.0)
|
110
|
-
irb (1.
|
111
|
-
rdoc
|
112
|
-
reline (>= 0.
|
113
|
-
json (2.
|
107
|
+
irb (1.13.2)
|
108
|
+
rdoc (>= 4.0.0)
|
109
|
+
reline (>= 0.4.2)
|
110
|
+
json (2.7.2)
|
114
111
|
language_server-protocol (3.17.0.3)
|
115
|
-
|
112
|
+
logger (1.4.4)
|
113
|
+
loofah (2.22.0)
|
116
114
|
crass (~> 1.0.2)
|
117
115
|
nokogiri (>= 1.12.0)
|
118
|
-
mail (2.
|
116
|
+
mail (2.8.1)
|
119
117
|
mini_mime (>= 0.1.1)
|
120
|
-
|
118
|
+
net-imap
|
119
|
+
net-pop
|
120
|
+
net-smtp
|
121
|
+
marcel (1.0.4)
|
121
122
|
method_source (1.0.0)
|
122
123
|
mini_mime (1.1.5)
|
123
|
-
|
124
|
-
|
125
|
-
net-imap (0.4.
|
124
|
+
mini_portile2 (2.8.7)
|
125
|
+
minitest (5.23.1)
|
126
|
+
net-imap (0.4.14)
|
126
127
|
date
|
127
128
|
net-protocol
|
128
129
|
net-pop (0.1.2)
|
129
130
|
net-protocol
|
130
|
-
net-protocol (0.2.
|
131
|
+
net-protocol (0.2.2)
|
131
132
|
timeout
|
132
|
-
net-smtp (0.4.0)
|
133
|
+
net-smtp (0.4.0.1)
|
133
134
|
net-protocol
|
134
|
-
nio4r (2.
|
135
|
-
nokogiri (1.
|
136
|
-
|
137
|
-
nokogiri (1.14.5-x86_64-linux)
|
135
|
+
nio4r (2.7.3)
|
136
|
+
nokogiri (1.15.6)
|
137
|
+
mini_portile2 (~> 2.8.2)
|
138
138
|
racc (~> 1.4)
|
139
|
-
parallel (1.
|
140
|
-
parser (3.
|
139
|
+
parallel (1.25.1)
|
140
|
+
parser (3.3.4.0)
|
141
141
|
ast (~> 2.4.1)
|
142
142
|
racc
|
143
|
+
process_executer (1.1.0)
|
143
144
|
pry (0.14.2)
|
144
145
|
coderay (~> 1.1)
|
145
146
|
method_source (~> 1.0)
|
146
|
-
psych (5.1.
|
147
|
+
psych (5.1.2)
|
147
148
|
stringio
|
148
|
-
public_suffix (5.0.
|
149
|
-
racc (1.
|
150
|
-
rack (2.2.
|
151
|
-
rack-session (1.0.
|
149
|
+
public_suffix (5.0.5)
|
150
|
+
racc (1.8.0)
|
151
|
+
rack (2.2.9)
|
152
|
+
rack-session (1.0.2)
|
152
153
|
rack (< 3)
|
153
154
|
rack-test (2.1.0)
|
154
155
|
rack (>= 1.3)
|
155
156
|
rackup (1.0.0)
|
156
157
|
rack (< 3)
|
157
158
|
webrick
|
158
|
-
rails (7.
|
159
|
-
actioncable (= 7.
|
160
|
-
actionmailbox (= 7.
|
161
|
-
actionmailer (= 7.
|
162
|
-
actionpack (= 7.
|
163
|
-
actiontext (= 7.
|
164
|
-
actionview (= 7.
|
165
|
-
activejob (= 7.
|
166
|
-
activemodel (= 7.
|
167
|
-
activerecord (= 7.
|
168
|
-
activestorage (= 7.
|
169
|
-
activesupport (= 7.
|
159
|
+
rails (7.2.0)
|
160
|
+
actioncable (= 7.2.0)
|
161
|
+
actionmailbox (= 7.2.0)
|
162
|
+
actionmailer (= 7.2.0)
|
163
|
+
actionpack (= 7.2.0)
|
164
|
+
actiontext (= 7.2.0)
|
165
|
+
actionview (= 7.2.0)
|
166
|
+
activejob (= 7.2.0)
|
167
|
+
activemodel (= 7.2.0)
|
168
|
+
activerecord (= 7.2.0)
|
169
|
+
activestorage (= 7.2.0)
|
170
|
+
activesupport (= 7.2.0)
|
170
171
|
bundler (>= 1.15.0)
|
171
|
-
railties (= 7.
|
172
|
+
railties (= 7.2.0)
|
172
173
|
rails-dom-testing (2.2.0)
|
173
174
|
activesupport (>= 5.0.0)
|
174
175
|
minitest
|
@@ -176,115 +177,103 @@ GEM
|
|
176
177
|
rails-html-sanitizer (1.6.0)
|
177
178
|
loofah (~> 2.21)
|
178
179
|
nokogiri (~> 1.14)
|
179
|
-
railties (7.
|
180
|
-
actionpack (= 7.
|
181
|
-
activesupport (= 7.
|
182
|
-
irb
|
180
|
+
railties (7.2.0)
|
181
|
+
actionpack (= 7.2.0)
|
182
|
+
activesupport (= 7.2.0)
|
183
|
+
irb (~> 1.13)
|
183
184
|
rackup (>= 1.0.0)
|
184
185
|
rake (>= 12.2)
|
185
186
|
thor (~> 1.0, >= 1.2.2)
|
186
187
|
zeitwerk (~> 2.6)
|
187
188
|
rainbow (3.1.1)
|
188
|
-
rake (13.0
|
189
|
+
rake (13.1.0)
|
189
190
|
rchardet (1.8.0)
|
190
|
-
rdoc (6.
|
191
|
+
rdoc (6.6.3.1)
|
191
192
|
psych (>= 4.0.0)
|
192
|
-
regexp_parser (2.
|
193
|
-
reline (0.3
|
193
|
+
regexp_parser (2.9.2)
|
194
|
+
reline (0.4.3)
|
194
195
|
io-console (~> 0.5)
|
195
|
-
rexml (3.2
|
196
|
-
|
197
|
-
|
198
|
-
rspec-
|
199
|
-
rspec-
|
200
|
-
|
201
|
-
|
202
|
-
|
196
|
+
rexml (3.3.2)
|
197
|
+
strscan
|
198
|
+
rspec (3.13.0)
|
199
|
+
rspec-core (~> 3.13.0)
|
200
|
+
rspec-expectations (~> 3.13.0)
|
201
|
+
rspec-mocks (~> 3.13.0)
|
202
|
+
rspec-core (3.13.0)
|
203
|
+
rspec-support (~> 3.13.0)
|
204
|
+
rspec-expectations (3.13.1)
|
203
205
|
diff-lcs (>= 1.2.0, < 2.0)
|
204
|
-
rspec-support (~> 3.
|
206
|
+
rspec-support (~> 3.13.0)
|
205
207
|
rspec-its (1.3.0)
|
206
208
|
rspec-core (>= 3.0.0)
|
207
209
|
rspec-expectations (>= 3.0.0)
|
208
|
-
rspec-mocks (3.
|
210
|
+
rspec-mocks (3.13.1)
|
209
211
|
diff-lcs (>= 1.2.0, < 2.0)
|
210
|
-
rspec-support (~> 3.
|
211
|
-
rspec-rails (6.
|
212
|
+
rspec-support (~> 3.13.0)
|
213
|
+
rspec-rails (6.1.3)
|
212
214
|
actionpack (>= 6.1)
|
213
215
|
activesupport (>= 6.1)
|
214
216
|
railties (>= 6.1)
|
215
|
-
rspec-core (~> 3.
|
216
|
-
rspec-expectations (~> 3.
|
217
|
-
rspec-mocks (~> 3.
|
218
|
-
rspec-support (~> 3.
|
219
|
-
rspec-support (3.
|
220
|
-
rubocop (1.
|
221
|
-
base64 (~> 0.1.1)
|
217
|
+
rspec-core (~> 3.13)
|
218
|
+
rspec-expectations (~> 3.13)
|
219
|
+
rspec-mocks (~> 3.13)
|
220
|
+
rspec-support (~> 3.13)
|
221
|
+
rspec-support (3.13.1)
|
222
|
+
rubocop (1.65.0)
|
222
223
|
json (~> 2.3)
|
223
224
|
language_server-protocol (>= 3.17.0)
|
224
225
|
parallel (~> 1.10)
|
225
|
-
parser (>= 3.
|
226
|
+
parser (>= 3.3.0.2)
|
226
227
|
rainbow (>= 2.2.2, < 4.0)
|
227
|
-
regexp_parser (>=
|
228
|
+
regexp_parser (>= 2.4, < 3.0)
|
228
229
|
rexml (>= 3.2.5, < 4.0)
|
229
|
-
rubocop-ast (>= 1.
|
230
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
230
231
|
ruby-progressbar (~> 1.7)
|
231
232
|
unicode-display_width (>= 2.4.0, < 3.0)
|
232
|
-
rubocop-ast (1.
|
233
|
-
parser (>= 3.
|
234
|
-
rubocop-
|
235
|
-
rubocop (
|
236
|
-
|
237
|
-
rubocop (~> 1.33)
|
238
|
-
rubocop-performance (1.19.1)
|
239
|
-
rubocop (>= 1.7.0, < 2.0)
|
240
|
-
rubocop-ast (>= 0.4.0)
|
241
|
-
rubocop-rails (2.21.2)
|
242
|
-
activesupport (>= 4.2.0)
|
243
|
-
rack (>= 1.1)
|
244
|
-
rubocop (>= 1.33.0, < 2.0)
|
245
|
-
rubocop-rspec (2.24.1)
|
246
|
-
rubocop (~> 1.33)
|
247
|
-
rubocop-capybara (~> 2.17)
|
248
|
-
rubocop-factory_bot (~> 2.22)
|
233
|
+
rubocop-ast (1.31.3)
|
234
|
+
parser (>= 3.3.1.0)
|
235
|
+
rubocop-performance (1.21.1)
|
236
|
+
rubocop (>= 1.48.1, < 2.0)
|
237
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
249
238
|
ruby-progressbar (1.13.0)
|
250
|
-
ruby2_keywords (0.0.5)
|
251
239
|
scanf (1.0.0)
|
252
|
-
|
253
|
-
sqlite3 (1.6.1
|
240
|
+
securerandom (0.3.1)
|
241
|
+
sqlite3 (1.6.1)
|
242
|
+
mini_portile2 (~> 2.8.0)
|
254
243
|
sqlite3-ruby (1.3.3)
|
255
244
|
sqlite3 (>= 1.3.3)
|
256
|
-
stringio (3.0.
|
257
|
-
|
258
|
-
|
245
|
+
stringio (3.0.9)
|
246
|
+
strscan (3.1.0)
|
247
|
+
thor (1.3.1)
|
248
|
+
timeout (0.4.1)
|
259
249
|
tzinfo (2.0.6)
|
260
250
|
concurrent-ruby (~> 1.0)
|
261
|
-
unicode-display_width (2.
|
251
|
+
unicode-display_width (2.5.0)
|
252
|
+
useragent (0.16.10)
|
262
253
|
webrick (1.8.1)
|
263
254
|
websocket-driver (0.7.6)
|
264
255
|
websocket-extensions (>= 0.1.0)
|
265
256
|
websocket-extensions (0.1.5)
|
266
|
-
zeitwerk (2.6.
|
257
|
+
zeitwerk (2.6.16)
|
267
258
|
|
268
259
|
PLATFORMS
|
269
260
|
arm64-darwin-20
|
270
261
|
arm64-darwin-21
|
262
|
+
arm64-darwin-23
|
271
263
|
x86_64-linux
|
272
264
|
|
273
265
|
DEPENDENCIES
|
274
266
|
geokit
|
275
267
|
git
|
276
|
-
hpricot
|
277
268
|
jpmobile!
|
278
269
|
pry
|
279
|
-
rails (~> 7.
|
270
|
+
rails (~> 7.2.0)
|
280
271
|
rspec
|
281
272
|
rspec-its
|
282
273
|
rspec-rails
|
283
274
|
rubocop
|
284
275
|
rubocop-performance
|
285
|
-
rubocop-rails
|
286
|
-
rubocop-rspec
|
287
276
|
sqlite3-ruby
|
288
277
|
|
289
278
|
BUNDLED WITH
|
290
|
-
2.
|
279
|
+
2.5.17
|
data/jpmobile.gemspec
CHANGED
@@ -18,9 +18,9 @@ Gem::Specification.new do |gem|
|
|
18
18
|
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
|
19
19
|
gem.require_paths = ['lib']
|
20
20
|
|
21
|
-
gem.required_ruby_version = '>= 2.
|
21
|
+
gem.required_ruby_version = '>= 3.2.0'
|
22
22
|
|
23
|
-
gem.add_dependency 'mail', '~> 2.
|
23
|
+
gem.add_dependency 'mail', '~> 2.8.0'
|
24
24
|
gem.add_dependency 'rexml'
|
25
25
|
gem.add_dependency 'scanf'
|
26
26
|
gem.metadata['rubygems_mfa_required'] = 'true'
|
data/lib/jpmobile/email.rb
CHANGED
data/lib/jpmobile/emoticon.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
require 'scanf'
|
2
|
-
require 'nkf'
|
3
2
|
|
4
3
|
module Jpmobile
|
5
4
|
# 絵文字関連処理
|
@@ -288,7 +287,7 @@ module Jpmobile
|
|
288
287
|
begin
|
289
288
|
yaml_hash = YAML.load_file(@pc_emoticon_yaml)
|
290
289
|
@pc_emoticon_hash = Hash[*(yaml_hash.values.inject([]) {|r, v| r += v.to_a.flatten; r })]
|
291
|
-
@pc_emoticon_image_path.chop if @pc_emoticon_image_path.match?(%r{/$})
|
290
|
+
@pc_emoticon_image_path.chop! if @pc_emoticon_image_path.match?(%r{/$})
|
292
291
|
|
293
292
|
return true
|
294
293
|
rescue
|
data/lib/jpmobile/filter.rb
CHANGED
data/lib/jpmobile/helpers.rb
CHANGED
@@ -3,7 +3,7 @@ module Jpmobile
|
|
3
3
|
attr_reader :mobile, :mobile_idx
|
4
4
|
|
5
5
|
def initialize(locale:, handlers:, formats:, variants:, mobile:)
|
6
|
-
super(locale
|
6
|
+
super(locale:, handlers:, formats:, variants:)
|
7
7
|
|
8
8
|
@mobile = mobile.map(&:to_sym)
|
9
9
|
@mobile_idx = build_idx_hash(@mobile)
|