Reputation: 285
I downloaded the latest file from github, edited the .gemspec file to require a gem I need; what do I then do to be able to use the gem? Do I have to bundle it with bundler to be able to use it?
Sorry if dumb question, but so confused right now... can't find much info especially on Rapidfire...
Upvotes: 1
Views: 445
Reputation: 4606
git clone [email protected]:code-mancers/rapidfire.git
git add .; git commit -m "whatever"
git push origin master
gem 'rapidfire', github: 'your-user/rapidfire', branch: 'master'
Upvotes: 1
Reputation: 4606
You can do:
gem build path-of-the-gemspec-file
Then
gem install path-of-generated-gem-file
For example:
In the root path of your gem, you can do:
gem build my-gem.gempsec
Then:
gem install my-gem-0.1.0.gem
To see if the gem was installed:
gem list | grep my-gem
Upvotes: 1