grape-app 0.11.0 → 0.11.1

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: 39ce25e8c0f9c276a8c2c22d1b6138b1160172e850236ffe8ea959880851d375
4
- data.tar.gz: 6380778138b98ee32ae6a844cb82a37adaa48d3747e7395c8eec21d478400a92
3
+ metadata.gz: 1140bc1f7139b14493c0775becbe051c8c29f5ff3c563fc25cc10e7969b19725
4
+ data.tar.gz: 387ac09791e600b406e6fd95b18a52e04af0efec9bbac58ba307a0a7278de0d0
5
5
  SHA512:
6
- metadata.gz: 4479eb190adf06cd626071cd8be85146331c15f18a82fc20204c2c33dd466697aa85add791cc05dd24e0d690630538ed50573eb73a23d798a4d093eed8b2c1a0
7
- data.tar.gz: 2a39eb90dcfff318003aef1c68246f25c674a543630f01adb2299bf71b8e12543e991a15df01056e9534b1b7607105bf01862a9e5e292198f9c5559af15ce505
6
+ metadata.gz: c36157ce17c772fd0b02ef467568445f6e9a75729f25b02ce0a5b6bd55fefb46e6605d59c5780a71fefb52deedc8948e3af4d2d92730157a8c4c502976918ed5
7
+ data.tar.gz: 6d6f92bf42013a50af3aea271f263ac503fcb36a0138d32b54cbeeb0c470d82b20d177fed834051ee9e4a2100528b95223a99a7a69b6b9a9e8a312fe58448724
@@ -11,7 +11,7 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  strategy:
13
13
  matrix:
14
- ruby-version: ["2.7", "3.0", "3.1"]
14
+ ruby-version: ["2.7", "3.0", "3.1", "3.2"]
15
15
  gemfiles: ["Gemfile", "Gemfile.rails6"]
16
16
  env:
17
17
  BUNDLE_GEMFILE: ${{ matrix.gemfile }}
data/Gemfile CHANGED
@@ -1,2 +1,10 @@
1
1
  source 'https://rubygems.org'
2
2
  gemspec
3
+
4
+ gem 'activejob'
5
+ gem 'activerecord'
6
+ gem 'rack-test'
7
+ gem 'rake'
8
+ gem 'rspec'
9
+ gem 'rubocop-bsm'
10
+ gem 'sqlite3'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grape-app (0.11.0)
4
+ grape-app (0.11.1)
5
5
  activesupport
6
6
  grape (>= 1.7)
7
7
  grape-entity
@@ -14,22 +14,22 @@ PATH
14
14
  GEM
15
15
  remote: https://rubygems.org/
16
16
  specs:
17
- activejob (7.0.4.1)
18
- activesupport (= 7.0.4.1)
17
+ activejob (7.0.4.3)
18
+ activesupport (= 7.0.4.3)
19
19
  globalid (>= 0.3.6)
20
- activemodel (7.0.4.1)
21
- activesupport (= 7.0.4.1)
22
- activerecord (7.0.4.1)
23
- activemodel (= 7.0.4.1)
24
- activesupport (= 7.0.4.1)
25
- activesupport (7.0.4.1)
20
+ activemodel (7.0.4.3)
21
+ activesupport (= 7.0.4.3)
22
+ activerecord (7.0.4.3)
23
+ activemodel (= 7.0.4.3)
24
+ activesupport (= 7.0.4.3)
25
+ activesupport (7.0.4.3)
26
26
  concurrent-ruby (~> 1.0, >= 1.0.2)
27
27
  i18n (>= 1.6, < 2)
28
28
  minitest (>= 5.1)
29
29
  tzinfo (~> 2.0)
30
30
  ast (2.4.2)
31
31
  builder (3.2.4)
32
- concurrent-ruby (1.1.10)
32
+ concurrent-ruby (1.2.2)
33
33
  diff-lcs (1.5.0)
34
34
  dry-core (1.0.0)
