-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
56 lines (42 loc) · 1.07 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
source 'https://rubygems.org'
# global gems
gem 'rails', "~> 4.0.2"
gem 'jquery-rails'
gem 'mysql2'
# make passwords saferish
gem 'bcrypt-ruby', '3.1.2'
# set important things in environment variables, not config files
gem 'dotenv-rails'
# sensible templating
gem 'haml-rails'
# bootstrap for templatng (for the moment)
gem 'bootstrap-sass'
# paginate activerecord queries
gem 'will_paginate'
# gems used just for testing
group :test do
gem 'capybara'
gem 'factory_girl_rails'
end
group :development do
# better errors is better
gem 'better_errors'
# this lets us use the REPL part of better errors
gem 'binding_of_caller'
end
group :development, :test do
# love pry
gem 'pry'
gem 'pry-rails'
# rspec testing framework
gem 'rspec-rails'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', "~> 4.0.0"
gem 'coffee-rails', "~> 4.0.0"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
end