-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
69 lines (58 loc) · 1.2 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
source 'https://rubygems.org'
# Rails Version locked to last 4.2.x
gem 'rails', '4.2.8'
# View support
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'bootstrap-sass'
gem 'haml-rails'
gem 'high_voltage'
# Database support
gem 'pg'
# Authentication and authorization
gem 'devise'
gem 'pundit'
# pagination
gem 'kaminari'
# heroku support
gem 'rails_12factor'
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
gem 'better_errors'
gem 'capistrano', '~> 3.0.1'
gem 'capistrano-bundler'
gem 'capistrano-rails', '~> 1.1.0'
gem 'capistrano-rails-console'
gem 'rvm1-capistrano3', require: false
gem 'capistrano3-unicorn'
gem 'foreman'
gem 'html2haml'
gem 'rails_layout'
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'byebug'
gem 'factory_girl_rails'
gem 'faker'
gem 'pry-rails'
gem 'pry-rescue'
gem 'rspec-rails'
gem 'rubocop'
gem 'thin'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
gem 'launchy'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
end
# Use Unicorn for production server
group :production do
gem 'unicorn'
end