Search code examples
ruby-on-railsrubyruby-on-rails-3rubygemsbundler

How can I specify a local gem in my Gemfile?


I'd like Bundler to load a local gem. Is there an option for that? Or do I have to move the gem folder into the .bundle directory?


Solution

  • I believe you can do this:

    gem "foo", path: "/path/to/foo"