No commit activity in last 3 years
No release in over 3 years
## Why I have to develop this tool One of my ruby project is using bundler to manage gem dependencies. But the `Gemfile` is very complicate. It requires external `Gemfile` by using ruby `eval`. Because I have lots of similar projects that will use same piece of gems. So I decide to abstract these gems into a standalone `Gemfile`. And let those projects’ `Gemfile` loads it. The problem I met is when I building my docker image. I hope that image can pre-install all the ruby gems in that `Gemfile.lock`. Unluckily, `bundle install` require you must have the `Gemfile`. So I have to find out a way to revert `Gemfile.lock` to a usable `Gemfile`. So here we are!
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

Gemfile Lock To Gemfile

A tool for reversing Gemfile.lock -> Gemfile

Why I have to develop this tool

One of my ruby project is using bundler to manage gem dependencies. But the Gemfile is very complicate. It requires external Gemfile by using ruby eval. Because I have lots of similar projects that will use same piece of gems. So I decide to abstract these gems into a standalone Gemfile. And let those projects’ Gemfile loads it.

The problem I met is when I building my docker image. I hope that image can pre-install all the ruby gems in that Gemfile.lock. Unluckily, bundle install require you must have the Gemfile. So I have to find out a way to revert Gemfile.lock to a usable Gemfile.

So here we are!