Project

gemtoabox

0.0
No commit activity in last 3 years
No release in over 3 years
This gem provides the ability to backup your project gems to the private rubygem hosting on remote or local machine. All you need is to specify path to your project Gemfile.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.11
~> 10.0
~> 3.2, >= 3.2.0

Runtime

~> 0.13, >= 0.13.0
~> 3.0
 Project Readme

Gemtoabox

This gem provides the ability to backup your project gems to the private rubygem hosting on remote or local machine. All you need is to specify path to your project Gemfile and all your gems will be copied to the geminabox rubygems hosting.

Advantages
  • Gems dependencies resolving operation performs on your machine, on your environment. That means you may be sure you save exact same gems versions you use on your project.
  • Easy to use - just run executable bin file with your patamaters.
  • Extremely easy to deploy your own rebygem server with geminabox docker image:
docker run -d --name geminabox -e RUBYGEMS_PROXY=true -e PRIVATE=true \
-v /local_path_where_to_store_gems:/webapps/geminabox/data -p 9292:9292 -P -h geminabox \
-e USERNAME=myuser -e PASSWORD=mypassword spoonest/geminabox:latest
Disadvantages
  • This gem have no any tests so feel free to contribute.
  • Not sure it will work on Windows OS

Requirements

  • Bundler should be installed
  • geminabox gem should be installed

Installation

Add this line to your application's Gemfile:

gem 'gemtoabox'

Or install it yourself as:

$ gem install gemtoabox

Usage

Get help:

gemtoabox --help

Run upload process:

gemtoabox --gemfile /your_project/Gemfile --host http://<USER>:<PASSWORD>@<HOST>:<PORT>

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/yuri-karpovich/gemtoabox.