-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
60 lines (46 loc) · 1.36 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
source 'https://rubygems.org'
ruby "2.1.2"
gem 'rails', '4.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
gem 'jquery-rails'
gem "mysql2", ">= 0.3.11"
gem "libv8", ">= 3.11.8"
gem "devise", ">= 2.2.3"
gem "cancan", ">= 1.6.9"
gem "rolify", ">= 3.2.0"
gem "figaro", ">= 0.6.3"
gem 'factory_girl_rails', :require => false #don't require because of http://goo.gl/kgnKz
gem "active_model_serializers", "~> 0.8.0"
gem "backbone-on-rails"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem "therubyracer", ">= 0.11.3", :platform => :ruby, :require => "v8"
gem "less-rails", ">= 2.2.6"
gem "twitter-bootstrap-rails", ">= 2.2.4"
gem 'uglifier', '>= 2.5.0'
group :development do
gem "rails-erd"
gem "quiet_assets", ">= 1.0.2"
gem "better_errors", ">= 0.7.2"
gem "binding_of_caller", ">= 0.7.1", :platforms => [:mri_19, :rbx]
end
group :development, :test do
gem 'spring-commands-rspec'
gem "rspec-rails", "~> 3.0.0.beta"
end
group :test do
gem 'shoulda-matchers', "~> 2.6.0", require: false
end
group :production do
gem "thin", ">= 1.5.0"
end