Vladimir Sharshov
Vladimir Sharshov
I found unexpected behavior with follow options which used in CarrierWave: ``` config.storage = :fog config.fog_provider = 'fog/openstack config.fog_public = false config.fog_credentials = { ... provider: 'OpenStack', ... } ```...
Discussion start in https://github.com/eladmeidar/rails_indexes/pull/23 by @mexxer ``` class Message < ActiveRecord::Base belongs_to :author, :class_name => "User" has_many :message_copies has_many :recipients, :through => :message_copies class MessageCopy < ActiveRecord::Base belongs_to :message belongs_to...