This repository has been archived by the owner on Dec 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
72 lines (62 loc) · 1.5 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
source 'https://rubygems.org'
gem 'rails', '4.2.6'
gem 'mysql2', '~> 0.3.18'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.0.3'
gem "therubyracer", platform: :ruby
gem "less-rails", '~> 2.5'
gem 'less-rails-bootstrap', '~> 3.2.0'
gem "font-awesome-rails", '>= 4.4.0'
gem 'bootstrap-tour-rails', :git => 'https://github.com/tienle/bootstrap-tour-rails.git'
gem 'jquery-rails'
gem 'cancan'
gem 'figaro'
gem 'rolify'
gem 'formtastic'
gem 'formtastic-bootstrap', '>= 3.0.0'
gem 'bootstrap-wysihtml5-rails', '>= 0.3.2.100'
gem 'angular-rails-templates'
gem 'bower-rails'
gem 'rabl'
gem 'slack-notifier'
gem 'wicked'
gem 'draper', '~> 1.3'
gem 'hashie'
gem 'flag_shih_tzu', '~> 0.3.16'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'quiet_assets'
gem 'byebug'
end
group :development, :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'pry-rails'
gem 'sqlite3'
end
group :test do
gem 'capybara'
gem 'cucumber-rails', :require=>false
gem 'database_cleaner'
gem 'email_spec'
gem 'launchy'
gem "shoulda-matchers", "< 3.0.0", require: false
# Enhanced mail testing
gem 'action_mailer_cache_delivery'
end
gem 'omniauth-oauth2', '~> 1.3.1'
gem 'omniauth-google-oauth2'
gem 'omniauth-facebook'
gem 'omniauth-meetup'
gem 'omniauth-github'
gem 'will_paginate'
gem 'capistrano', '<3'
gem 'sanitize'
gem 'domainatrix'
gem 'bootstrap-datepicker-rails'
# image uploads
gem 'rmagick', :require => 'rmagick'
gem "carrierwave"
gem 'protected_attributes'
gem 'responders', '~> 2.0'