35
35
  concurrent-ruby (~> 1.0)
@@ -39,13 +39,13 @@ GEM
39
39
  concurrent-ruby (~> 1.0)
40
40
  dry-core (~> 1.0, < 2)
41
41
  zeitwerk (~> 2.6)
42
- dry-types (1.7.0)
42
+ dry-types (1.7.1)
43
43
  concurrent-ruby (~> 1.0)
44
- dry-core (~> 1.0, < 2)
45
- dry-inflector (~> 1.0, < 2)
46
- dry-logic (>= 1.4, < 2)
44
+ dry-core (~> 1.0)
45
+ dry-inflector (~> 1.0)
46
+ dry-logic (~> 1.4)
47
47
  zeitwerk (~> 2.6)
48
- globalid (1.0.1)
48
+ globalid (1.1.0)
49
49
  activesupport (>= 5.0)
50
50
  grape (1.7.0)
51
51
  activesupport
@@ -54,14 +54,14 @@ GEM
54
54
  mustermann-grape (~> 1.0.0)
55
55
  rack (>= 1.3.0)
56
56
  rack-accept
57
- grape-entity (0.10.2)
57
+ grape-entity (1.0.0)
58
58
  activesupport (>= 3.0.0)
59
59
  multi_json (>= 1.3.2)
60
60
  i18n (1.12.0)
61
61
  concurrent-ruby (~> 1.0)
62
62
  json (2.6.3)
63
63
  mini_portile2 (2.8.1)
64
- minitest (5.17.0)
64
+ minitest (5.18.0)
65
65
  multi_json (1.15.0)
66
66
  mustermann (3.0.0)
67
67
  ruby2_keywords (~> 0.0.1)
@@ -69,69 +69,69 @@ GEM
69
69
  mustermann (>= 1.0.0)
70
70
  openssl (3.1.0)
71
71
  parallel (1.22.1)
72
- parser (3.2.0.0)
72
+ parser (3.2.1.1)
73
73
  ast (~> 2.4.1)
74
- rack (3.0.4.1)
74
+ rack (3.0.7)
75
75
  rack-accept (0.4.5)
76
76
  rack (>= 0.4)
77
- rack-cors (1.1.1)
77
+ rack-cors (2.0.1)
78
78
  rack (>= 2.0.0)
79
79
  rack-ssl-enforcer (0.2.9)
80
- rack-test (2.0.2)
80
+ rack-test (2.1.0)
81
81
  rack (>= 1.3)
82
82
  rainbow (3.1.1)
83
83
  rake (13.0.6)
84
- regexp_parser (2.6.2)
84
+ regexp_parser (2.7.0)
85
85
  rexml (3.2.5)
86
86
  rspec (3.12.0)
87
87
  rspec-core (~> 3.12.0)
88
88
  rspec-expectations (~> 3.12.0)
89
89
  rspec-mocks (~> 3.12.0)
90
- rspec-core (3.12.0)
90
+ rspec-core (3.12.1)
91
91
  rspec-support (~> 3.12.0)
92
92
  rspec-expectations (3.12.2)
93
93
  diff-lcs (>= 1.2.0, < 2.0)
94
94
  rspec-support (~> 3.12.0)
95
- rspec-mocks (3.12.3)
95
+ rspec-mocks (3.12.4)
96
96
  diff-lcs (>= 1.2.0, < 2.0)
97
97
  rspec-support (~> 3.12.0)
98
98
  rspec-support (3.12.0)
99
- rubocop (1.43.0)
99
+ rubocop (1.48.1)
100
100
  json (~> 2.3)
101
101
  parallel (~> 1.10)
102
102
  parser (>= 3.2.0.0)
103
103
  rainbow (>= 2.2.2, < 4.0)
104
104
  regexp_parser (>= 1.8, < 3.0)
105
105
  rexml (>= 3.2.5, < 4.0)
