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

Development #127

Merged
merged 25 commits into from
Nov 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
94c3096
Merge branch 'development' of github.com:Det-Kongelige-Bibliotek/COP-…
siglun May 23, 2018
5f0f48f
upgrading rails and actionview
siglun Apr 24, 2019
34a1371
updated nokogiri
siglun Apr 24, 2019
4271dc6
fixed devise
siglun Apr 24, 2019
4257fa2
fixed bootstrap-sass
siglun Apr 24, 2019
1bc1b9c
fixed loofah
siglun Apr 24, 2019
f2fbc01
Merge pull request #95 from Det-Kongelige-Bibliotek/fix_notifications
siglun Apr 24, 2019
e6bca4a
Merge branch 'development' of github.com:Det-Kongelige-Bibliotek/COP-…
siglun Apr 26, 2019
cf4d34e
should call IIPimage using https
siglun Apr 30, 2019
b888096
getting OSD with https as well
siglun Apr 30, 2019
47b898a
Merge pull request #96 from Det-Kongelige-Bibliotek/osd_https
siglun Apr 30, 2019
58869a2
thumbnails using https
siglun Apr 30, 2019
78b3373
no comments
siglun Apr 30, 2019
60322c2
trying with a list of fallback locales
siglun Apr 30, 2019
181c7fe
editing the URIs for the front page as well
siglun May 1, 2019
38df083
Merge pull request #97 from Det-Kongelige-Bibliotek/default_locale
siglun May 1, 2019
42cc1f5
Merge branch 'master' of github.com:Det-Kongelige-Bibliotek/COP-front…
siglun Jun 9, 2020
b6f4791
trying this ruby version
siglun Jul 19, 2022
8a96b52
trying to get ruby version correct
siglun Jul 19, 2022
84c96d7
Merge branch 'test-ruby' into development
siglun Jul 19, 2022
c2f3640
bumping nokogiri to a current version
siglun Jul 19, 2022
4f27206
bumping puma
siglun Jul 19, 2022
9470b9e
updating rack
siglun Jul 19, 2022
0cb18e5
added version to Migrations
siglun Jul 19, 2022
726245b
the little change in frontend for category tree
siglun Nov 28, 2022
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
17 changes: 13 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

ruby "~> 2.6.5"

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.1'
gem 'rails', '~> 5.1.4'
# gem 'rails', '~> 5.0.1'
gem "actionview", ">= 5.0.7.2"
#
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use Puma as the app server
gem 'puma', '~> 4.3'
gem 'puma', '~> 4.3.12'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
Expand All @@ -20,7 +24,8 @@ gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby

#
gem "nokogiri", ">= 1.13.6"
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
Expand Down Expand Up @@ -62,9 +67,13 @@ group :development, :test do
end

gem 'rsolr', '~> 1.0'
gem 'devise'
gem "devise", ">= 4.6.0"
gem 'devise-guests', '~> 0.5'
gem 'devise_cas_authenticatable'
gem "bootstrap-sass", ">= 3.4.1"
gem "rack", ">= 2.2.3"
gem "rails-html-sanitizer", ">= 1.4.3"
gem "loofah", ">= 2.2.3"

#Makes it possible to find a file path using fx. page_path
gem 'high_voltage', '~> 3.0.0'
Expand Down
Loading