mint_ping_api 1.0.0 → 1.1.0

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: 133d67c41c8d8a489dbacc9e403509ff79a7ebd6d33ec487d89a5346d3161802
4
- data.tar.gz: f795a387a61d7d32ad7824e7ada1be8032a6cab26351cd79c83a43001606b095
3
+ metadata.gz: 83169c2875f0990d9ef12237807430d4b9d2574621cc0a50588c5b4d2b843f0e
4
+ data.tar.gz: 5c32fc7a9a9d7a3d47f2a04cb7d1cb87329cc68b52e65a1d84824c9d8484e022
5
5
  SHA512:
6
- metadata.gz: a87283e3873f3c198afa0dff7c4fc0a2bef0bbeb9d1a1d3107c5290c5855fd0c20cd4975ddc9de4067da2461eee3acce546864c37bb7d450a777c017f4b90688
7
- data.tar.gz: '0811065ddc2f297b73fce766fe922f6f280bc32472cade7bc708578febc47e6ae5a1a77f314d391136cc8e744a5908e0890d2b7d72c9026030a694f23c9f83b4'
6
+ metadata.gz: 035dd52d1bb0cf036bef2c0bc70a8bc414fba4e5f01867780c8838d905fd9d3f4409d2939e6aae27b465fbac267d4e297689026c2c7bbd7e1c2849c34723d9ae
7
+ data.tar.gz: a8c46b4e4703f35f012928d45e83233781d048a8b8647147e4005082ed3aa162adecf7a929ab8dcd4a82777742140581ea5faf83cd4d69577abe785e2554e3e8
data/.rubocop.yml CHANGED
@@ -8,6 +8,9 @@ AllCops:
8
8
  NewCops: enable
9
9
  TargetRubyVersion: 2.5
10
10
 
11
+ Style/StringLiterals:
12
+ Enabled: false
13
+
11
14
  Layout/HashAlignment:
12
15
  EnforcedColonStyle: table
13
16
  EnforcedHashRocketStyle: table
@@ -31,10 +34,10 @@ Lint/MissingSuper:
31
34
  Enabled: false
32
35
 
33
36
  Metrics/AbcSize:
34
- Max: 30
37
+ Max: 17
35
38
 
36
39
  Metrics/BlockLength:
37
- Max: 30
40
+ Max: 25
38
41
 
39
42
  Metrics/ClassLength:
40
43
  Enabled: false
@@ -43,7 +46,7 @@ Metrics/CyclomaticComplexity:
43
46
  Max: 10
44
47
 
45
48
  Metrics/MethodLength:
46
- Max: 25
49
+ Max: 6
47
50
 
48
51
  Metrics/ModuleLength:
49
52
  Enabled: false
data/Gemfile CHANGED
@@ -1,11 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  source 'https://rubygems.org'
4
- ruby '2.5.0'
4
+ ruby '3.1.1'
5
5
  # Specify your gem's dependencies in mint_ping_api.gemspec
6
6
  gemspec
7
7
  gem 'figaro'
8
- gem 'rails', '~> 5.1.5'
8
+ gem 'rails', '~> 7.0.2.3'
9
9
  gem 'rake', '~> 13.0'
10
10
  gem 'rspec', '~> 3.0'
11
11
  gem 'rspec-rails'
data/Gemfile.lock CHANGED
@@ -8,49 +8,77 @@ PATH
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (5.1.7)
12
- actionpack (= 5.1.7)
11
+ actioncable (7.0.2.4)
12
+ actionpack (= 7.0.2.4)
13
+ activesupport (= 7.0.2.4)
13
14
  nio4r (~> 2.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.7)
16
- actionpack (= 5.1.7)
17
- actionview (= 5.1.7)
18
- activejob (= 5.1.7)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (7.0.2.4)
17
+ actionpack (= 7.0.2.4)
18
+ activejob (= 7.0.2.4)
19
+ activerecord (= 7.0.2.4)
20
+ activestorage (= 7.0.2.4)
21
+ activesupport (= 7.0.2.4)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.0.2.4)
27
+ actionpack (= 7.0.2.4)
28
+ actionview (= 7.0.2.4)
29
+ activejob (= 7.0.2.4)
30
+ activesupport (= 7.0.2.4)
19
31
  mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
20
35
  rails-dom-testing (~> 2.0)
21
- actionpack (5.1.7)
22
- actionview (= 5.1.7)
23
- activesupport (= 5.1.7)
24
- rack (~> 2.0)
36
+ actionpack (7.0.2.4)
37
+ actionview (= 7.0.2.4)
38
+ activesupport (= 7.0.2.4)
39
+ rack (~> 2.0, >= 2.2.0)
25
40
  rack-test (>= 0.6.3)
26
41
  rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.7)
29
- activesupport (= 5.1.7)
42
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
+ actiontext (7.0.2.4)
44
+ actionpack (= 7.0.2.4)
45
+ activerecord (= 7.0.2.4)
46
+ activestorage (= 7.0.2.4)
47
+ activesupport (= 7.0.2.4)
48
+ globalid (>= 0.6.0)
49
+ nokogiri (>= 1.8.5)
50
+ actionview (7.0.2.4)
51
+ activesupport (= 7.0.2.4)
30
52
  builder (~> 3.1)
