grape-app 0.6.0 → 0.6.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: 11a8672b13362989bb3faea02cbcc61de91d035d8a77aed324a4b7cf1b07e303
4
- data.tar.gz: b26a1e9ff4856e6ea6c6b1bb5227e77e182af9f6ac3a4952652e854d444be83e
3
+ metadata.gz: 589d82aa9d573d5eb1322f519820d73c3943497dd16222a675196d4bb7fe479d
4
+ data.tar.gz: de0940d47a5c306028e14d8d42b5c0419edaa0b13e8cb913d7d35ab2605591ef
5
5
  SHA512:
6
- metadata.gz: 60572498effa35b2d85cece7c4dc4c6de23e5ac9d0df358284cb27db5b618cbdc797efe65b589175255eb408a8e3ae4511fedfa3f2a06b3d7c6baabec1e1cffd
7
- data.tar.gz: 71accc244d0d64d9d72cce6a47a1440b305aac917b47e1aa991b1f52f48437dab2e9e58c086e545b6c3daa17cec175578ab5b5f64f73e1fdd0edfa347861c4df
6
+ metadata.gz: f109e3446cd59a06d51f768c6caf65b5099423b26dc9d8d7fed409be9f351e519add129a52de1d53592689b68291071b61367a443bc6298acb18dc9e6049f5a2
7
+ data.tar.gz: 6f48da3fd9ae536c53d19e306a79e888ddcf89438b56975b57daec14f83634819b347c6a2a5e5cab84143cae55bea8431c1e9321a437b6a0047a42270f8ab4f1
data/.rubocop.yml CHANGED
@@ -1,2 +1,5 @@
1
1
  inherit_from:
2
2
  - https://bitbucket.org/bsm/misc/raw/master/rubocop/default.yml
3
+
4
+ AllCops:
5
+ TargetRubyVersion: "2.3"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grape-app (0.6.0)
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.1.1)
16
- activesupport (= 5.2.1.1)
17
- activerecord (5.2.1.1)
18
- activemodel (= 5.2.1.1)
19
- activesupport (= 5.2.1.1)
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.1.1)
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.0)
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.1.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.1)
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.60.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.16.4
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.0'
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.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'
@@ -20,7 +20,7 @@ RSpec.describe Grape::App do
20
20
  end
21
21
 
22
22
  it 'should be an API instance' do
23
- expect(subject).to be < Grape::API::Instance
23
+ expect(subject).to be < Grape::API
24
24
  end
25
25
 
26
26
  it 'should init with default time zone' do
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.0
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-28 00:00:00.000000000 Z
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.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.6
271
+ rubygems_version: 2.7.7
272
272
  signing_key:
273
273
  specification_version: 4
274
274
  summary: Stanalone Grape API apps