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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 074cac1771b7a8b2ee47069d8e6f613015dfaa5a
4
- data.tar.gz: 5c8c2d289a3f51075db58129ce2805dbbe66df7e
3
+ metadata.gz: 508e25f3ae1a6d59341d747adb07c2bdf5a83494
4
+ data.tar.gz: aceaa9e65bd807fd634a7b1b3730a413726ef4ad
5
5
  SHA512:
6
- metadata.gz: cc0fefaefe01d6f731507f65784329f9fceb430fd22931365d8aa6f68ced0a6cedd4259def8cc55c066f6a4ef01cb261ed11ce0587f96bdbac7864d0120c5b5d
7
- data.tar.gz: e0d8ab0119787cd47f91fadc5efe8f369d1a2f4b4ed2343938fdfbbcc3d4186332e6e314a32e9c399ba9dad5b83a51b38886d6acadc8e4395daff97a945f279c
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.14)
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.4)
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.13.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.4.8)
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.2)
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.3.0)
67
- rspec-core (~> 3.3.0)
68
- rspec-expectations (~> 3.3.0)
69
- rspec-mocks (~> 3.3.0)
70
- rspec-core (3.3.2)
71
- rspec-support (~> 3.3.0)
72
- rspec-expectations (3.3.1)
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.3.0)
75
- rspec-mocks (3.3.2)
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.3.0)
78
- rspec-support (3.3.0)
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'grape-app'
5
- s.version = '0.3.14'
5
+ s.version = '0.3.15'
6
6
  s.authors = ['Black Square Media Ltd']
7
7
  s.email = ['info@blacksquaremedia.com']
8
8
  s.summary = %{Stanalone Grape API apps}
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.14
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-11 00:00:00.000000000 Z
11
+ date: 2015-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grape