Skip to content
This repository has been archived by the owner on Jun 27, 2020. It is now read-only.

Commit

Permalink
Downgrades Hash syntax for Ruby 2.1
Browse files Browse the repository at this point in the history
Closes #1400
Travis CI RVM pinned to 2.1.3
  • Loading branch information
dchandekstark committed Aug 10, 2015
1 parent d9e97a3 commit 1dd3119
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ before_install:
- sudo apt-get install -qq libclamav6 libclamav-dev clamav clamav-data
- sudo apt-get install -qq libvips-dev
rvm:
- 2.1
- 2.1.3
before_script:
- "cp config/log4r.yml.sample config/log4r.yml"
cache: bundler
Expand Down
8 changes: 4 additions & 4 deletions lib/dul_hydra/reports/report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ def fields
end

def csv_opts
{ "csv.header": "false",
"csv.separator": csv_sep,
"csv.mv.separator": csv_mv_sep,
"csv.encapsulator": csv_quote,
{ :"csv.header" => "false",
:"csv.separator" => csv_sep,
:"csv.mv.separator" => csv_mv_sep,
:"csv.encapsulator" => csv_quote,
}
end

Expand Down

0 comments on commit 1dd3119

Please sign in to comment.