I resolved a code issue with a gem, but how do I then use that gem in my Rails 3.0.10 app? Do I just include the files in my app or do I need to recompile the gem? If I recompile the gem, how do I use it in my app?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you should do is fork the git project that hosts the original gem…make your fixes and push back to git.
Then in your Gemfile do:
gem ‘gemyoufixed’, git: ‘git://github.com/you/gemyoufixed’
Then bundle install…