31
53
  erubi (~> 1.4)
32
54
  rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.7)
35
- activesupport (= 5.1.7)
55
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
56
+ activejob (7.0.2.4)
57
+ activesupport (= 7.0.2.4)
36
58
  globalid (>= 0.3.6)
37
- activemodel (5.1.7)
38
- activesupport (= 5.1.7)
39
- activerecord (5.1.7)
40
- activemodel (= 5.1.7)
41
- activesupport (= 5.1.7)
42
- arel (~> 8.0)
43
- activesupport (5.1.7)
59
+ activemodel (7.0.2.4)
60
+ activesupport (= 7.0.2.4)
61
+ activerecord (7.0.2.4)
62
+ activemodel (= 7.0.2.4)
63
+ activesupport (= 7.0.2.4)
64
+ activestorage (7.0.2.4)
65
+ actionpack (= 7.0.2.4)
66
+ activejob (= 7.0.2.4)
67
+ activerecord (= 7.0.2.4)
68
+ activesupport (= 7.0.2.4)
69
+ marcel (~> 1.0)
70
+ mini_mime (>= 1.1.0)
71
+ activesupport (7.0.2.4)
44
72
  concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (>= 0.7, < 2)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- arel (8.0.0)
73
+ i18n (>= 1.6, < 2)
74
+ minitest (>= 5.1)
75
+ tzinfo (~> 2.0)
49
76
  ast (2.4.2)
50
77
  builder (3.2.4)
51
78
  concurrent-ruby (1.1.10)
52
79
  crass (1.0.6)
53
80
  diff-lcs (1.5.0)
81
+ digest (3.1.0)
54
82
  erubi (1.10.0)
55
83
  figaro (1.2.0)
56
84
  thor (>= 0.14.0, < 2)
@@ -58,16 +86,31 @@ GEM
58
86
  activesupport (>= 5.0)
59
87
  i18n (1.10.0)
60
88
  concurrent-ruby (~> 1.0)
61
- loofah (2.17.0)
89
+ loofah (2.18.0)
62
90
  crass (~> 1.0.2)
63
91
  nokogiri (>= 1.5.9)
64
92
  mail (2.7.1)
65
93
  mini_mime (>= 0.1.1)
94
+ marcel (1.0.2)
66
95
  method_source (1.0.0)
67
96
  mini_mime (1.1.2)
68
97
  minitest (5.15.0)
98
+ net-imap (0.2.3)
99
+ digest
100
+ net-protocol
101
+ strscan
102
+ net-pop (0.1.1)
103
+ digest
104
+ net-protocol
105
+ timeout
106
+ net-protocol (0.1.3)
107
+ timeout
108
+ net-smtp (0.3.1)
109
+ digest
110
+ net-protocol
111
+ timeout
69
112
  nio4r (2.5.8)
70
- nokogiri (1.12.5-x86_64-darwin)
113
+ nokogiri (1.13.6-x86_64-darwin)
71
114
  racc (~> 1.4)
72
115
  parallel (1.22.1)
73
116
  parser (3.1.2.0)
@@ -76,32 +119,35 @@ GEM
76
119
  rack (2.2.3)
77
120
  rack-test (1.1.0)
78
121
  rack (>= 1.0, < 3)
79
- rails (5.1.7)
80
- actioncable (= 5.1.7)
81
- actionmailer (= 5.1.7)
82
- actionpack (= 5.1.7)
83
- actionview (= 5.1.7)
84
- activejob (= 5.1.7)
85
- activemodel (= 5.1.7)
86
- activerecord (= 5.1.7)
87
- activesupport (= 5.1.7)
88
- bundler (>= 1.3.0)
89
- railties (= 5.1.7)
90
- sprockets-rails (>= 2.0.0)
122
+ rails (7.0.2.4)
123
+ actioncable (= 7.0.2.4)
124
+ actionmailbox (= 7.0.2.4)
125
+ actionmailer (= 7.0.2.4)
126
+ actionpack (= 7.0.2.4)
127
+ actiontext (= 7.0.2.4)
128
+ actionview (= 7.0.2.4)
129
+ activejob (= 7.0.2.4)
130
+ activemodel (= 7.0.2.4)
131
+ activerecord (= 7.0.2.4)
132
+ activestorage (= 7.0.2.4)
133
+ activesupport (= 7.0.2.4)
134
+ bundler (>= 1.15.0)
135
+ railties (= 7.0.2.4)
91
136
  rails-dom-testing (2.0.3)
92
137
  activesupport (>= 4.2.0)
93
138
  nokogiri (>= 1.6)
94
139
  rails-html-sanitizer (1.4.2)
95
140
  loofah (~> 2.3)
