Skip to content
This repository has been archived by the owner on Nov 13, 2019. It is now read-only.

Update Gemfile #38

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ sudo: required
dist: trusty
rvm:
- 2.6.4
before_install: gem install bundler -v 1.16.0
before_install:
- gem install bundler
- bundle update
before_script:
- cp config/application.yml.example config/application.yml
- cp config/database.yml.example config/database.yml
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ADD Gemfile /app/Gemfile
ADD Gemfile.lock /app/Gemfile.lock

RUN bundle install
ADD . /app
ADD . /app
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ gem 'modernizr-rails'
gem 'nokogiri', '>= 1.10.4'
gem 'pg'
gem 'pdfkit'
gem 'rails', '5.2.2.1'
gem 'rails', '6.0'
gem 'rails-i18n'
gem 'rails-env'
gem 'rack', '>= 2.0.6'
Expand All @@ -49,6 +49,7 @@ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'uglifier'
gem 'wkhtmltopdf-binary'
gem 'whenever', require: false
gem 'rubocop'

group :development, :test do
gem 'byebug', platform: :mri
Expand Down