How can I install a ruby gem that I downloaded from github on my Amazon EC2 instance?
I want to change the code a little bit, this is why I cant install it directly via github.
How can I install a ruby gem that I downloaded from github on my Amazon EC2 instance?
I want to change the code a little bit, this is why I cant install it directly via github.
You can build gem from installed source after some modifications and install it.
Just locate to source, find mygem.gemspec file, then gem build mygem.gemspec
and gem install mygem
.
Read more on http://docs.rubygems.org/read/chapter/5.
Does it address your needs and solve your problem?