Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (2)
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [2.0.6](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.5...v2.0.6) (2022-02-22)
### [2.0.5](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.4...v2.0.5) (2022-02-14) ### [2.0.5](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.4...v2.0.5) (2022-02-14)
### [2.0.4](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.3...v2.0.4) (2021-12-16) ### [2.0.4](https://gitlab.nexdev.uk/pub/rails-base-image-builder/-/compare/v2.0.3...v2.0.4) (2021-12-16)
......
...@@ -75,8 +75,8 @@ GEM ...@@ -75,8 +75,8 @@ GEM
autoprefixer-rails (10.4.2.0) autoprefixer-rails (10.4.2.0)
execjs (~> 2) execjs (~> 2)
aws-eventstream (1.2.0) aws-eventstream (1.2.0)
aws-partitions (1.554.0) aws-partitions (1.556.0)
aws-sdk-core (3.126.0) aws-sdk-core (3.126.2)
aws-eventstream (~> 1, >= 1.0.2) aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0) aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1) aws-sigv4 (~> 1.1)
...@@ -150,10 +150,10 @@ GEM ...@@ -150,10 +150,10 @@ GEM
httparty (0.18.1) httparty (0.18.1)
mime-types (~> 3.0) mime-types (~> 3.0)
multi_xml (>= 0.5.2) multi_xml (>= 0.5.2)
i18n (1.9.1) i18n (1.10.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
ibsciss-middleware (0.4.2) ibsciss-middleware (0.4.2)
jmespath (1.5.0) jmespath (1.6.0)
jquery-rails (4.4.0) jquery-rails (4.4.0)
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
...@@ -181,11 +181,11 @@ GEM ...@@ -181,11 +181,11 @@ GEM
mime-types-data (~> 3.2015) mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105) mime-types-data (3.2022.0105)
mini_mime (1.1.2) mini_mime (1.1.2)
mini_portile2 (2.7.1) mini_portile2 (2.8.0)
mini_racer (0.3.1) mini_racer (0.3.1)
libv8 (~> 8.4.255) libv8 (~> 8.4.255)
minitest (5.15.0) minitest (5.15.0)
msgpack (1.4.4) msgpack (1.4.5)
multi_xml (0.6.0) multi_xml (0.6.0)
mysql2 (0.5.3) mysql2 (0.5.3)
nexus_cqrs (0.2.2) nexus_cqrs (0.2.2)
...@@ -200,8 +200,8 @@ GEM ...@@ -200,8 +200,8 @@ GEM
activesupport activesupport
bunny bunny
nio4r (2.5.8) nio4r (2.5.8)
nokogiri (1.13.1) nokogiri (1.13.3)
mini_portile2 (~> 2.7.0) mini_portile2 (~> 2.8.0)
racc (~> 1.4) racc (~> 1.4)
pg (1.2.3) pg (1.2.3)
popper_js (1.16.0) popper_js (1.16.0)
...@@ -330,7 +330,7 @@ GEM ...@@ -330,7 +330,7 @@ GEM
simplecov-html (~> 0.11) simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1) simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3) simplecov-html (0.12.3)
simplecov_json_formatter (0.1.3) simplecov_json_formatter (0.1.4)
sneakers (2.12.0) sneakers (2.12.0)
bunny (~> 2.14) bunny (~> 2.14)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
......
...@@ -7,7 +7,7 @@ To update the gems in this core image, great care must be taken. Once the gemfil ...@@ -7,7 +7,7 @@ To update the gems in this core image, great care must be taken. Once the gemfil
a simple helper script. There are many ways of achieving this, but the recommended way is: a simple helper script. There are many ways of achieving this, but the recommended way is:
``` ```
docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle ruby:2.7.1 sh -c "apt-get update; apt-get install -y cmake build-essential; ls /usr/local/bundle; cd /app; gem install bundler:2.1; bundle update; bundle install;" docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle ruby:2.7.2 sh -c "apt-get update; apt-get install -y cmake build-essential; ls /usr/local/bundle; cd /app; gem install bundler:2.1; bundle update; bundle install;"
``` ```
Once both the `gemfile` and `gemfile.lock` files are both updated, a commit can be created to force a new update. Once both the `gemfile` and `gemfile.lock` files are both updated, a commit can be created to force a new update.
\ No newline at end of file