-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
73 lines (66 loc) · 1.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
source 'http://rubygems.org'
gem 'rails', '4.0.0'
gem 'pg'
gem 'devise'
gem 'devise-async'
gem 'carrierwave'
gem 'mini_magick'
gem 'exception_notification'
gem 'haml-rails'
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'bootstrap-sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'simple_form', '~> 3.0.0.rc'
gem 'kaminari'
gem 'ancestry'
gem 'tlsmail', git: 'https://github.com/benjohnstonsf/tlsmail.git'
gem 'resque'
gem 'resque-scheduler'
gem 'geocoder'
gem 'font-awesome-rails'
gem 'state_machine'
gem 'braintree'
gem 'fullcalendar-rails'
gem 'ice_cube'
gem 'high_voltage'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'dotenv-rails'
gem 'prawn'
gem 'textacular', '~> 3.0'
gem 'mail_view', '~> 2.0.4'
group :test do
gem 'rspec-rails'
gem 'rspec_api_documentation'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'capybara'
gem 'poltergeist'
gem 'database_cleaner'
gem 'vcr'
gem 'webmock'
gem 'simplecov', require: false
end
group :development do
gem 'spring'
gem 'spring-commands-rspec'
end
group :development, :test do
gem 'quiet_assets'
gem 'awesome_print'
gem 'pry'
end
group :production do
gem 'unicorn'
end
group :deploy do
gem 'capistrano'
gem 'capistrano-ext'
gem 'rvm-capistrano'
gem 'capistrano-resque', github: 'sshingler/capistrano-resque'
gem 'guard'
gem 'guard-rspec'
end