Skip to content

Commit abed290

Browse files
authored
Merge pull request #101 from DigitalCurationCentre/deploy/uat
Merge UAT changes for Deploy
2 parents 9ecfdbd + 1fc8198 commit abed290

126 files changed

Lines changed: 1946 additions & 879 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.

Gemfile

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ group :puma do
5353
end
5454

5555
# Bit fields for ActiveRecord (https://github.com/pboling/flag_shih_tzu)
56-
gem 'flag_shih_tzu' # Allows for bitfields in activereccord
56+
gem 'flag_shih_tzu', '~> 0.3.23' # Allows for bitfields in activereccord
57+
# Pinned here because we're using a private method in Role.rb
58+
# if this gets updated, check this method still exists
5759

5860
# ------------------------------------------------
5961
# JSON DSL - USED BY API
@@ -64,7 +66,7 @@ gem 'jbuilder', '~> 2.6.0'
6466
# USERS
6567
# devise for user authentication
6668
# Flexible authentication solution for Rails with Warden (https://github.com/plataformatec/devise)
67-
gem 'devise'
69+
gem 'devise', ">= 4.7.1"
6870

6971
# An invitation strategy for Devise (https://github.com/scambra/devise_invitable)
7072
gem 'devise_invitable'
@@ -149,11 +151,14 @@ gem 'wkhtmltopdf-binary'
149151
gem 'wicked_pdf', '~> 1.1.0'
150152

151153
# This simple gem allows you to create MS Word docx documents from simple html documents. This makes it easy to create dynamic reports and forms that can be downloaded by your users as simple MS Word docx files. (http://github.com/karnov/htmltoword)
152-
gem 'htmltoword'
154+
gem 'htmltoword', '1.1.0'
153155

154156
# A feed fetching and parsing library (http://feedjira.com)
155157
gem 'feedjira'
156158

159+
# Filename sanitization for Ruby. This is useful when you generate filenames for downloads from user input
160+
gem 'zaru'
161+
157162
# ------------------------------------------------
158163
# INTERNATIONALIZATION
159164
# Simple FastGettext Rails integration. (http://github.com/grosser/gettext_i18n_rails)
@@ -236,11 +241,7 @@ group :test do
236241
# Automatically create snapshots when Cucumber steps fail with Capybara and Rails (http://github.com/mattheworiordan/capybara-screenshot)
237242
gem "capybara-screenshot"
238243

239-
# The next generation developer focused tool for automated testing of webapps (https://github.com/SeleniumHQ/selenium)
240-
gem "selenium-webdriver", "~> 3.14"
241-
242-
# Easy installation and use of chromedriver. (https://github.com/flavorjones/chromedriver-helper)
243-
gem "chromedriver-helper", ">= 1.2.0"
244+
gem 'webdrivers', '~> 3.0'
244245

245246
gem "rspec-collection_matchers"
246247

0 commit comments

Comments
 (0)