Releases: TalentBox/sequel-rails
Releases · TalentBox/sequel-rails
v0.9.4
v0.9.3
v0.9.2
- Update SequelRails::Railties::ControllerRuntime to be up-to-date with how
ActiveRecord 4.0.x do the DB time calculation. It should fix some
inconsistencies with the reported time in logs where View + DB time was
sometimes less than Total time.
v0.9.1
v0.9.0
-
Add
require 'english'
to ensure we have access to english equivalents of
Ruby's special variable #57 -
Rename
SequelRails::SessionStore
asActionDispatch::Session::SequelStore
and fix methods to be compatible withRails
>= 3.2.Previous sequel session store did not work and should be enabled using:
MyApplication::Application.config.session_store SequelRails::SessionStore
now you can enable it using:
MyApplication::Application.config.session_store :sequel_store
A basic integration spec was added to ensure it works as expected. #56
v0.8.0
v0.7.0
- Add more information in the README, related to features of SequelRails #54
- Refactor storage shell command construction/execution/escaping #55
- Handle more options from database.yml for PostgreSQL when creating/dropping/loading/dumping database #55
- Allow dumping the schema even if there aren't any migrations to run. (Kevin Menard) #53
- Fix Postgres rake tasks under JRuby (Kevin Menard, Chris Heisterkamp) #52 #38
- Fix SQL schema dumps using timestamp migration (Joshua Hansen) #50
- Apply all migrations in the schema.rb file when loading it (Robert Payne) #49
- Make dump_schema_information compatible with integer based migration (Robert Payne) #48 #47
- Add an
after_connect
hook (Jan Berdajs) #46 - Update license dates and add license to gemspec #45