Chris Altman

Results 41 comments of Chris Altman

Any progress on this issue?

We switched to SecureRandom as well.

My error is similar but not exactly the same... ``` bundle/ruby/2.1.0/gems/charlock_holmes-0.7.3/lib/charlock_holmes.rb:1:in `require': libicuuc.so.48: cannot open shared object file: No such file or directory - bundle/ruby/2.1.0/extensions/x86_64-linux/2.1.0/charlock_holmes-0.7.3/charlock_holmes/charlock_holmes.so (LoadError) ``` This happens in...

For us it was a capistrano and capistrano-bundler issue. capistrano changed the default location where it installs the gems and capistrano-bundler hasn't updated yet. Adding this to our deploy.rb fixed...

@agios I gave this a try and it isn't working for me. undefined method `default_string' for # /Users/altonymous/Projects/activeuuid/lib/activeuuid/schema_dumper.rb:23:in`spec_for_column' /Users/altonymous/Projects/activeuuid/lib/activeuuid/schema_dumper.rb:56:in `block in table' /Users/altonymous/Projects/activeuuid/lib/activeuuid/schema_dumper.rb:53:in`map' /Users/altonymous/Projects/activeuuid/lib/activeuuid/schema_dumper.rb:53:in `table'

@agios I copied the default_string method from rails 3.2.13 def default_string(value) case value when BigDecimal value.to_s when Date, DateTime, Time "'" + value.to_s(:db) + "'" else value.inspect end end Now...

I've also tried... belongs_to :offer has_one :seller, (...) ``` can :read, Contract, buyer_id: user.id can :read, Contract, { seller: { id: user.id } } ``` and ``` can :read, Contract,...

I thought it might be related to the has_one vs belongs_to. However, that has proven to be a false theory. I am still struggling to find a solution to this...