Project
rubygems-mini_mirror
Mirror some version of gems with Gem::Version DSL
Create a mini_gem file and add this to it :
source :gemcutter
gem 'rails', ['~> 1.2.0', '>= 3.0']
or
source :gemcutter
resource :path => '/your_path/mini_gem.yml'
# /your_path/mini_gem.yml
gem:
- rails:
-
- '~> 1.2.0'
- '>= 3.0'
It will solve the dependencies for you so you don't have to write an exhaustive list of the gems you want to mirror
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Development
Dependencies