Skip to content

Commit 9589862

Browse files
authored
Merge pull request #3146 from DMPRoadmap/development
changes for v3.0.7
2 parents 0c719e8 + bf05372 commit 9589862

182 files changed

Lines changed: 12543 additions & 4324 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/mysql.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ jobs:
5757
- name: 'Precompile all of the Assets'
5858
run: bin/rails assets:precompile
5959

60+
# briley - comment out Karma tests due to issues with dependencies. We should
61+
# replace these with RSpec feature tests
6062
# Run the JS tests
61-
- name: 'Run Karma Tests'
62-
run: yarn test
63+
# - name: 'Run Karma Tests'
64+
# run: yarn test
6365

6466
# Run the unit and functional tests
6567
- name: 'Run Rspec Unit and Functional Tests'

.github/workflows/postgres.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,11 @@ jobs:
8181
- name: 'Compile Assets'
8282
run: bin/rails assets:precompile
8383

84+
# briley - comment out Karma tests due to issues with dependencies. We should
85+
# replace these with RSpec feature tests
8486
# Run the JS tests
85-
- name: 'Run Karma Tests'
86-
run: yarn test
87+
# - name: 'Run Karma Tests'
88+
# run: yarn test
8789

8890
# Run the unit and functional tests
8991
- name: 'Run Rspec Unit and Functional Tests'

.rubocop.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,11 @@ Style/DocumentDynamicEvalDefinition: # new in 1.1
147147
Enabled: true
148148
Style/EndlessMethod: # new in 1.8
149149
Enabled: true
150+
Style/FormatStringToken:
151+
# Force use of the `%{variable}` style of tokens instead of `%<variable>s` because
152+
# Translation.io has trouble with auto-translating it. It converts `%<variable>s` to
153+
# `%<variable> s` (note the added space)
154+
EnforcedStyle: template
150155
Style/HashConversion: # new in 1.10
151156
Enabled: true
152157
Style/HashExcept: # new in 1.7

Gemfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,8 @@ gem 'httparty'
213213
# Autoload dotenv in Rails. (https://github.com/bkeepers/dotenv)
214214
gem 'dotenv-rails'
215215

216+
gem 'activerecord_json_validator'
217+
216218
# ================================= #
217219
# ENVIRONMENT SPECIFIC DEPENDENCIES #
218220
# ================================= #
@@ -275,7 +277,7 @@ group :test do
275277

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

280282
# RSpec::CollectionMatchers lets you express expected outcomes on
281283
# collections of an object in an example.

0 commit comments

Comments
 (0)