96
- railties (5.1.7)
97
- actionpack (= 5.1.7)
98
- activesupport (= 5.1.7)
141
+ railties (7.0.2.4)
142
+ actionpack (= 7.0.2.4)
143
+ activesupport (= 7.0.2.4)
99
144
  method_source
100
- rake (>= 0.8.7)
101
- thor (>= 0.18.1, < 2.0)
145
+ rake (>= 12.2)
146
+ thor (~> 1.0)
147
+ zeitwerk (~> 2.5)
102
148
  rainbow (3.1.1)
103
149
  rake (13.0.6)
104
- regexp_parser (2.3.1)
150
+ regexp_parser (2.4.0)
105
151
  rexml (3.2.5)
106
152
  rspec (3.11.0)
107
153
  rspec-core (~> 3.11.0)
@@ -115,25 +161,25 @@ GEM
115
161
  rspec-mocks (3.11.1)
116
162
  diff-lcs (>= 1.2.0, < 2.0)
117
163
  rspec-support (~> 3.11.0)
118
- rspec-rails (4.1.2)
119
- actionpack (>= 4.2)
120
- activesupport (>= 4.2)
121
- railties (>= 4.2)
164
+ rspec-rails (5.1.2)
165
+ actionpack (>= 5.2)
166
+ activesupport (>= 5.2)
167
+ railties (>= 5.2)
122
168
  rspec-core (~> 3.10)
123
169
  rspec-expectations (~> 3.10)
124
170
  rspec-mocks (~> 3.10)
125
171
  rspec-support (~> 3.10)
126
172
  rspec-support (3.11.0)
127
- rubocop (1.28.2)
173
+ rubocop (1.29.1)
128
174
  parallel (~> 1.10)
129
175
  parser (>= 3.1.0.0)
130
176
  rainbow (>= 2.2.2, < 4.0)
131
177
  regexp_parser (>= 1.8, < 3.0)
132
- rexml
178
+ rexml (>= 3.2.5, < 4.0)
133
179
  rubocop-ast (>= 1.17.0, < 2.0)
134
180
  ruby-progressbar (~> 1.7)
135
181
  unicode-display_width (>= 1.4.0, < 3.0)
136
- rubocop-ast (1.17.0)
182
+ rubocop-ast (1.18.0)
137
183
  parser (>= 3.1.1.0)
138
184
  rubocop-performance (1.13.3)
139
185
  rubocop (>= 1.7.0, < 2.0)
@@ -147,21 +193,16 @@ GEM
147
193
  rubocop-thread_safety (0.4.4)
148
194
  rubocop (>= 0.53.0)
149
195
  ruby-progressbar (1.11.0)
150
- sprockets (4.0.3)
151
- concurrent-ruby (~> 1.0)
152
- rack (> 1, < 3)
153
- sprockets-rails (3.2.2)
154
- actionpack (>= 4.0)
155
- activesupport (>= 4.0)
156
- sprockets (>= 3.0.0)
196
+ strscan (3.0.3)
157
197
  thor (1.2.1)
158
- thread_safe (0.3.6)
159
- tzinfo (1.2.9)
160
- thread_safe (~> 0.1)
198
+ timeout (0.2.0)
199
+ tzinfo (2.0.4)
200
+ concurrent-ruby (~> 1.0)
161
201
  unicode-display_width (2.1.0)
162
- websocket-driver (0.6.5)
202
+ websocket-driver (0.7.5)
163
203
  websocket-extensions (>= 0.1.0)
164
204
  websocket-extensions (0.1.5)
205
+ zeitwerk (2.5.4)
165
206
 
166
207
  PLATFORMS
167
208
  x86_64-darwin-20
@@ -169,7 +210,7 @@ PLATFORMS
169
210
  DEPENDENCIES
170
211
  figaro
171
212
  mint_ping_api!
172
- rails (~> 5.1.5)
213
+ rails (~> 7.0.2.3)
173
214
  rake (~> 13.0)
174
215
  rspec (~> 3.0)
175
216
  rspec-rails
@@ -180,7 +221,7 @@ DEPENDENCIES
180
221
  rubocop-thread_safety
181
222
 
182
223
  RUBY VERSION
183
- ruby 2.5.0p0
224
+ ruby 3.1.1p18
184
225
 
185
226
  BUNDLED WITH
186
227
  2.3.10
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MintPingApi
4
- VERSION = '1.0.0'
4
+ VERSION = '1.1.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mint_ping_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ronak Jain
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-05-10 00:00:00.000000000 Z
11
+ date: 2022-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: figaro
@@ -61,7 +61,6 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - ".rspec"
63
63
  - ".rubocop.yml"
64
- - ".ruby-version"
65
64
  - CHANGELOG.md
66
65
  - CODE_OF_CONDUCT.md
67
66
  - Gemfile
@@ -96,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
96
95
  - !ruby/object:Gem::Version
97
96
  version: '0'
98
97
  requirements: []
99
- rubygems_version: 3.0.9
98
+ rubygems_version: 3.3.7
100
99
  signing_key:
101
100
  specification_version: 4
102
101
  summary: Server Ping integration
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- ruby-2.5.0