-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
65 lines (46 loc) · 1.23 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
source 'https://rubygems.org'
ruby '2.2.0'
gem 'rails', '4.2.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
# Database
gem 'pg'
# Webserver
gem 'unicorn'
# Form DSL
gem 'simple_form'
# CSS Frameworks
gem 'bootstrap-sass'
group :doc do
gem 'sdoc', '~> 0.4.0'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Load .env file into ENV vars in development
gem 'dotenv-rails'
# Rspec Testing Framework
gem 'rspec-rails', '~> 3.0'
# Generate Factories for tests
gem 'factory_girl_rails'
end
group :development do
# Manage Procfile based application (start rails server similar to Heroku)
gem 'foreman'
# Pry for rails
gem 'pry-rails'
# View emails in browser
gem 'letter_opener_web', '~> 1.2.0'
end
group :test do
end
group :production do
# Set up Rails properly on Heroku as a 12 factor app
gem 'rails_12factor'
end