106
- rubocop-ast (>= 1.24.1, < 2.0)
106
+ rubocop-ast (>= 1.26.0, < 2.0)
107
107
  ruby-progressbar (~> 1.7)
108
108
  unicode-display_width (>= 2.4.0, < 3.0)
109
- rubocop-ast (1.24.1)
110
- parser (>= 3.1.1.0)
109
+ rubocop-ast (1.27.0)
110
+ parser (>= 3.2.1.0)
111
111
  rubocop-bsm (0.6.1)
112
112
  rubocop (~> 1.0)
113
113
  rubocop-performance
114
114
  rubocop-rake
115
115
  rubocop-rspec
116
- rubocop-capybara (2.17.0)
116
+ rubocop-capybara (2.17.1)
117
117
  rubocop (~> 1.41)
118
- rubocop-performance (1.15.2)
118
+ rubocop-performance (1.16.0)
119
119
  rubocop (>= 1.7.0, < 2.0)
120
120
  rubocop-ast (>= 0.4.0)
121
121
  rubocop-rake (0.6.0)
122
122
  rubocop (~> 1.0)
123
- rubocop-rspec (2.18.1)
123
+ rubocop-rspec (2.19.0)
124
124
  rubocop (~> 1.33)
125
125
  rubocop-capybara (~> 2.17)
126
- ruby-progressbar (1.11.0)
126
+ ruby-progressbar (1.13.0)
127
127
  ruby2_keywords (0.0.5)
128
- sqlite3 (1.6.0)
128
+ sqlite3 (1.6.1)
129
129
  mini_portile2 (~> 2.8.0)
130
130
  thor (1.2.1)
131
- tzinfo (2.0.5)
131
+ tzinfo (2.0.6)
132
132
  concurrent-ruby (~> 1.0)
133
133
  unicode-display_width (2.4.2)
134
- zeitwerk (2.6.6)
134
+ zeitwerk (2.6.7)
135
135
 
136
136
  PLATFORMS
137
137
  ruby
@@ -139,7 +139,6 @@ PLATFORMS
139
139
  DEPENDENCIES
140
140
  activejob
141
141
  activerecord
142
- bundler
143
142
  grape-app!
144
143
  rack-test
145
144
  rake
data/Gemfile.rails6 CHANGED
@@ -1,6 +1,11 @@
1
1
  source 'https://rubygems.org'
2
2
  gemspec
3
3
 
4
+ gem 'activejob', '~> 6.1'
4
5
  gem 'activesupport', '~> 6.1'
5
6
  gem 'activerecord', '~> 6.1'
6
- gem 'activejob', '~> 6.1'
7
+ gem 'rack-test'
8
+ gem 'rake'
9
+ gem 'rspec'
10
+ gem 'rubocop-bsm'
11
+ gem 'sqlite3'
data/Gemfile.rails6.lock CHANGED
@@ -1,28 +1,28 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grape-app (0.10.1)
4
+ grape-app (0.11.1)
5
5
  activesupport
6
- grape (>= 1.2)
6
+ grape (>= 1.7)
7
7
  grape-entity
8
8
  openssl
9
9
  rack-cors (>= 1.1)
10
10
  rack-ssl-enforcer
11
11
  thor
12
- zeitwerk (>= 2.1)
12
+ zeitwerk (>= 2.6)
13
13
 
14
14
  GEM
15
15
  remote: https://rubygems.org/
16
16
  specs:
17
- activejob (6.1.6.1)
18
- activesupport (= 6.1.6.1)
17
+ activejob (6.1.7.3)
18
+ activesupport (= 6.1.7.3)
19
19
  globalid (>= 0.3.6)
20
- activemodel (6.1.6.1)
21
- activesupport (= 6.1.6.1)
22
- activerecord (6.1.6.1)
23
- activemodel (= 6.1.6.1)
24
- activesupport (= 6.1.6.1)
25
- activesupport (6.1.6.1)
20
+ activemodel (6.1.7.3)
21
+ activesupport (= 6.1.7.3)
22
+ activerecord (6.1.7.3)
23
+ activemodel (= 6.1.7.3)
24
+ activesupport (= 6.1.7.3)
25
+ activesupport (6.1.7.3)
26
26
  concurrent-ruby (~> 1.0, >= 1.0.2)
