grape-app 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -0
- data/Gemfile.lock +12 -12
- data/grape-app.gemspec +2 -2
- data/spec/grape/app_spec.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 589d82aa9d573d5eb1322f519820d73c3943497dd16222a675196d4bb7fe479d
|
4
|
+
data.tar.gz: de0940d47a5c306028e14d8d42b5c0419edaa0b13e8cb913d7d35ab2605591ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f109e3446cd59a06d51f768c6caf65b5099423b26dc9d8d7fed409be9f351e519add129a52de1d53592689b68291071b61367a443bc6298acb18dc9e6049f5a2
|
7
|
+
data.tar.gz: 6f48da3fd9ae536c53d19e306a79e888ddcf89438b56975b57daec14f83634819b347c6a2a5e5cab84143cae55bea8431c1e9321a437b6a0047a42270f8ab4f1
|
data/.rubocop.yml
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
grape-app (0.6.
|
4
|
+
grape-app (0.6.1)
|
5
5
|
activesupport
|
6
6
|
grape (>= 1.2.0)
|
7
7
|
grape-entity
|
@@ -12,13 +12,13 @@ PATH
|
|
12
12
|
GEM
|
13
13
|
remote: https://rubygems.org/
|
14
14
|
specs:
|
15
|
-
activemodel (5.2.
|
16
|
-
activesupport (= 5.2.
|
17
|
-
activerecord (5.2.
|
18
|
-
activemodel (= 5.2.
|
19
|
-
activesupport (= 5.2.
|
15
|
+
activemodel (5.2.2)
|
16
|
+
activesupport (= 5.2.2)
|
17
|
+
activerecord (5.2.2)
|
18
|
+
activemodel (= 5.2.2)
|
19
|
+
activesupport (= 5.2.2)
|
20
20
|
arel (>= 9.0)
|
21
|
-
activesupport (5.2.
|
21
|
+
activesupport (5.2.2)
|
22
22
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
23
23
|
i18n (>= 0.7, < 2)
|
24
24
|
minitest (~> 5.1)
|
@@ -37,7 +37,7 @@ GEM
|
|
37
37
|
thread_safe (~> 0.3, >= 0.3.1)
|
38
38
|
diff-lcs (1.3)
|
39
39
|
equalizer (0.0.11)
|
40
|
-
grape (1.2.
|
40
|
+
grape (1.2.2)
|
41
41
|
activesupport
|
42
42
|
builder
|
43
43
|
mustermann-grape (~> 1.0.0)
|
@@ -47,7 +47,7 @@ GEM
|
|
47
47
|
grape-entity (0.7.1)
|
48
48
|
activesupport (>= 4.0)
|
49
49
|
multi_json (>= 1.3.2)
|
50
|
-
i18n (1.
|
50
|
+
i18n (1.2.0)
|
51
51
|
concurrent-ruby (~> 1.0)
|
52
52
|
ice_nine (0.11.2)
|
53
53
|
jaro_winkler (1.5.1)
|
@@ -68,7 +68,7 @@ GEM
|
|
68
68
|
rack-test (1.1.0)
|
69
69
|
rack (>= 1.0, < 3)
|
70
70
|
rainbow (3.0.0)
|
71
|
-
rake (12.3.
|
71
|
+
rake (12.3.2)
|
72
72
|
rspec (3.8.0)
|
73
73
|
rspec-core (~> 3.8.0)
|
74
74
|
rspec-expectations (~> 3.8.0)
|
@@ -82,7 +82,7 @@ GEM
|
|
82
82
|
diff-lcs (>= 1.2.0, < 2.0)
|
83
83
|
rspec-support (~> 3.8.0)
|
84
84
|
rspec-support (3.8.0)
|
85
|
-
rubocop (0.
|
85
|
+
rubocop (0.61.1)
|
86
86
|
jaro_winkler (~> 1.5.1)
|
87
87
|
parallel (~> 1.10)
|
88
88
|
parser (>= 2.5, != 2.5.1.1)
|
@@ -117,4 +117,4 @@ DEPENDENCIES
|
|
117
117
|
sqlite3
|
118
118
|
|
119
119
|
BUNDLED WITH
|
120
|
-
1.
|
120
|
+
1.17.2
|
data/grape-app.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
|
2
2
|
s.name = 'grape-app'
|
3
|
-
s.version = '0.6.
|
3
|
+
s.version = '0.6.1'
|
4
4
|
s.authors = ['Black Square Media Ltd']
|
5
5
|
s.email = ['info@blacksquaremedia.com']
|
6
6
|
s.summary = %(Stanalone Grape API apps)
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s| # rubocop:disable Metrics/BlockLength
|
|
12
12
|
s.test_files = `git ls-files -z -- spec/*`.split("\x0")
|
13
13
|
s.executables = ['grape-app']
|
14
14
|
s.require_paths = ['lib']
|
15
|
-
s.required_ruby_version = '>= 2.
|
15
|
+
s.required_ruby_version = '>= 2.3'
|
16
16
|
|
17
17
|
s.add_dependency 'activesupport'
|
18
18
|
s.add_dependency 'grape', '>= 1.2.0'
|
data/spec/grape/app_spec.rb
CHANGED
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.6.
|
4
|
+
version: 0.6.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: 2018-11
|
11
|
+
date: 2018-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -260,7 +260,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
260
260
|
requirements:
|
261
261
|
- - ">="
|
262
262
|
- !ruby/object:Gem::Version
|
263
|
-
version: '2.
|
263
|
+
version: '2.3'
|
264
264
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
265
265
|
requirements:
|
266
266
|
- - ">="
|
@@ -268,7 +268,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
268
268
|
version: '0'
|
269
269
|
requirements: []
|
270
270
|
rubyforge_project:
|
271
|
-
rubygems_version: 2.7.
|
271
|
+
rubygems_version: 2.7.7
|
272
272
|
signing_key:
|
273
273
|
specification_version: 4
|
274
274
|
summary: Stanalone Grape API apps
|