-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
General Improvements and Bug Fixes #5
Conversation
Deprecation warnings were coming up warning about how boolean values where going to be typecasted incorrectly. This will type cast the boolean fields as true if they have anything and false if they don't.
Removed warnings from the spec helper and defaulting to sqlite3 database for testing as it has the lowest impact to get testing going.
Including active record because it breaks if you require this gem outside of a rails environment
Later versions like sr27 have changed their format and need to refrence sr27asc.zip now instead of jsut src27. This also attempts to follow redirects as it appears the path has been changing where the data store was orignally saved to.
1 similar comment
This is awesome. Thanks so much for doing this @benfalk. I haven't had any time to look at this project for a while. I'll try to look into this PR as soon as possible. Maybe we can just drop JRuby support if it's causing problems. |
Cool, sounds like a good idea. The current active record doesn't appear to support jruby 😞 . I have a couple more changes I'll try and get into master yet, but nothing all that amazing. Just removing some warnings and defaulting to sr27 👍 |
General Improvements and Bug Fixes
Deprecation warnings were coming up warning about how boolean values
where going to be typecasted incorrectly. This will type cast the
boolean fields as true if they have anything and false if they don't.
Removed warnings from the spec helper and defaulting to sqlite3 database
for testing as it has the lowest impact to get testing going.
Including active record because it breaks if you require this gem
outside of a rails environment
Later versions like sr27 have changed their format and need to
refrence sr27asc.zip now instead of jsut src27. This also attempts
to follow redirects as it appears the path has been changing where
the data store was orignally saved to.