Skip to content

Commit

Permalink
Merge pull request #447 from uclibs/qa
Browse files Browse the repository at this point in the history
Prep 1.0.2 release
  • Loading branch information
crowesn authored Apr 3, 2024
2 parents 1f01b00 + b133e86 commit 8ffce55
Show file tree
Hide file tree
Showing 63 changed files with 17,527 additions and 241 deletions.
11 changes: 5 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ executors:
environment:
IMAGE_NAME: treatment-database-app
docker:
- image: docker:20.10.7-git
- image: docker:20.10.14-git

orbs:
ruby: circleci/ruby@2.0.0
ruby: circleci/ruby@2.1.1
node: circleci/[email protected]
browser-tools: circleci/browser-tools@1.3.0
browser-tools: circleci/browser-tools@1.4.7
coveralls: coveralls/[email protected]

jobs:
build:
docker:
# specify the version you desire here
- image: cimg/ruby:3.0.5-browsers
- image: cimg/ruby:3.3.0-browsers

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand All @@ -44,8 +44,7 @@ jobs:

steps:
- checkout
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- browser-tools/install-browser-tools

- restore_cache:
keys:
Expand Down
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ AllCops:
Exclude:
- 'db/**/*'
- 'vendor/bundle/**/*'
- 'scripts/add-data.rb'

Metrics/ClassLength:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.0.5
ruby-3.3.0
7 changes: 3 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.0.5'
ruby '3.3.0'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
gem 'rails', '~> 6.1.7.7'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use Puma as the app server
Expand Down Expand Up @@ -80,8 +80,7 @@ group :development, :test do
gem 'rspec_junit_formatter'
gem 'rspec-rails', '~> 4.1.0'
gem 'rubocop-rails'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'selenium-webdriver', '~> 4.18.1'
end

group :development do
Expand Down
Loading

0 comments on commit 8ffce55

Please sign in to comment.