Rhett Sutphin
Rhett Sutphin
In Bundler::Bundle#setup_environment, bundler adds `-r#{gem_path}/environment` to the RUBYOPT environment variable. If the gem path contains spaces, this can cause inscrutable interpreter-level errors. E.g., if your gem path is `/home/me/project seven/vendor/gems`,...
In the .gitignore section, the readme indicates that the cache is kept in vendor/gems/cache. In 0.8.1 (maybe 0.8.0, too), it has moved to vendor/gems/{interpreter}/{version}/cache — e.g., vendor/gems/ruby/1.8/cache .
Steps to reproduce: 1. Define a model with at least two async hasMany associations. 2. Create an instance with values in one of the associations and save it. 3. Clear...
The extension `Array#to_hash` in this gem breaks `Kernel.exec` when called with [these params](http://ruby-doc.org/core-1.9.3/Kernel.html#method-i-exec): ``` [cmdname, argv0], arg1, ... : command name, argv[0] and zero or more arguments (no shell) ```...
I've got an API client written with roar-rails and embedded in a rails application. I'm trying to factor it out to its own gem so I can reuse it in...
Both the find-top and find-bottom searches were incorrect (in different ways) for the case where you're scrolling the contents of one element (vs. the whole page). The details of the...