Skip to content

Instantly share code, notes, and snippets.

@rosylilly
Created May 18, 2012 05:33
Show Gist options
  • Save rosylilly/2723359 to your computer and use it in GitHub Desktop.
Save rosylilly/2723359 to your computer and use it in GitHub Desktop.
Bundlerでローカルだけで使うgemを書く
Gemfile.local
gem 'pry'
local = File.expand_path('../Gemfile.local', __FILE__)
if File.exist?(local)
instance_eval File.read(local)
end
gem 'pry-rails'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment