Robin Boutros
Robin Boutros
I'm just wondering why a method like `path_prefix` is defined as: ``` def path_prefix options[:path_prefix] || OmniAuth.config.path_prefix end ``` and takes into account the prefix_path passed as an option, but...
The documentation for `.association`, more specifically it's `options` parameter, says: ``` :blueprint (Symbol) — Required. Use this to specify the blueprint to use for the associated object. ``` I think...
Hey, We updated Hutch from 0.21 to 0.22.1, and we now have the following issue: ``` ruby > Hutch::Config.get(:mq_host) # => xyz.rmq.cloudamqp.com > Hutch.connected? # => nil > Hutch.connect #2016-10-10T22:14:44Z...
When I run `bundle exec rake build --trace`, I get this at some point:  Yay. But then:  ``` ruby attr_reader :path if File::ALT_SEPARATOR.nil? File::ALT_SEPARATOR = "\\" # this...
 What are my options? A LOT of gems have this as a dependency I think. Plus, let's say I get rid of all of them, then I get the...
### Steps to reproduce ```ruby class AbilityA include CanCan::Ability def initialize can :destroy, Event do |event| puts self.class.name # this will output "AbilityA" even when the rule is called by...
@scroll = opts[:scroll] || true if opts[:scroll] is false, then @scroll will be true, not what we want ;) Should default to false. Also, the option you should pass to...
Hey, When I use $H({}), I get: ReferenceError: Hash is not defined In Object.js: function isHash(object) { return object instanceof Hash; } Where is Hash defined? Do I need to...