grape-app 0.3.1 → 0.3.2

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/grape-app.gemspec +4 -3
  4. metadata +10 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 43dac369723077de72a8a3d319dbb658fc6d5813
4
- data.tar.gz: 722586a98f7c44a8a80320e5a7a1d75b756e8c4b
3
+ metadata.gz: 04fafb02c07c07029f7d2d46252df01863815214
4
+ data.tar.gz: b9b47133e9ad759de3dfe043672ed59c6911de4d
5
5
  SHA512:
6
- metadata.gz: c85da03fd8fef202a373c55a5c00b317c6c715fe50aac5d6984d5661d387816a0c3507cfdfb3c6ea2ba182970cfcd169a9961cb98f7f859a81323378f12f0414
7
- data.tar.gz: 491d3599fc772929f358f5a36203da90ed2a211425e3f75222df071e7421009e1c97c8daabc51267c95bd596fd04ff1a3b5bd04bcc4d2e323d23f5c6838811c4
6
+ metadata.gz: 0957a395eb5b09a0772ea9fe62dcbb5d2293d705ef4895822f816af6a6a64a034557be0bd51fa58a52f4b2972f15049b794db3ee7670b0fd36465566a3575254
7
+ data.tar.gz: e03178582aaf33b1f1994b4b4ab9a386a173947aed11eab53d3429ded1a75169dd436e04d9b6d6c5a492841e21c824826b6d1dfa1750638812e980552021f19a
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- grape-app (0.3.1)
4
+ grape-app (0.3.2)
5
5
  activesupport
6
6
  activesupport-json_encoder
7
7
  grape
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'grape-app'
5
- s.version = '0.3.1'
5
+ s.version = '0.3.2'
6
6
  s.authors = ['Black Square Media Ltd']
7
7
  s.email = ['info@blacksquaremedia.com']
8
8
  s.summary = %{Stanalone Grape API apps}
@@ -10,8 +10,9 @@ Gem::Specification.new do |s|
10
10
  s.homepage = 'https://github.com/bsm/grape-app'
11
11
  s.license = 'MIT'
12
12
 
13
- s.files = `git ls-files`.lines.map(&:chomp)
14
- s.test_files = `git ls-files -- test/*`.lines.map(&:chomp)
13
+ s.files = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^spec/}) }
14
+ s.test_files = `git ls-files -z -- spec/*`.split("\x0")
15
+ s.executables = ['grape-app']
15
16
  s.require_paths = ['lib']
16
17
  s.required_ruby_version = '>= 1.9.3'
17
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grape-app
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Black Square Media Ltd
@@ -153,7 +153,8 @@ dependencies:
153
153
  description: ''
154
154
  email:
155
155
  - info@blacksquaremedia.com
156
- executables: []
156
+ executables:
157
+ - grape-app
157
158
  extensions: []
158
159
  extra_rdoc_files: []
159
160
  files:
@@ -219,4 +220,10 @@ rubygems_version: 2.4.7
219
220
  signing_key:
220
221
  specification_version: 4
221
222
  summary: Stanalone Grape API apps
222
- test_files: []
223
+ test_files:
224
+ - spec/grape/app_spec.rb
225
+ - spec/scenario/Gemfile
226
+ - spec/scenario/config/environments/development.rb
227
+ - spec/scenario/config/locales/en.yml
228
+ - spec/scenario/lib/my_lib.rb
229
+ - spec/spec_helper.rb