Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sul-dlss/SearchWorks
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.35.6
Choose a base ref
...
head repository: sul-dlss/SearchWorks
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 1,501 additions and 3,292 deletions.
  1. +1 −2 .gitignore
  2. +2 −3 Gemfile
  3. +229 −189 Gemfile.lock
  4. +1 −0 app/assets/config/manifest.js
  5. BIN app/assets/images/favicon.ico
  6. +59 −0 app/assets/stylesheets/component-library-overrides.css
  7. +2 −1 app/assets/stylesheets/sul-variables.scss
  8. +1 −1 app/controllers/browse_controller.rb
  9. +2 −4 app/helpers/xml_api_helper.rb
  10. +1 −1 app/models/citations/oclc_citation.rb
  11. +1 −1 app/views/browse/index.html.erb
  12. +1 −1 app/views/catalog/opensearch.xml.builder
  13. +5 −1 app/views/layouts/searchworks.html.erb
  14. +13 −13 app/views/shared/_su_footer.html.erb
  15. +14 −11 app/views/shared/_top_navbar.html.erb
  16. +18 −266 config/ezproxy/lane_proxy_file.txt
  17. +7 −6 config/ezproxy/sul_proxy_file.txt
  18. +17 −13 config/folio/circulation_rules.csv
  19. +14 −8 config/folio/circulation_rules.txt
  20. +12 −4 config/folio/loan_policies.json
  21. +5 −2 config/folio/locations.csv
  22. +1,009 −2,489 config/folio/locations.json
  23. +9 −227 config/folio/patron_notice_policies.json
  24. +3 −5 config/folio/request_policies.json
  25. +8 −10 config/folio/service_points.json
  26. +25 −1 config/initializers/rack_attack.rb
  27. +1 −1 config/settings.yml
  28. BIN public/favicon.ico
  29. BIN public/icon.png
  30. +0 −3 public/icon.svg
  31. +1 −1 spec/lib/purl_embed_spec.rb
  32. +2 −1 spec/models/citations/oclc_citation_spec.rb
  33. +6 −6 spec/models/concerns/index_links_spec.rb
  34. +4 −4 spec/models/links/ezproxy_spec.rb
  35. +1 −3 spec/presenters/facet_options_presenter_spec.rb
  36. +21 −8 spec/views/browse/index.html.erb_spec.rb
  37. +6 −6 yarn.lock
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -11,8 +11,7 @@
/.capistrano

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
/db/*.sqlite3*

# ignore jetty directory
/jetty
5 changes: 2 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -10,8 +10,7 @@ gem 'puma', '~> 6.0'
gem 'sassc-rails'

gem 'turbo-rails', '~> 2.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer'

# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
# Reduces boot times through caching; required in config/boot.rb
@@ -47,7 +46,7 @@ group :development, :test do
gem 'capybara', '~> 3.0'
gem 'launchy' # useful for debugging rspec/capybara integration tests -- put "save_and_open_page" in your test to debug
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 6.1'
gem 'rspec-rails', '~> 7.1'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
Loading