Skip to content

Commit

Permalink
Merge pull request #3146 from DMPRoadmap/development
Browse files Browse the repository at this point in the history
changes for v3.0.7
  • Loading branch information
briri authored Apr 8, 2022
2 parents 0c719e8 + bf05372 commit 9589862
Show file tree
Hide file tree
Showing 182 changed files with 12,543 additions and 4,324 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ jobs:
- name: 'Precompile all of the Assets'
run: bin/rails assets:precompile

# briley - comment out Karma tests due to issues with dependencies. We should
# replace these with RSpec feature tests
# Run the JS tests
- name: 'Run Karma Tests'
run: yarn test
# - name: 'Run Karma Tests'
# run: yarn test

# Run the unit and functional tests
- name: 'Run Rspec Unit and Functional Tests'
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,11 @@ jobs:
- name: 'Compile Assets'
run: bin/rails assets:precompile

# briley - comment out Karma tests due to issues with dependencies. We should
# replace these with RSpec feature tests
# Run the JS tests
- name: 'Run Karma Tests'
run: yarn test
# - name: 'Run Karma Tests'
# run: yarn test

# Run the unit and functional tests
- name: 'Run Rspec Unit and Functional Tests'
Expand Down
5 changes: 5 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,11 @@ Style/DocumentDynamicEvalDefinition: # new in 1.1
Enabled: true
Style/EndlessMethod: # new in 1.8
Enabled: true
Style/FormatStringToken:
# Force use of the `%{variable}` style of tokens instead of `%<variable>s` because
# Translation.io has trouble with auto-translating it. It converts `%<variable>s` to
# `%<variable> s` (note the added space)
EnforcedStyle: template
Style/HashConversion: # new in 1.10
Enabled: true
Style/HashExcept: # new in 1.7
Expand Down
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,8 @@ gem 'httparty'
# Autoload dotenv in Rails. (https://github.com/bkeepers/dotenv)
gem 'dotenv-rails'

gem 'activerecord_json_validator'

# ================================= #
# ENVIRONMENT SPECIFIC DEPENDENCIES #
# ================================= #
Expand Down Expand Up @@ -275,7 +277,7 @@ group :test do

# Browser integration tests are expensive. We can mock external requests
# in our tests, but once a browser is involved, we lose control.
gem 'capybara-webmock'
gem 'capybara-webmock', '~> 0.6'

# RSpec::CollectionMatchers lets you express expected outcomes on
# collections of an object in an example.
Expand Down
Loading

0 comments on commit 9589862

Please sign in to comment.