forked from null-open-security-community/swachalit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
106 lines (90 loc) · 2.35 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
source 'https://rubygems.org'
gem 'rails', '~> 4.2'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :development, :test do
gem 'sqlite3', '~> 1.3.6'
# From assets group
gem 'sassc-rails'
gem 'coffee-rails', '>= 4.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'byebug'
end
group :test do
gem 'rails-perftest'
gem 'ruby-prof'
gem 'brakeman'
end
group :production do
gem 'mysql2'
end
# 'asset' group is removed from rails 4.0
# Gems used only for assets and not required
# in production environments by default.
# group :assets do
# gem 'sassc-rails'
# gem 'coffee-rails', '>= 4.0'
# # See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
# gem 'uglifier', '>= 1.0.3'
# end
gem 'jquery-rails', '~> 4.0'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
gem 'unicorn'
# Deploy with Capistrano
#gem 'capistrano'
# To use debugger
# gem 'debugger'
gem 'devise'
gem 'omniauth'
gem 'omniauth-oauth2'
gem 'cancan'
gem 'font-awesome-rails'
gem 'activeadmin', '~> 1.0'
# meta_search is superseeded by ransack
#gem 'meta_search', '~> 1.0'
gem 'ransack', '~> 1.8'
gem 'audited-activerecord', '~> 4.0'
gem 'country_select'
gem 'state_machine'
gem 'carrierwave'
gem 'acts-as-taggable-on'
gem 'redcarpet'
gem "resque"
gem 'secure_headers'
gem 'formtastic'
#gem 'jquery-ui-rails'
gem 'just-datetime-picker'
gem 'yaml_db'
gem 'exception_notification'
#gem 'resque-web', :require => 'resque_web'
gem 'resque-scheduler', :require => 'resque-scheduler'
#gem 'google-api-client', :require => 'google/apis'
gem 'google-api-client', '~> 0.8.2'
gem 'formtastic-bootstrap'
gem 'twitter'
gem 'geocoder'
#Needed in rails>=4.0 for attr_accessible and attr_protected
gem 'protected_attributes'
gem 'activerecord-session_store'
gem 'acts_as_votable'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'dotenv'
gem 'test-unit'
gem 'omniauth-google-oauth2'
gem 'icalendar'
gem 'grape'
gem 'grape-swagger'
gem 'grape-swagger-entity'
gem 'grape-swagger-representable'
gem 'grape-swagger-rails'
gem 'grape-entity'
gem 'grape-cancan'
gem 'fog-aws'
gem 'sentry-raven'