scinote-web/Gemfile

154 lines
4.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-07-21 19:11:15 +08:00
source 'http://rubygems.org'
2016-02-12 23:52:43 +08:00
ruby '3.2.2'
2016-02-12 23:52:43 +08:00
2019-07-03 15:48:20 +08:00
gem 'bootsnap', require: false
gem 'bootstrap-sass', '~> 3.4.1'
gem 'bootstrap_form', '~> 2.7.0'
gem 'devise', '~> 4.8.1'
gem 'devise_invitable'
gem 'figaro'
gem 'pg', '~> 1.5'
gem 'pg_search' # PostgreSQL full text search
gem 'psych', '< 4.0'
gem 'rails', '~> 7.0.5'
2016-11-22 21:57:41 +08:00
gem 'recaptcha', require: 'recaptcha/rails'
gem 'sanitize'
gem 'sassc-rails'
gem 'sprockets-rails'
gem 'view_component'
gem 'yomu', git: 'https://github.com/scinote-eln/yomu', branch: 'master'
2018-08-17 17:59:47 +08:00
# Gems for OAuth2 subsystem
2018-10-05 17:50:17 +08:00
gem 'doorkeeper', '>= 4.6'
gem 'omniauth', '~> 2.1'
gem 'omniauth-azure-activedirectory-v2'
2018-02-26 18:05:05 +08:00
gem 'omniauth-linkedin-oauth2'
gem 'omniauth-okta', git: 'https://github.com/scinote-eln/omniauth-okta', branch: 'org_auth_server_support'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
2017-08-30 00:49:07 +08:00
# Gems for API implementation
gem 'active_model_serializers', '~> 0.10.7'
gem 'json-jwt'
2019-09-12 23:21:48 +08:00
gem 'jsonapi-renderer', '~> 0.2.2'
2018-01-23 23:25:59 +08:00
gem 'jwt', '~> 1.5'
gem 'kaminari'
gem 'rack-attack'
2020-09-04 17:47:45 +08:00
gem 'rack-cors'
2016-02-12 23:52:43 +08:00
# JS datetime library, requirement of datetime picker
2017-06-23 16:34:46 +08:00
gem 'momentjs-rails', '~> 2.17.1'
2016-02-12 23:52:43 +08:00
# JS datetime picker
gem 'bootstrap3-datetimepicker-rails', '~> 4.17'
2016-02-12 23:52:43 +08:00
# Select elements for Bootstrap
gem 'bootstrap-select-rails', '~> 1.12.4'
2016-02-12 23:52:43 +08:00
gem 'uglifier', '>= 1.3.0'
# jQuery & plugins
gem 'autosize-rails' # jQuery autosize plugin
gem 'hammerjs-rails'
2016-02-12 23:52:43 +08:00
gem 'jquery-rails'
gem 'jquery-ui-rails'
2016-02-12 23:52:43 +08:00
gem 'js_cookie_rails' # Simple JS API for cookies
gem 'spinjs-rails'
gem 'activerecord-import'
2017-06-23 21:19:08 +08:00
gem 'ajax-datatables-rails', '~> 0.3.1'
gem 'aspector' # Aspect-oriented programming for Rails
gem 'auto_strip_attributes', '~> 2.1' # Removes unnecessary whitespaces AR
gem 'bcrypt', '~> 3.1.10'
# gem 'caracal'
gem 'caracal',
git: 'https://github.com/scinote-eln/caracal.git', branch: 'rubyzip2' # Build docx report
2023-01-16 18:31:18 +08:00
gem 'deface', '~> 1.9'
gem 'down', '~> 5.0'
gem 'faker' # Generate fake data
gem 'fastimage' # Light gem to get image resolution
gem 'httparty', '~> 0.21.0'
2020-02-19 22:57:06 +08:00
gem 'i18n-js', '~> 3.6' # Localization in javascript files
2017-08-02 23:27:05 +08:00
gem 'jbuilder' # JSON structures via a Builder-style DSL
gem 'logging', '~> 2.0.0'
gem 'nested_form_fields'
gem 'nokogiri', '~> 1.14.3' # HTML/XML parser
gem 'rails_autolink', '~> 1.1', '>= 1.1.6'
gem 'rgl' # Graph framework for project diagram calculations
gem 'roo', '~> 2.8.2' # Spreadsheet parser
2020-06-24 22:23:52 +08:00
gem 'rotp'
2023-03-08 18:30:45 +08:00
gem 'rqrcode', '~> 2.0' # QR code generator
gem 'rubyzip', '>= 2.3.0' # will load new rubyzip version
gem 'zip-zip' # will load compatibility for old rubyzip API.
gem 'scenic', '~> 1.4'
gem 'sdoc', '~> 1.0', group: :doc
gem 'silencer' # Silence certain Rails logs
gem 'sneaky-save', git: 'https://github.com/einzige/sneaky-save'
gem 'turbolinks', '~> 5.1.1'
gem 'underscore-rails'
gem 'wicked_pdf'
2016-02-12 23:52:43 +08:00
gem 'aws-sdk-lambda'
2019-06-24 21:17:42 +08:00
gem 'aws-sdk-rails'
gem 'aws-sdk-s3'
2016-02-12 23:52:43 +08:00
gem 'delayed_job_active_record'
2017-09-20 17:31:07 +08:00
gem 'devise-async',
git: 'https://github.com/mhfs/devise-async.git',
branch: 'devise-4.x'
gem 'image_processing'
gem 'img2zpl', git: 'https://github.com/scinote-eln/img2zpl'
gem 'rufus-scheduler'
2017-09-20 17:31:07 +08:00
gem 'discard'
2021-03-26 00:42:57 +08:00
gem 'graphviz'
2017-01-19 05:40:08 +08:00
gem 'jsbundling-rails'
gem 'tailwindcss-rails', '~> 2.0'
2017-01-04 17:51:55 +08:00
gem 'base62' # Used for smart annotations
gem 'newrelic_rpm'
2016-02-12 23:52:43 +08:00
# Permission helper Gem
gem 'canaid', git: 'https://github.com/scinote-eln/canaid'
2016-02-12 23:52:43 +08:00
group :development, :test do
gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
gem 'bullet'
2016-02-12 23:52:43 +08:00
gem 'byebug'
gem 'factory_bot_rails'
gem 'listen'
gem 'overcommit'
2017-07-06 15:07:05 +08:00
gem 'pry'
gem 'pry-byebug'
gem 'pry-rails'
2017-09-28 20:49:33 +08:00
gem 'rails-controller-testing'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'rubocop-performance'
2019-09-17 19:31:56 +08:00
gem 'rubocop-rails'
gem 'timecop'
2016-02-12 23:52:43 +08:00
end
2017-07-06 15:07:05 +08:00
group :test do
gem 'capybara'
gem 'capybara-email'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'json_matchers'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
2017-07-06 15:07:05 +08:00
gem 'simplecov', require: false
gem 'webmock'
2017-07-06 15:07:05 +08:00
end
2016-02-12 23:52:43 +08:00
group :production do
gem 'puma'
gem 'rails_12factor'
gem 'whacamole'
2016-02-12 23:52:43 +08:00
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i(mingw mswin x64_mingw jruby)