Project

rgem

0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Simple demo to find system dependency required to run rails project
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.16
~> 10.0
 Project Readme

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 project

And to fetch and install use

require "rgem"
Rgem.install_gems "#{project_path}"
# or
Rgem.install_gems nil # for the current project

CLI 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.