Commit 69d70400cc8ee3ea02e5c66b92b5965dcbe6fa76
Exists in
master
and in
4 other branches
Merge pull request #4076 from bke-drewb/4023
Fix regression caused by using newer version of Grape
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
Gemfile
... | ... | @@ -41,8 +41,8 @@ gem "gitlab-gollum-lib", "~> 1.0.0", require: 'gollum-lib' |
41 | 41 | gem "github-linguist", require: "linguist" |
42 | 42 | |
43 | 43 | # API |
44 | -gem "grape" | |
45 | -gem "grape-entity" | |
44 | +gem "grape", "~> 0.3.1" | |
45 | +gem "grape-entity", "~> 0.2.0" | |
46 | 46 | |
47 | 47 | # Format dates and times |
48 | 48 | # based on human-friendly examples | ... | ... |
Gemfile.lock
... | ... | @@ -173,7 +173,7 @@ GEM |
173 | 173 | gon (4.1.0) |
174 | 174 | actionpack (>= 2.3.0) |
175 | 175 | json |
176 | - grape (0.4.1) | |
176 | + grape (0.3.1) | |
177 | 177 | activesupport |
178 | 178 | builder |
179 | 179 | hashie (>= 1.2.0) |
... | ... | @@ -183,7 +183,7 @@ GEM |
183 | 183 | rack-accept |
184 | 184 | rack-mount |
185 | 185 | virtus |
186 | - grape-entity (0.3.0) | |
186 | + grape-entity (0.2.0) | |
187 | 187 | activesupport |
188 | 188 | multi_json (>= 1.3.2) |
189 | 189 | growl (1.0.3) | ... | ... |