Skip to content

Commit

Permalink
Constrain dev dep: pg to fix ruby 1.9.3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredbeck committed Sep 27, 2016
1 parent 995628d commit 0d84056
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion paper_trail.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ Gem::Specification.new do |s|
s.add_development_dependency "activerecord-jdbcmysql-adapter", "~> 1.3.15"
else
s.add_development_dependency "sqlite3", "~> 1.2"
s.add_development_dependency "pg", "~> 0.17"

# pg 0.19 requires ruby >= 2.0.0, but we still test against ruby 1.9.3,
# for now ..
s.add_development_dependency "pg", [">= 0.17", "< 0.19"]

# activerecord >= 4.2.5 may use mysql2 >= 0.4
s.add_development_dependency "mysql2", "~> 0.4.2"
Expand Down

0 comments on commit 0d84056

Please sign in to comment.