Skip to content

Commit

Permalink
Merge branch 'develop' into 937/xray-configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
scherztc authored Feb 15, 2022
2 parents 49e268d + cbc27c1 commit c5728b9
Show file tree
Hide file tree
Showing 33 changed files with 481 additions and 520 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
parameters:
ruby_version:
type: string
default: 2.7.2
default: 2.7.5
bundler_version:
type: string
default: 2.0.1
Expand Down Expand Up @@ -90,4 +90,4 @@ workflows:
ci:
jobs:
- build:
name: ruby2-7-2
name: ruby2-7-5
4 changes: 0 additions & 4 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,6 @@ SCHOLAR_ANALYTICS_PRIVKEY_PATH=analytics_privkey_path
SCHOLAR_ANALYTICS_PRIVKEY_SECRET=analytics_privkey_secret
SCHOLAR_ANALYTICS_CLIENT_EMAIL=analytics_client_email

# Google Re-captcha
SCHOLAR_CAPTCHA_SITE_KEY=captcha_site_key
SCHOLAR_CAPTCHA_SECRET_KEY=captcha_secret_key

# ORCID
ORCID_AUTHORIZE_URL=change_me
ORCID_APP_ID=change_me
Expand Down
6 changes: 1 addition & 5 deletions .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ SCHOLAR_ANALYTICS_PRIVKEY_PATH=analytics_privkey_path
SCHOLAR_ANALYTICS_PRIVKEY_SECRET=analytics_privkey_secret
SCHOLAR_ANALYTICS_CLIENT_EMAIL=analytics_client_email

# Google Re-captcha
SCHOLAR_CAPTCHA_SITE_KEY=captcha_site_key
SCHOLAR_CAPTCHA_SECRET_KEY=captcha_secret_key

# ORCID
ORCID_AUTHORIZE_URL=change_me
ORCID_APP_ID=change_me
Expand Down Expand Up @@ -77,4 +73,4 @@ SCHOLAR_DOI_URL=https://api.test.datacite.org/dois
API_KEY={ :development => 'testKey'}

# XRay max log size in MB, must be an integer value
SCHOLAR_XRAY_MAX_LOG_SIZE=10
SCHOLAR_XRAY_MAX_LOG_SIZE=10
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ RSpec/ExampleLength:
- 'app/api/**/*'
- 'spec/api/*'
- 'spec/unit/permission_spec.rb'
- 'spec/controllers/hyrax/resource_sync_controller_spec.rb'

RSpec/ExpectActual:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.2
2.7.5
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.5.5
FROM ruby:2.7.5

ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.5.5
FROM ruby:2.7.5

ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ end
gem 'bigdecimal', '1.3.5'

# For BrowseEverything to work with Hyrax 2.x then we need to pin BE
gem 'browse-everything', '1.0.2'
gem 'browse-everything', '1.1.0'

gem 'bulkrax', git: 'https://github.com/uclibs/bulkrax.git', ref: '4ad295999ff6c2f095ad3dc2fa67cd9a05f6b77f'
gem 'hydra-remote_identifier', github: 'uclibs/hydra-remote_identifier', branch: 'scholar-datacite'
gem 'kaltura', '0.1.1'
gem 'rack', '2.0.8'
gem 'rack', '2.2.3'
gem 'sidekiq-limit_fetch'
gem 'willow_sword', github: 'notch8/willow_sword'

Expand All @@ -25,7 +25,7 @@ gem 'rails', '~> 5.1.7'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '1.3.13'
# Use Puma as the app server
gem 'puma', '~> 3.11'
gem 'puma', '~> 4.3.8'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
Expand Down Expand Up @@ -67,7 +67,7 @@ gem 'equivalent-xml'
gem 'grape'
gem 'grape_on_rails_routes'
gem 'hydra-role-management'
gem 'hyrax', '2.9.4'
gem 'hyrax', '2.9.6'
gem 'mysql2', '~> 0.4.10'
gem 'omniauth-openid'
gem 'omniauth-shibboleth'
Expand Down
Loading

0 comments on commit c5728b9

Please sign in to comment.