27
27
  i18n (>= 1.6, < 2)
28
28
  minitest (>= 5.1)
@@ -30,104 +30,107 @@ GEM
30
30
  zeitwerk (~> 2.3)
31
31
  ast (2.4.2)
32
32
  builder (3.2.4)
33
- concurrent-ruby (1.1.10)
33
+ concurrent-ruby (1.2.2)
34
34
  diff-lcs (1.5.0)
35
- dry-container (0.10.0)
35
+ dry-core (1.0.0)
36
36
  concurrent-ruby (~> 1.0)
37
- dry-core (0.7.1)
37
+ zeitwerk (~> 2.6)
38
+ dry-inflector (1.0.0)
39
+ dry-logic (1.5.0)
38
40
  concurrent-ruby (~> 1.0)
39
- dry-inflector (0.3.0)
40
- dry-logic (1.2.0)
41
+ dry-core (~> 1.0, < 2)
42
+ zeitwerk (~> 2.6)
43
+ dry-types (1.7.1)
41
44
  concurrent-ruby (~> 1.0)
42
- dry-core (~> 0.5, >= 0.5)
43
- dry-types (1.5.1)
44
- concurrent-ruby (~> 1.0)
45
- dry-container (~> 0.3)
46
- dry-core (~> 0.5, >= 0.5)
47
- dry-inflector (~> 0.1, >= 0.1.2)
48
- dry-logic (~> 1.0, >= 1.0.2)
49
- globalid (1.0.0)
45
+ dry-core (~> 1.0)
46
+ dry-inflector (~> 1.0)
47
+ dry-logic (~> 1.4)
48
+ zeitwerk (~> 2.6)
49
+ globalid (1.1.0)
50
50
  activesupport (>= 5.0)
51
- grape (1.6.2)
51
+ grape (1.7.0)
52
52
  activesupport
53
53
  builder
54
54
  dry-types (>= 1.1)
55
55
  mustermann-grape (~> 1.0.0)
56
56
  rack (>= 1.3.0)
57
57
  rack-accept
58
- grape-entity (0.10.1)
58
+ grape-entity (1.0.0)
59
59
  activesupport (>= 3.0.0)
60
60
  multi_json (>= 1.3.2)
61
- i18n (1.11.0)
61
+ i18n (1.12.0)
62
62
  concurrent-ruby (~> 1.0)
63
- json (2.6.2)
64
- minitest (5.16.2)
63
+ json (2.6.3)
64
+ minitest (5.18.0)
65
65
  multi_json (1.15.0)
66
- mustermann (1.1.1)
66
+ mustermann (3.0.0)
67
67
  ruby2_keywords (~> 0.0.1)
68
68
  mustermann-grape (1.0.2)
69
69
  mustermann (>= 1.0.0)
70
- openssl (3.0.0)
70
+ openssl (3.1.0)
71
71
  parallel (1.22.1)
72
- parser (3.1.2.0)
72
+ parser (3.2.1.1)
73
73
  ast (~> 2.4.1)
74
- rack (2.2.4)
74
+ rack (3.0.7)
75
75
  rack-accept (0.4.5)
76
76
  rack (>= 0.4)
77
- rack-cors (1.1.1)
77
+ rack-cors (2.0.1)
78
78
  rack (>= 2.0.0)
79
79
  rack-ssl-enforcer (0.2.9)
80
- rack-test (2.0.2)
80
+ rack-test (2.1.0)
81
81
  rack (>= 1.3)
82
82
  rainbow (3.1.1)
83
83
  rake (13.0.6)
