1

I have downloaded a gem source from a private repository to my local machine, how can I install it from the source?

Medya Gh
  • 4,563
  • 5
  • 23
  • 35
MarkY
  • 23
  • 3

1 Answers1

1

if you have the full source code no need to use :git notation, just go to to folder and do

gem build GEMNAME.gemspec
gem install gemname-version.gem
Medya Gh
  • 4,563
  • 5
  • 23
  • 35