Skip to content

Commit

Permalink
Bump gems & ruby to 2.7.1 (#342)
Browse files Browse the repository at this point in the history
Bump gems & ruby to 2.7.1

Co-authored-by: Milos Blasko <[email protected]>
  • Loading branch information
jsuchal and Miloshes authored Sep 19, 2020
1 parent 1c47979 commit 8bcda00
Show file tree
Hide file tree
Showing 17 changed files with 221 additions and 223 deletions.
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
working_directory: ~/slovensko-digital/navody.slovensko.digital

docker:
- image: circleci/ruby:2.6.6-node-browsers
- image: circleci/ruby:2.7.1-node-browsers
environment:
CC_TEST_REPORTER_ID: 17d259e00bbff5b020b7f1a6abb6736e0f65b9a517afdcbaeaa79e919730835f
PGHOST: localhost
Expand All @@ -28,6 +28,7 @@ jobs:
- run: gem update --system
- run: gem install bundler
- run: bundle config set deployment true
- run: bundle config set path vendor/bundle
- run: bundle install
- save_cache: { key: '{{ checksum "Gemfile.lock" }}', paths: [vendor/bundle] }
- restore_cache: { keys: ['{{ checksum "yarn.lock" }}'] }
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.6
2.7.1
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.6.6'
ruby '2.7.1'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0'
gem 'rails-i18n'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18'
gem 'pg'
# Use Puma as the app server
gem 'puma'
# Use SCSS for stylesheets
Expand Down Expand Up @@ -37,7 +37,7 @@ gem 'jbuilder'
gem 'que', github: 'chanks/que' # https://github.com/chanks/que/issues/253

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootsnap', require: false

gem 'omniauth'
gem 'omniauth-google-oauth2'
Expand Down Expand Up @@ -67,7 +67,7 @@ group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 4.0.0.beta2'
gem 'rspec-rails', '4.0.0.beta4'
gem 'rspec_junit_formatter'
gem 'faker'
end
Expand All @@ -85,11 +85,11 @@ end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15'
gem 'capybara'
gem 'show_me_the_cookies'
gem 'selenium-webdriver'
gem 'webdrivers', '~> 3.0'
gem 'simplecov'
gem 'webdrivers'
gem 'simplecov', '< 0.18' # https://github.com/codeclimate/test-reporter/issues/413
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
Expand Down
Loading

0 comments on commit 8bcda00

Please sign in to comment.