1

I want to install a gem mannually. I have downloaded the content of the git repo, modified the gemfile.lock (delete rails version depedencie in order to use the gem in my superior version of Rails). But where do I put the folder and how do I add this folder to my gem list?

GitHub repo

Théo Capdet
  • 1,042
  • 3
  • 18
  • 34
  • http://stackoverflow.com/questions/23118472/gem-vs-plugin-vs-engine-in-ruby-on-rails Check the difference between gem and engine – adamliesko Jul 20 '15 at 12:18

1 Answers1

1

In your Gemfile you just put gem 'gem_name', :path => "path_to_gem"

adamliesko
  • 1,887
  • 1
  • 14
  • 21