forked from dreamingechoes/adminlte-rails-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
73 lines (64 loc) · 1.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'
# Ruby version
ruby '2.4.0'
# General list of gems
gem 'rails', '5.0.2'
gem 'pg'
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'dotenv-rails'
gem 'devise'
gem 'pundit'
gem 'sendgrid'
gem 'layer-handler'
gem 'friendly_id'
# Only Development env gems
group :development do
gem 'better_errors'
gem 'foreman'
gem 'rails_layout'
gem 'rb-fchange', require: false
gem 'rb-fsevent', require: false
gem 'rb-inotify', require: false
gem 'spring-commands-rspec'
gem 'web-console'
gem 'listen'
# Guard
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
# Spring
gem 'spring'
gem 'spring-watcher-listen'
# Pry
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'pry-rescue'
end
# Only Test env gems
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
end
# Only Production env gems
group :production do
gem 'unicorn'
end
# Both Test and Development env gems
group :development, :test do
gem 'factory_girl_rails'
gem 'faker'
gem 'rspec-rails'
gem 'rubocop'
gem 'byebug', platform: :mri
end