I want to install a private Ruby gem server with some authentication. I want to be able to host in-house gems using a public Ubuntu server.
I read about http://docs.rubygems.org/read/chapter/18. But there is no authentication with that one - as I can see.
Then I read about https://github.com/cwninja/geminabox. But when I use the basic authentication (they have in their Wiki), it complaints about fetching the sources from my server.
So. How can I make a private Ruby gem server with authentication? Is that just impossible?
Thanks.
Edit:
Geminabox problem. I try to "bundle" to install new gems... but it gives me this error:
AGs-MacBook-Pro:super_app AG$ bundle
Fetching source index for http:// rubygems.org/
Fetching source index for http:// localhost:9292/
Could not reach rubygems repository http:// rubygems.org/, http:// localhost:9292/
Could not find aglipsum-0.0.1 in any of the sources
And "aglipsum" is my custom gem. However when I do not have basic authentication on, it works.
Some professional binary repository managers, such as Artifactory, support private RubyGems repositories.
Have you tried prefixing the source url with your basic auth credentials:
gem sources -a http://user:password@localhost:9292
This works for me with an apache + passanger setup.
Bundler version 1.6 added support for HTTP auth via bundle config.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With