-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (34 loc) · 936 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
49
50
51
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'rails-api'
# gem 'spring', :group => :development
gem 'pg'
gem 'active_model_serializers','~>0.9.2'
# gem 'oauth'
gem 'bcrypt-ruby', :require => 'bcrypt'
gem 'email_validator'
gem 'ibanizator'
gem 'phonelib'
gem 'apns'
gem 'will_paginate', '~> 3.1.0'
gem 'active_record_union'
gem 'rails_12factor', group: :production
# gems for the beta register form, to be removed later
gem 'mailchimp-api', '~> 2.0', '>= 2.0.6'
gem 'simple_form'
gem 'sass-rails'
gem 'bootstrap-sass'
gem 'rails-i18n', '~> 4.0.0' # For 4.0.x
group :development, :test do
gem 'rspec-rails'
gem "factory_girl_rails", "~> 4.0"
gem 'faker', "~> 1.6.3"
end
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano', :group => :development
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'