-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
73 lines (67 loc) · 2.26 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'autoprefixer-rails', '~> 10.3.0'
gem 'autosize', '~> 2.4'
gem 'bootstrap', '~> 4.5.0'
gem 'coffee-rails', '~> 4.2.0'
gem 'combine_pdf', '~> 1.0.7'
gem 'font-awesome-rails', '~> 4.7'
gem 'http_accept_language', '~> 2.1.0'
gem 'image_processing', '~> 1.12.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.5'
gem 'jquery-hotkeys-rails', '~> 0.7.9'
gem 'jquery-rails', '~> 4.4.0'
gem 'jquery-ui-rails', '~> 6.0.0'
gem 'net-ldap', '~> 0.17.0'
gem 'paperclip', '~> 6.0.0'
gem 'pdfjs_viewer-rails', '~> 0.2.8', github: 'lepo-project/pdfjs_viewer-rails'
gem 'rails', '~> 5.2.4'
gem 'rails-assets-tether', '~> 1.1'
gem 'rails_autolink'
gem 'remotipart', '~> 1.4.2'
# FIXME: PushNotification
gem 'rest-client', '~> 2.1.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.6'
gem 'shrine', '~> 3.4.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', '~> 0.4.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '~> 4.2.0'
gem 'whenever', require: false
group :development, :test do
gem 'sqlite3', '~> 1.4.0'
end
group :development do
gem 'annotate', '~> 3.1.0'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'i18n_generators', '~> 2.2.0'
gem 'listen', '~> 3.2.0'
# meta_request is necessary for rails_panel chrome extension
# gem 'meta_request'
gem 'rubocop', require: false
gem 'rubocop-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.6.0'
end
group :test do
gem 'capybara', '~> 2.17.0'
gem 'chromedriver-helper'
gem 'database_cleaner', '~> 1.6.0'
gem 'factory_bot_rails', '~> 4.8'
gem 'minitest-capybara'
gem 'selenium-webdriver', '~> 3.4'
end
group :production do
gem 'mysql2', '~> 0.5.0'
# Use Puma as the app server
gem 'puma', '~> 4.3'
end