-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (35 loc) · 1.05 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
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'sass-rails', '~> 5.0.3'
gem 'uglifier', '>= 2.5.3'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails', '4.0.3'
gem 'turbolinks', '2.3.0'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'bcrypt', '~> 3.1', '>= 3.1.11'
gem 'devise', '~> 4.2'
# we'll do these gems on styling phase
gem 'bootstrap-sass', '3.2.0.2'
gem "font-awesome-rails"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'sqlite3'
gem 'byebug'
gem 'web-console'
gem 'faker', '~> 1.6', '>= 1.6.5'
gem 'spring'
end
group :test do
gem 'minitest-reporters', '1.0.5'
gem 'mini_backtrace', '0.1.3'
gem 'guard-minitest', '2.3.1'
end
# feeling lazy to keep typing --wihtout production during bundle install
# therefor I'll uncomment this section when launching to production / herokus
# group :production do
# #use postgress in production and for compability with heroku
# gem 'pg'
# #compability requirement with heroku
# gem 'rails_12factor'
# end