https://github.com/walidshaari/bundle_gems
Makefile to help bundle ruby gems for offline Internet disconnected machines
https://github.com/walidshaari/bundle_gems
Last synced: 3 months ago
JSON representation
Makefile to help bundle ruby gems for offline Internet disconnected machines
- Host: GitHub
- URL: https://github.com/walidshaari/bundle_gems
- Owner: walidshaari
- Created: 2017-10-11T18:24:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-11T18:31:46.000Z (over 8 years ago)
- Last Synced: 2025-02-26T12:40:51.994Z (over 1 year ago)
- Language: Makefile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bundle_gems
Makefile to help bundle ruby gems for offline Internet disconnected machines
## create a tarball of the gem and its dependecies:
create a tarball of the gem you would like to have on another connected machine to copy over to the disconnected one.
* first add required gems to the Gemfile, for example
```
source 'https://rubygems.org'
gem 'bolt'
gem 'serverspec'
```
* then run `make all`
```
$ make all
```
## Clear old artifacts:
```
$ make clean
```