84
- regexp_parser (2.5.0)
84
+ regexp_parser (2.7.0)
85
85
  rexml (3.2.5)
86
- rspec (3.11.0)
87
- rspec-core (~> 3.11.0)
88
- rspec-expectations (~> 3.11.0)
89
- rspec-mocks (~> 3.11.0)
90
- rspec-core (3.11.0)
91
- rspec-support (~> 3.11.0)
92
- rspec-expectations (3.11.0)
86
+ rspec (3.12.0)
87
+ rspec-core (~> 3.12.0)
88
+ rspec-expectations (~> 3.12.0)
89
+ rspec-mocks (~> 3.12.0)
90
+ rspec-core (3.12.1)
91
+ rspec-support (~> 3.12.0)
92
+ rspec-expectations (3.12.2)
93
93
  diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.11.0)
95
- rspec-mocks (3.11.1)
94
+ rspec-support (~> 3.12.0)
95
+ rspec-mocks (3.12.4)
96
96
  diff-lcs (>= 1.2.0, < 2.0)
97
- rspec-support (~> 3.11.0)
98
- rspec-support (3.11.0)
99
- rubocop (1.31.2)
97
+ rspec-support (~> 3.12.0)
98
+ rspec-support (3.12.0)
99
+ rubocop (1.48.1)
100
100
  json (~> 2.3)
101
101
  parallel (~> 1.10)
102
- parser (>= 3.1.0.0)
102
+ parser (>= 3.2.0.0)
103
103
  rainbow (>= 2.2.2, < 4.0)
104
104
  regexp_parser (>= 1.8, < 3.0)
105
105
  rexml (>= 3.2.5, < 4.0)
106
- rubocop-ast (>= 1.18.0, < 2.0)
106
+ rubocop-ast (>= 1.26.0, < 2.0)
107
107
  ruby-progressbar (~> 1.7)
108
- unicode-display_width (>= 1.4.0, < 3.0)
109
- rubocop-ast (1.19.1)
110
- parser (>= 3.1.1.0)
111
- rubocop-bsm (0.6.0)
108
+ unicode-display_width (>= 2.4.0, < 3.0)
109
+ rubocop-ast (1.27.0)
110
+ parser (>= 3.2.1.0)
111
+ rubocop-bsm (0.6.1)
112
112
  rubocop (~> 1.0)
113
113
  rubocop-performance
114
114
  rubocop-rake
115
115
  rubocop-rspec
116
- rubocop-performance (1.14.2)
116
+ rubocop-capybara (2.17.1)
117
+ rubocop (~> 1.41)
118
+ rubocop-performance (1.16.0)
117
119
  rubocop (>= 1.7.0, < 2.0)
118
120
  rubocop-ast (>= 0.4.0)
119
121
  rubocop-rake (0.6.0)
120
122
  rubocop (~> 1.0)
121
- rubocop-rspec (2.12.1)
122
- rubocop (~> 1.31)
123
- ruby-progressbar (1.11.0)
123
+ rubocop-rspec (2.19.0)
124
+ rubocop (~> 1.33)
125
+ rubocop-capybara (~> 2.17)
126
+ ruby-progressbar (1.13.0)
124
127
  ruby2_keywords (0.0.5)
125
- sqlite3 (1.4.4)
128
+ sqlite3 (1.6.1-x86_64-linux)
126
129
  thor (1.2.1)
127
- tzinfo (2.0.4)
130
+ tzinfo (2.0.6)
128
131
  concurrent-ruby (~> 1.0)
129
- unicode-display_width (2.2.0)
130
- zeitwerk (2.6.0)
132
+ unicode-display_width (2.4.2)
133
+ zeitwerk (2.6.7)
131
134
 
132
135
  PLATFORMS
133
136
  x86_64-linux
@@ -136,7 +139,6 @@ DEPENDENCIES
136
139
  activejob (~> 6.1)
137
140
  activerecord (~> 6.1)
138
141
  activesupport (~> 6.1)
