This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I'm looking for URL helpers that allow me to generate URLs from within the controller. | |
# All controllers inherit from a common base: | |
class UsersController < ApplicationController | |
… | |
end | |
# This is an API, not a web site: there are no views. Instead, controller methods | |
# use ApplicationController#render_result() to format the result in the requested |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
On RHEL 5.2, I can't do various bundler-related things under "rvm use 1.9.2-p180@rails". works fine under "rvm system". Where should I look for cause? | |
Example: | |
% rvm system | |
% gem install bundler # works | |
% rvm use 1.9.2-p180@rails | |
% gem install bundler |
NewerOlder