Skip to content

Commit 3ffa580

Browse files
committed
not-very-tested 5.2
1 parent 1c845b7 commit 3ffa580

20 files changed

+395
-214
lines changed

DEVELOP.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ Current limitations of the development box:
4141
- To do a Rails database migration: `docker-compose exec web bundle exec rake db:migrate`
4242
- To enter a container (`web`, `db`, `redis`, or `elasticsearch`):
4343
`docker-compose exec CONTAINER_NAME /bin/bash`
44+
- To run a command on a container that is not started (eg, `bundle update`): `docker-compose run <container name> bash`
45+
46+
Note: to install new gems, etc, within the docker container, you will likely need to run `bundle config --delete frozen` to allow editing the lockfile.
4447

4548
## (Optional) Set Up Elasticsearch Indices
4649

Gemfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ ruby '2.6.9'
55
# Please keep the gems (as well as within a group) sorted
66
# in alphabetical order.
77

8-
gem 'acts-as-taggable-on', '~> 4.0'
8+
gem 'acts-as-taggable-on', '~> 6.0.0'
99
gem 'barometer'
10+
gem 'bootsnap', require: false
1011
gem 'bootstrap-datepicker-rails'
1112
gem 'bootstrap-generators', '~> 3.3.1'
1213
gem 'bootstrap-kaminari-views'
@@ -46,7 +47,7 @@ gem 'puma'
4647
gem 'rake', '< 13.0'
4748
gem 'rack-attack'
4849
gem 'rack-mini-profiler'
49-
gem 'rails', '5.1.7'
50+
gem 'rails', '5.2.8'
5051
gem 'record_tag_helper', '~> 1.0'
5152
gem 'react-rails', '~> 2.3.0'
5253
gem 'recap', '~> 1.0.0'

0 commit comments

Comments
 (0)