-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (43 loc) · 906 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '4.0.0'
gem 'mysql2'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'devise'
gem 'cancancan'
gem 'koala'
gem 'nokogiri'
gem 'open_uri_redirections'
gem 'jbuilder'
gem 'paperclip'
gem 'rails-patch-json-encode'
gem 'oj'
gem 'rack-cors', require: 'rack/cors'
gem 'mailgun'
gem 'mailgun_rails'
gem 'exception_notification'
gem 'axlsx_rails'
gem 'pushmeup'
gem 'versioncake'
gem 'will_paginate'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development do
gem 'capistrano'
gem 'rvm-capistrano'
gem 'guard-rspec', require: false
gem 'guard-spork'
gem 'spork-rails', :github => 'sporkrb/spork-rails'
end
group :test do
gem 'rspec-rails', '2.14.1'
gem 'factory_girl_rails'
gem 'timecop'
end
group :production do
gem 'thin'
end