-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
56 lines (49 loc) · 1.07 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
source 'https://rubygems.org'
ruby '2.6.1'
# Core
gem 'bcrypt' # Use ActiveModel has_secure_password
gem 'coffee-rails'
gem 'jbuilder'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'pg'
gem 'puma'
gem 'rails', '~> 5.2.0'
gem 'sass-rails'
gem 'uglifier'
# Addons
gem 'acts_as_list'
gem 'chartkick'
gem 'faker'
gem 'font-awesome-sass'
gem 'groupdate'
gem 'haml'
gem 'haml-rails'
gem 'rails-assets-toastr', source: 'https://rails-assets.org'
gem 'rubocop', require: false
gem 'touchpunch-rails' # http://touchpunch.furf.com/ Touch Event Support for jQuery UI
# Translations
gem 'globalize'
gem 'i18n-js'
gem 'it' # Tool to improve the with links embedded https://github.com/iGEL/it
group :assets do
gem 'modernizr-rails' # HTML 5 support, http://modernizr.com/
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'spring'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'pry'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'chromedriver-helper'
gem 'launchy'
gem 'orderly'
gem 'selenium-webdriver'
end