grape-app 0.3.14 → 0.3.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +16 -16
- data/grape-app.gemspec +1 -1
- data/lib/grape/app.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 508e25f3ae1a6d59341d747adb07c2bdf5a83494
|
4
|
+
data.tar.gz: aceaa9e65bd807fd634a7b1b3730a413726ef4ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbadce1edbba733ca890e88e1ed280c30b769671119885ba1957413e2417ed74d33652e97748246ed20474a32261d03ed76441f81f3f2f510fca6915ead9dede
|
7
|
+
data.tar.gz: 28d52f49061cb68bbe412bc87d89ca3ad61ba73970f7ea178a1813afd8d2807b4079cb42b7d77d1f06757e9a136171a4660094425165ca3fa142d41ab71caa90
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
grape-app (0.3.
|
4
|
+
grape-app (0.3.15)
|
5
5
|
activesupport
|
6
6
|
activesupport-json_encoder
|
7
7
|
grape
|
@@ -14,7 +14,7 @@ PATH
|
|
14
14
|
GEM
|
15
15
|
remote: https://rubygems.org/
|
16
16
|
specs:
|
17
|
-
activesupport (4.2.
|
17
|
+
activesupport (4.2.5)
|
18
18
|
i18n (~> 0.7)
|
19
19
|
json (~> 1.7, >= 1.7.7)
|
20
20
|
minitest (~> 5.1)
|
@@ -33,7 +33,7 @@ GEM
|
|
33
33
|
thread_safe (~> 0.3, >= 0.3.1)
|
34
34
|
diff-lcs (1.2.5)
|
35
35
|
equalizer (0.0.11)
|
36
|
-
grape (0.
|
36
|
+
grape (0.14.0)
|
37
37
|
activesupport
|
38
38
|
builder
|
39
39
|
hashie (>= 2.1.0)
|
@@ -43,7 +43,7 @@ GEM
|
|
43
43
|
rack-accept
|
44
44
|
rack-mount
|
45
45
|
virtus (>= 1.0.0)
|
46
|
-
grape-entity (0.
|
46
|
+
grape-entity (0.5.0)
|
47
47
|
activesupport
|
48
48
|
multi_json (>= 1.3.2)
|
49
49
|
hashie (3.4.3)
|
@@ -52,7 +52,7 @@ GEM
|
|
52
52
|
i18n (0.7.0)
|
53
53
|
ice_nine (0.11.1)
|
54
54
|
json (1.8.3)
|
55
|
-
minitest (5.8.
|
55
|
+
minitest (5.8.3)
|
56
56
|
multi_json (1.11.2)
|
57
57
|
multi_xml (0.5.5)
|
58
58
|
rack (1.6.4)
|
@@ -63,19 +63,19 @@ GEM
|
|
63
63
|
rack (>= 1.0.0)
|
64
64
|
rack-ssl-enforcer (0.2.9)
|
65
65
|
rake (10.4.2)
|
66
|
-
rspec (3.
|
67
|
-
rspec-core (~> 3.
|
68
|
-
rspec-expectations (~> 3.
|
69
|
-
rspec-mocks (~> 3.
|
70
|
-
rspec-core (3.
|
71
|
-
rspec-support (~> 3.
|
72
|
-
rspec-expectations (3.
|
66
|
+
rspec (3.4.0)
|
67
|
+
rspec-core (~> 3.4.0)
|
68
|
+
rspec-expectations (~> 3.4.0)
|
69
|
+
rspec-mocks (~> 3.4.0)
|
70
|
+
rspec-core (3.4.1)
|
71
|
+
rspec-support (~> 3.4.0)
|
72
|
+
rspec-expectations (3.4.0)
|
73
73
|
diff-lcs (>= 1.2.0, < 2.0)
|
74
|
-
rspec-support (~> 3.
|
75
|
-
rspec-mocks (3.
|
74
|
+
rspec-support (~> 3.4.0)
|
75
|
+
rspec-mocks (3.4.0)
|
76
76
|
diff-lcs (>= 1.2.0, < 2.0)
|
77
|
-
rspec-support (~> 3.
|
78
|
-
rspec-support (3.
|
77
|
+
rspec-support (~> 3.4.0)
|
78
|
+
rspec-support (3.4.1)
|
79
79
|
thor (0.19.1)
|
80
80
|
thread_safe (0.3.5)
|
81
81
|
tzinfo (1.2.2)
|
data/grape-app.gemspec
CHANGED
data/lib/grape/app.rb
CHANGED
@@ -4,6 +4,7 @@ require 'grape'
|
|
4
4
|
require 'active_support/string_inquirer'
|
5
5
|
require 'active_support/configurable'
|
6
6
|
require 'active_support/inflector/methods'
|
7
|
+
require 'active_support/core_ext/time/zones'
|
7
8
|
require 'activesupport/json_encoder'
|
8
9
|
require 'hashie-forbidden_attributes'
|
9
10
|
require 'rack/cors'
|
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.3.
|
4
|
+
version: 0.3.15
|
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: 2015-
|
11
|
+
date: 2015-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grape
|