Rgem
Installation
Add this line to your application's Gemfile:
gem 'rgem'And then execute:
$ bundle
Or install it yourself as:
$ gem install rgem
Usage
To list project system dependencies in the database
require "rgem"
Rgem.list_gems "#{project_path}"
# or
Rgem.list_gems nil # for the current projectAnd to fetch and install use
require "rgem"
Rgem.install_gems "#{project_path}"
# or
Rgem.install_gems nil # for the current projectCLI options
assuming that you've run gem install rgem successfully
-
to list system dependencies run in terminal
rgem list -p ./your_project_path -
and without -p flag for the current project
rgem list -
and to list and install
rgem install -p ./your_project_path -
and without -p flag for the current project
rgem install
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the Rgem project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.