Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP : Hyrax fullcrum #1157

Open
wants to merge 17 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 21 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,29 @@ end
# This gem is a dependency of BE.
gem 'bigdecimal', '1.3.5'

# Needed for Hyrax 3.x
gem 'dry-monads', '1.4.0'

# Needed for solr_wrapper to run x86_darwin architecture
gem 'http', '5.1.0'
gem 'llhttp-ffi', '0.4.0' # 0.5.0 is broken for x86_darwin architecture

# For BrowseEverything to work with Hyrax 2.x then we need to pin BE
gem 'browse-everything', '1.1.0'
gem 'bulkrax', '~> 4.3.0'
gem 'hydra-remote_identifier', github: 'uclibs/hydra-remote_identifier', branch: 'scholar-datacite'
gem 'kaltura', '0.1.1'
gem "okcomputer", "~> 1.18.4"
gem 'rack', '2.2.3'
gem 'sidekiq-limit_fetch'
gem 'willow_sword', github: 'notch8/willow_sword'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.4.6'
gem 'rails', '~> 5.2.8.1'
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '1.3.13'
# gem 'sqlite3'
# Use Puma as the app server
gem 'puma', '~> 4.3.8'
gem 'puma', '~> 5.6'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
Expand All @@ -34,6 +42,13 @@ gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# https://github.com/samvera/hyrax/pull/5612
# "Version 6 of tinymce-rails causes uglifier to error during assets:precompile"
# This seems to be a hyrax 3.4.1 problem, the next release will have this pin
# in hyrax itself so can be removed
# gem 'tinymce-rails', '~> 5.10'
# gem 'uglifier', '~> 4.2'

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
Expand All @@ -52,10 +67,10 @@ gem 'jbuilder', '~> 2.5'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem 'active_attr'
gem 'active-fedora', '~>12.2.4'
gem 'active-fedora'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'brakeman'
gem 'bundler', '~> 1.17'
gem 'bundler'
gem 'bundler-audit'
gem 'change_manager', git: "https://github.com/uclibs/change_manager.git", ref: 'd8e1b552740df00922a0a40796999c4e2a0cb8b6'
gem 'devise', '~> 4.6.0'
Expand All @@ -66,7 +81,7 @@ gem 'equivalent-xml'
gem 'grape'
gem 'grape_on_rails_routes'
gem 'hydra-role-management'
gem 'hyrax', '2.9.6'
gem 'hyrax', '3.6.0'
gem 'mysql2', '~> 0.4.10'
gem 'omniauth-openid'
gem 'omniauth-shibboleth'
Expand Down
Loading