Skip to content

Commit 6ab2409

Browse files
authored
Merge pull request #676 from PecanProject/hot_fix_issues_672_and_674
Changes to Gem files to fix issues 672 and 674.
2 parents 174e10b + 0c6770e commit 6ab2409

3 files changed

Lines changed: 16 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ section for the next release.
55

66
For more information about this file see also [Keep a Changelog](http://keepachangelog.com/) .
77

8+
## [Unreleased]
9+
10+
### Fixes
11+
12+
- #672 : Added activemodel-serializers-xml Gem to restore functionality of "original" API XML endpoints.
13+
- #674 : Upgraded comma Gem to restore CSV file downloads.
814

915
## [5.2.2] - 2019-12-06
1016

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ gem "rails", "5.1.5"
66
gem "nokogiri"
77
gem "narray", "0.6.0.4"
88
gem "choice", "0.1.6"
9-
gem "comma", "3.0.4"
9+
gem "comma", "~> 4.3.2"
1010
gem "json"
1111
gem "rgeo", "~> 0.5.0"
1212
gem "multi_json"
@@ -28,6 +28,7 @@ gem 'protected_attributes_continued' # Use this until and unless we start using
2828
gem 'sass-rails'
2929
gem 'coffee-rails'
3030
gem 'uglifier'
31+
gem 'activemodel-serializers-xml' # no longer part of Rails proper as of Rails 5
3132

3233
gem 'jquery-rails'
3334
gem 'jquery-ui-rails'

Gemfile.lock

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ GEM
2929
globalid (>= 0.3.6)
3030
activemodel (5.1.5)
3131
activesupport (= 5.1.5)
32+
activemodel-serializers-xml (1.0.2)
33+
activemodel (> 5.x)
34+
activesupport (> 5.x)
35+
builder (~> 3.1)
3236
activerecord (5.1.5)
3337
activemodel (= 5.1.5)
3438
activesupport (= 5.1.5)
@@ -77,7 +81,8 @@ GEM
7781
coffee-script-source
7882
execjs
7983
coffee-script-source (1.12.2)
80-
comma (3.0.4)
84+
comma (4.3.2)
85+
activesupport (>= 4.2.0, < 6.1)
8186
concurrent-ruby (1.0.5)
8287
crass (1.0.5)
8388
database_cleaner (1.7.0)
@@ -251,6 +256,7 @@ PLATFORMS
251256
ruby
252257

253258
DEPENDENCIES
259+
activemodel-serializers-xml
254260
activerecord-postgis-adapter
255261
activerecord-session_store
256262
apipie-rails (= 0.5.6)
@@ -259,7 +265,7 @@ DEPENDENCIES
259265
capybara-webkit (~> 1.7)
260266
choice (= 0.1.6)
261267
coffee-rails
262-
comma (= 3.0.4)
268+
comma (~> 4.3.2)
263269
database_cleaner
264270
dynamic_form
265271
jquery-rails

0 commit comments

Comments
 (0)