Questions tagged [geminabox]
8 questions
5
votes
1 answer
ssl_verify_mode + bundler + geminabox
I'm trying to set up a private geminabox server to hold some gems my project is developing. I have the server set up, with passenger nginx running geminabox as a rack app. I am able to bundle install pointing at the server without using SSL.
Since…

phlogiston
- 331
- 5
- 10
1
vote
0 answers
Multiple GemInABox hosts
I know I can configure which host to upload gems to with:
gem inabox -c
How can I tell geminabox to upload to multiple hosts at the same time? We have two gem servers, and when I run:
gem inabox my_custom_gem.gem
I'd like for it to upload to both…

ardavis
- 9,842
- 12
- 58
- 112
1
vote
3 answers
How do I upload a gem to geminabox?
When I upload a gem to geminabox, what exactly am I supposed to be uploading? Apparently not the .gemspec file. When I do that, I get "400Cannot process gem". So what should I be uploading?

Jason Swett
- 43,526
- 67
- 220
- 351
1
vote
1 answer
Host Sinatra app off a non-root path using Rack
I'm setting up a Geminabox repository, which is a Rack app (Sinatra based). I'm running the app on the Passenger standalone server.
Currently the app is being hosted off the root path, so it's available at :3000/
I need to host it off a non-root…

dsw88
- 4,400
- 8
- 37
- 50
0
votes
1 answer
Install gem from ruby script and use it afterwards
I have a private gemserver running by Geminabox. To publish any gem there, there is a command gem inabox my-gem.gem -g $HOST.
I'm working on a script for automated publishing new gem versions.
So I have something like:
`gem install geminabox --no-ri…

nattfodd
- 1,790
- 1
- 17
- 35
0
votes
0 answers
Force Bundler to Use my Gem Source
I am running my own gem server with geminabox. This gem server hosts private forks of several public gems, as well as my own gems. I have a Gemfile with the sources listed like so:
source https://rubygems.org
source http://my/gem/server
When…

Sean Mackesey
- 10,701
- 11
- 40
- 66
0
votes
1 answer
Ruby Server responds with index, 404s everything else
I've got a chef server I need to also use as a Ruby gem server. When I run gem server it says Server started at 0.0.0.0:8808. I can go to the hostname:8808 in a browser and see the gem server index page, listing all of the gems I expect to see, but…

CPS
- 531
- 1
- 9
- 18
0
votes
1 answer
overriding bundler's release, but without putting it in the gem
I'm using bundler to manage my gem's dependencies, and I'm using geminabox to host my gems once they're ready. Using bundler's rake release is bad news, because my gems will go to rubygems, not to geminabox, however the additional functionality…

JP.
- 5,507
- 15
- 59
- 100