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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/grape-app.gemspec +4 -3
- metadata +10 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 04fafb02c07c07029f7d2d46252df01863815214
|
|
4
|
+
data.tar.gz: b9b47133e9ad759de3dfe043672ed59c6911de4d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0957a395eb5b09a0772ea9fe62dcbb5d2293d705ef4895822f816af6a6a64a034557be0bd51fa58a52f4b2972f15049b794db3ee7670b0fd36465566a3575254
|
|
7
|
+
data.tar.gz: e03178582aaf33b1f1994b4b4ab9a386a173947aed11eab53d3429ded1a75169dd436e04d9b6d6c5a492841e21c824826b6d1dfa1750638812e980552021f19a
|
data/Gemfile.lock
CHANGED
data/grape-app.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'grape-app'
|
|
5
|
-
s.version = '0.3.
|
|
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`.
|
|
14
|
-
s.test_files = `git ls-files --
|
|
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.
|
|
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
|