Alexander Ryazantsev

Results 4 comments of Alexander Ryazantsev

@ilyakatz I assume we should have something like in Rails. ``` ActiveRecord::Base.configurations.configs_for(env_name: ActiveRecord::Tasks::DatabaseTasks.env).each do |db_config| ActiveRecord::Base.establish_connection(db_config.config) ``` I am willing to add it but have no enough time. And I...

> I'd rather not touch database.yml as this file belongs to a different gem I guess you're right. I would not like to mix configs and I guess database.yml is...

+1 We need to fix it using follow ``` module Kaminari module Helpers class Tag alias_method :to_s_old, :to_s def to_s(l={}) to_s_old(l).html_safe end end end end ```

I was confused with query documentation in guides. I think It will be helpful to add info about rom-sql and Sequel.