-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
133 lines (113 loc) · 3.22 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
124
125
126
127
128
129
130
131
132
133
ruby '2.3.3'
source 'https://rubygems.org'
gem 'rails', '4.2.6'
# -----------------------------------------
# Javascript Resources
# -----------------------------------------
gem 'coffee-rails', '4.1.1'
gem 'jquery-rails', '4.1.0'
gem 'turbolinks' , '2.5.3'
gem 'client_side_validations'
gem 'client_side_validations-simple_form'
# -----------------------------------------
# Formating Utilities
# -----------------------------------------
gem 'uglifier', '2.7.2'
gem 'jbuilder', '2.4.1'
# -----------------------------------------
# Authentication and Permissions
# -----------------------------------------
gem 'devise', :git => 'https://github.com/plataformatec/devise.git'
gem 'activeadmin', github: 'activeadmin'
gem 'figaro'
gem 'cancancan', '~> 1.9'
# gem 'omniauth-facebook'
gem "recaptcha", require: "recaptcha/rails"
# -----------------------------------------
# Layout and Rendering
# -----------------------------------------
gem 'sass-rails'
gem 'bootstrap-sass', '3.3.6'
gem 'will_paginate-bootstrap', '1.0.1'
gem 'breadcrumbs_on_rails', '~> 2.3.0'
gem 'bootstrap_form'
gem 'data-confirm-modal'
gem "twitter-bootstrap-rails"
gem 'momentjs-rails'
gem 'bootstrap-daterangepicker-rails'
gem 'best_in_place', '~> 3.0.1'
gem 'autonumeric-rails'
gem 'haml-rails', '~> 0.9.0'
gem 'simple_form'
gem 'paranoia', '~> 2.2'
#------------------------------------------
# For Charts
#------------------------------------------
gem 'fusioncharts-rails'
#------------------------------------------
# For Featuring
#------------------------------------------
gem 'country_select'
gem 'mailgun_rails'
gem 'countries'
gem 'currencies'
gem 'friendly_id', '~> 5.2'
gem 'acts-as-taggable-on', '~> 4.0'
#------------------------------------------
# For Import And Export
#------------------------------------------
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary'
#------------------------------------------
# For Searching
#------------------------------------------
gem 'ransack'
gem 'has_scope'
#------------------------------------------
# For Server
#------------------------------------------
# gem 'puma'
#------------------------------------------
# For Error Notifications
#------------------------------------------
gem 'exception_notification', '~> 4.2', '>= 4.2.1'
#------------------------------------------
# For Multimedia Uploading
#------------------------------------------
gem 'carrierwave'
gem "mini_magick"
gem 'fog'
gem 'roo'
gem 'filepicker-rails', '~> 2.1'
group :doc do
gem 'sdoc', require: false
end
group :development, :test do
gem 'spring', '1.6.3'
gem 'byebug', '8.2.2'
gem 'rspec-rails', '3.1.0'
gem 'factory_girl_rails', '4.6.0'
gem 'faker', '1.6.3'
gem 'database_cleaner', '1.5.1'
gem 'capybara', '2.6.2'
end
group :development do
gem 'better_errors', '2.1.1'
gem 'binding_of_caller', '0.7.2'
gem 'web-console', '3.1.1'
gem 'guard-rails', '0.7.2', require: false
# gem 'rubocop', '0.37.2', require: false
# gem 'guard-rubocop', '1.2.0'
gem 'guard-rspec', '4.6.4', require: false
gem 'annotate'
gem 'sqlite3'
gem 'letter_opener', '1.4.1'
gem 'capistrano', '~> 3.6'
gem 'capistrano-rails', '~> 1.2'
gem 'capistrano-passenger', '~> 0.2.0'
gem 'capistrano-rvm'
end
group :production do
gem 'rails_12factor'
gem 'pg'
end