Add Solargraph gem for Gitpod (#7171)

This commit is contained in:
Michael Kohl 2020-04-09 20:54:56 +07:00 committed by GitHub
parent d8539fd8c0
commit 741420893a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -26,6 +26,7 @@ tasks:
printf "❗ To get them, please follow https://docs.dev.to/backend/algolia/#get-api-keys\n\n" &&
read -p "Add them to config/application.yml, save the file, and press any key to continue... " -n 1 -r
done ;
gem install solargraph;
bin/setup &&
bin/startup
github:

View file

@ -13,7 +13,7 @@ RUN apk update -qq && apk add git nodejs postgresql-client ruby-dev build-base \
# Install required bundler version
#
#------------------------------------------------------------------------------
RUN gem install bundler:2.0.2
RUN gem install bundler:2.1.4
#------------------------------------------------------------------------------
#

View file

@ -4,7 +4,7 @@ echo "== Building Docker image (this may take a while) =="
docker-compose build
echo "== Setting up database =="
docker-compose run web rails db:setup db:migrate search:setup
docker-compose run web rails db:setup db:migrate search:setup data_updates:run
echo "== Starting app =="
docker-compose up