Commit 3b548d925176791958a12324ab27ad457b110068

Authored by Kazuhiko
1 parent c08f19f2

update grape to 0.3.1 for ruby 2.0 support.

add grape-entity, that is split from grape 0.3.0.
remove usage of deprecated error_format, that is removed in grape 0.2.3.
Showing 3 changed files with 7 additions and 4 deletions   Show diff stats
Gemfile
... ... @@ -39,7 +39,8 @@ gem "pygments.rb", git: "https://github.com/gitlabhq/pygments.rb.git", branch:
39 39 gem "github-linguist", "~> 2.3.4" , require: "linguist"
40 40  
41 41 # API
42   -gem "grape", "~> 0.2.1"
  42 +gem "grape", "~> 0.3.1"
  43 +gem "grape-entity", "~> 0.2.0"
43 44  
44 45 # Format dates and times
45 46 # based on human-friendly examples
... ...
Gemfile.lock
... ... @@ -182,8 +182,9 @@ GEM
182 182 pyu-ruby-sasl (~> 0.0.3.1)
183 183 rubyntlm (~> 0.1.1)
184 184 gitlab_yaml_db (1.0.0)
185   - grape (0.2.2)
  185 + grape (0.3.1)
186 186 activesupport
  187 + grape-entity (~> 0.2.0)
187 188 hashie (~> 1.2)
188 189 multi_json (>= 1.3.2)
189 190 multi_xml
... ... @@ -191,6 +192,7 @@ GEM
191 192 rack-accept
192 193 rack-mount
193 194 virtus
  195 + grape-entity (0.2.0)
194 196 growl (1.0.3)
195 197 guard (1.5.4)
196 198 listen (>= 0.4.2)
... ... @@ -481,7 +483,8 @@ DEPENDENCIES
481 483 gitlab_omniauth-ldap (= 1.0.2)
482 484 gitlab_yaml_db (= 1.0.0)
483 485 grack!
484   - grape (~> 0.2.1)
  486 + grape (~> 0.3.1)
  487 + grape-entity (~> 0.2.0)
485 488 grit!
486 489 grit_ext!
487 490 growl
... ...
lib/api.rb
... ... @@ -9,7 +9,6 @@ module Gitlab
9 9 end
10 10  
11 11 format :json
12   - error_format :json
13 12 helpers APIHelpers
14 13  
15 14 mount Groups
... ...