Skip to content
Snippets Groups Projects
Commit 45cfc4fd authored by Dean Lovett's avatar Dean Lovett
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
# Bundler Updater
## Usage
To run the tool, cd into your working directory, and start the container:
```
cd ../users # E.g.
docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle gitlab.nexdev.uk:5555/pub/base-image-gemfile-updater:v1.1.1
```
The tool will require all the gems in the relevant `Gemfile` already be installed, so `bundle install` is ran inside the container.
Mounting your local bundle directory will speed this up, if it has already been installed.
Once the command has been ran, the console will output an updated `Gemfile` snippet to be manually copy and pasted into your local
`Gemfile`.
```ruby
# Using base image version: 1.2.0
# Common Gems
gem 'rails', '6.1.3'
gem 'puma', '4.3.7'
gem 'sass-rails', '5.1.0'
gem 'uglifier', '4.2.0'
gem 'mini_racer', '0.3.1'
gem 'bootstrap', '4.6.0'
gem 'jquery-rails', '4.4.0'
gem 'actionpack-cloudflare', '1.1.0'
gem 'turbolinks', '5.2.1'
gem 'pg', '1.2.3'
gem 'mysql2', '0.5.3'
gem 'active_model_serializers', '0.10.12'
gem 'rqrcode_png', '0.1.5'
gem 'hcaptcha', '7.1.0'
gem 'faker', '2.17.0'
gem 'bunny_events', '0.3.2'
gem 'bunny-mock', '1.7.0'
gem 'audited', '4.10.0'
gem 'discard', '1.2.0'
gem 'ddtrace', '0.46.0'
gem 'delayed_job_active_record', '4.1.5'
gem 'dotenv-rails', '2.7.6'
gem 'redis-rails', '5.0.2'
gem 'ruby-mailchecker', '4.0.6'
gem 'httparty', '0.18.1'
gem 'rack-cors', '1.1.1'
gem 'useragent', '0.16.10'
gem 'lograge', '0.11.2'
gem 'rack-attack', '6.5.0'
gem 'nexus_cqrs', '0.1.1'
gem 'nexus_cqrs_auth', '0.0.4'
gem 'health_check', '3.0.0'
gem 'rspec-rails', '4.1.2'
gem 'rails-controller-testing', '1.0.5'
gem 'factory_bot_rails', '6.1.0'
gem 'shoulda-matchers', '4.5.1'
gem 'simplecov', '0.21.2'
gem 'webmock', '3.12.2'
gem 'web-console', '4.1.0'
gem 'spring-watcher-listen', '2.0.1'
gem 'redis', '4.2.5'
```
The `Gemfile` will then need to be reviewed to ensure changes are correct.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment