-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
35 lines (31 loc) · 978 Bytes
/
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
# To help keep this file readable, please list gems in alphabetical order and include
# a comment when it's not obvious.
source 'https://rubygems.org'
gem 'bootstrap3-datetimepicker-rails', '~> 4.17.43'
gem 'clearance' # User/password management
gem 'coffee-rails', '~> 4.2.2'
gem 'jquery-rails'
gem 'momentjs-rails', '>= 2.9.0'
gem 'puma', '~> 3.0'
gem 'rails', '~> 5.2.2'
gem 'sass-rails', '~> 5.0'
gem 'sqlite3'
gem 'turbolinks', '~> 5'
gem 'twitter-bootstrap-rails'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'capybara'
gem 'factory_girl_rails'
gem 'faker'
gem 'launchy' # Launch browser during feature tests with save_and_open_page
gem 'pry-byebug'
gem 'rspec-rails'
gem 'rails-controller-testing'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'listen', '~> 3.1.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end