139
- bundler
140
142
  grape-app!
141
143
  rack-test
142
144
  rake
@@ -145,4 +147,4 @@ DEPENDENCIES
145
147
  sqlite3
146
148
 
147
149
  BUNDLED WITH
148
- 2.3.4
150
+ 2.3.16
data/grape-app.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'grape-app'
3
- s.version = '0.11.0'
3
+ s.version = '0.11.1'
4
4
  s.authors = ['Black Square Media Ltd']
5
5
  s.email = ['info@blacksquaremedia.com']
6
6
  s.summary = %(Standalone Grape API apps)
@@ -22,13 +22,5 @@ Gem::Specification.new do |s|
22
22
  s.add_dependency 'thor'
23
23
  s.add_dependency 'zeitwerk', '>= 2.6'
24
24
 
25
- s.add_development_dependency 'activejob'
26
- s.add_development_dependency 'activerecord'
27
- s.add_development_dependency 'bundler'
28
- s.add_development_dependency 'rack-test'
29
- s.add_development_dependency 'rake'
30
- s.add_development_dependency 'rspec'
31
- s.add_development_dependency 'rubocop-bsm'
32
- s.add_development_dependency 'sqlite3'
33
25
  s.metadata['rubygems_mfa_required'] = 'true'
34
26
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grape-app
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Black Square Media Ltd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-20 00:00:00.000000000 Z
11
+ date: 2023-03-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -122,118 +122,6 @@ dependencies:
122
122
  - - ">="
123
123
  - !ruby/object:Gem::Version
124
124
  version: '2.6'
125
- - !ruby/object:Gem::Dependency
126
- name: activejob
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - ">="
130
- - !ruby/object:Gem::Version
131
- version: '0'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - ">="
137
- - !ruby/object:Gem::Version
138
- version: '0'
139
- - !ruby/object:Gem::Dependency
140
- name: activerecord
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - ">="
144
- - !ruby/object:Gem::Version
145
- version: '0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - ">="
151
- - !ruby/object:Gem::Version
152
- version: '0'
153
- - !ruby/object:Gem::Dependency
154
- name: bundler
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - ">="
158
- - !ruby/object:Gem::Version
159
- version: '0'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - ">="
165
- - !ruby/object:Gem::Version
166
- version: '0'
167
- - !ruby/object:Gem::Dependency
168
- name: rack-test
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - ">="
172
- - !ruby/object:Gem::Version
173
- version: '0'
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - ">="
179
- - !ruby/object:Gem::Version
180
- version: '0'
181
- - !ruby/object:Gem::Dependency
182
- name: rake
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - ">="
186
- - !ruby/object:Gem::Version
187
- version: '0'
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - ">="
193
- - !ruby/object:Gem::Version
194
- version: '0'
195
- - !ruby/object:Gem::Dependency
196
- name: rspec
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - ">="
200
- - !ruby/object:Gem::Version
201
- version: '0'
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - ">="
207
- - !ruby/object:Gem::Version
208
- version: '0'
209
- - !ruby/object:Gem::Dependency
210
- name: rubocop-bsm
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - ">="
214
- - !ruby/object:Gem::Version
215
- version: '0'
216
- type: :development
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - ">="
221
- - !ruby/object:Gem::Version
222
- version: '0'
223
- - !ruby/object:Gem::Dependency
224
- name: sqlite3
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - ">="
228
- - !ruby/object:Gem::Version
229
- version: '0'
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - ">="
235
- - !ruby/object:Gem::Version
236
- version: '0'
237
125
  description: ''
238
126
  email:
239
127
  - info@blacksquaremedia.com
@@ -305,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
305
193
  - !ruby/object:Gem::Version
306
194
  version: '0'
307
195
  requirements: []
308
- rubygems_version: 3.3.7
196
+ rubygems_version: 3.4.6
309
197
  signing_key:
310
198
  specification_version: 4
311
199
  summary: Standalone Grape API apps