Commit 9c47208e authored by Eric Davis's avatar Eric Davis

[#511] Fix string encodings coming from sqlite3 in MRI 1.9.x

parent 4b3bd797
......@@ -41,10 +41,17 @@ platforms :mri do
gem "pg", "~> 0.9.0"
# gem "postgres-pr"
end
end
platforms :mri_18 do
group :sqlite do
gem "sqlite3-ruby", "< 1.3", :require => "sqlite3"
# please tell me, if you are fond of a pure ruby sqlite3 binding
end
end
platforms :mri_19 do
group :sqlite do
gem "sqlite3"
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment