No commit activity in last 3 years
No release in over 3 years
Patches for gem serve, gem push, gem yank, and some utilities to allow use of non-Rubygems.org gem sources
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

rubygems-source-cli travis-ci

This is a collection of dirty, dirty patches for gem push and gem yank:

  • When you do not supply an API key and you are not using rubygems.org, you are not prompted to sign into rubygems.org
  • gem yank accepts --host [HOST] and --key [KEY] options

Usage

API keys should be stored in YAML format in $HOME/.gem/credentials:

---
:rubygems_api_key: 198dbad38sadasd87
:another_key: 2897234987bsdb90834

Then specify --host and --key options when pushing/yanking:

$ gem push mygem-1.0.0.gem --host https://example.com --key another_key
$ gem yank mygem-1.0.0.gem --host https://example.com --key another_key

Install

  • gem install rubygems-source-cli

or add it to your Gemfile:

  • gem "rubygems-source-cli"

Development

Pull requests are very welcome! Make sure your patches are well tested. Please create a topic branch for every separate change you make.

Testing

$ rake

Related projects

Author

Dave Nolan