forked from unipept/unipept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
98 lines (72 loc) · 2.34 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
source 'http://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 5.2.2'
gem 'mysql2', '~> 0.5.2'
gem 'webpacker'
# Use Puma as the app server
gem 'puma', '~> 3.11'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# pagination
gem 'will_paginate'
# cas auth
gem 'devise', '>= 3.5'
gem 'devise_cas_authenticatable'
gem 'responders', '>= 2.0'
# needed for asset creation
gem 'therubyracer', platforms: :ruby
gem 'bootsnap', '>= 1.1.0', require: false
# faster json
gem 'oj', '~> 3.7'
gem 'multi_json'
gem 'jbuilder'
# imagemagick bindings
gem 'rmagick', require: false
# The dynamic stylesheet language for the Rails asset pipeline.
# Allows other gems to extend Less load path.
gem 'less-rails'
# auto css prefixer
gem 'autoprefixer-rails'
# Uglifier minifies JavaScript files by wrapping UglifyJS to be accessible
# in Ruby
gem 'uglifier', '>= 1.3.0'
# Exception emails
gem 'exception_notification', git: 'git://github.com/unipept/exception_notification.git'
# Deploy with Capistrano
gem 'capistrano', '~> 3.0'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'poltergeist'
gem 'rails-controller-testing'
end
gem 'listen', '>= 3.0.5', '< 3.2'
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
# 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'
gem 'foreman'
end
group :development do
gem 'capistrano-bundler', '~> 1.1', require: false
gem 'capistrano-rails', '~> 1.1', require: false
gem 'capistrano-rvm', require: false
gem 'capistrano-yarn'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# API stats
gem 'stathat'
group :development do
gem 'annotate' # annotate models with database info
gem 'guard'
gem 'guard-minitest' # auto run tests
gem 'rubocop', require: false
gem 'rake'
gem 'sprockets'
end