-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
124 lines (89 loc) · 2.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
ruby '2.0.0'
gem 'rails', '4.0.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Bootstrap sass 3
gem 'bootstrap-sass', '~> 3.1.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'sanitize'
gem 'mechanize'
gem 'nokogiri'
gem 'sidekiq'
gem 'redis'
gem 'resque', require: 'resque/server'
gem 'whenever', :require => false
gem "mongoid-paperclip", :require => "mongoid_paperclip"
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem "parse-ruby-client"
gem 'xmpp4r_facebook'
# gem 'exception_notification'
# gem 'aws-sdk', '~> 1.3.4'
gem 'paypal-sdk-rest'
# bundle exec rake doc:rails generates the API under doc/api.
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
gem 'unicorn'
# Use Capistrano for deployment
gem 'capistrano', '~> 2.15.4', group: :development
# Use debugger
gem 'debugger', group: [:development, :test]
gem 'cancan'
gem 'compass-rails', '~> 1.1.2'
gem 'devise', :git => 'https://github.com/plataformatec/devise.git'
gem 'figaro'
gem 'haml-rails'
gem 'mongoid', '~> 4', :github=>"mongoid/mongoid"
gem "rolify", "~> 3.4.0"
gem 'simple_form', '>= 3.0.0.rc'
gem 'zurb-foundation'
gem 'azure'
# SMS Gateway
gem 'twilio-ruby'
gem 'money'
gem 'google_currency'
gem 'psych'
group :assets do
gem 'therubyracer', :platform=>:ruby
end
gem "will_paginate_mongoid"
gem 'will_paginate-bootstrap'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx]
gem 'guard-bundler'
gem 'guard-rails'
gem 'guard-rspec'
gem 'html2haml'
gem 'hub', :require=>nil
gem 'quiet_assets'
gem 'rb-fchange', :require=>false
gem 'rb-fsevent', :require=>false
gem 'rb-inotify', :require=>false
end
group :development, :test do
gem 'fabrication'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'database_cleaner', '1.0.1'
gem 'email_spec'
gem 'mongoid-rspec', '>= 1.6.0', :github=>"evansagge/mongoid-rspec"
end