0

We'd like to host a rubygems source internally on our own network, because while we do want to use gems as a distribution mechanism, we don't want to publish our gems externally to the company, since the scripts are perforce very specific to our environment (Windows).

Where can I find instructions on how to do such a thing?

Peter Mounce
  • 1,253
  • 5
  • 16
  • 29

1 Answers1

0

Found via http://docs.rubygems.org/read/chapter/18.

gem server

at a command line starts up a local gem server on port 8808.

JonathanDavidArndt
  • 1,424
  • 3
  • 20
  • 29
Peter Mounce
  • 1,253
  • 5
  • 16
  • 29
  • you can create a directory (say gemsource) under a web server's tree, create a subdirectory called "gems", put your gems there and then run "gem generate_index ." in gemsource. – monomyth Dec 03 '10 at 17:24