-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
138 lines (115 loc) · 3.57 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
134
135
136
137
138
source 'http://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
ruby "2.2.4"
gem 'rails', '4.2.5.2'
gem 'devise'
gem 'mongoid'
gem 'mongoid_slug'
gem 'carrierwave-mongoid', :require => 'carrierwave/mongoid'
gem 'rmagick'
gem 'mongoid-grid_fs', github: 'ahoward/mongoid-grid_fs'
gem 'twitter-bootstrap-rails'
gem 'haml-rails'
gem 'cancan'
gem 'bson_ext'
gem 'sass-rails', '~> 4.0.0'
gem 'kaminari'
gem 'simple_form', :git => 'git://github.com/plataformatec/simple_form.git'
gem 'nested_form'
gem "omniauth-google-oauth2"
gem 'rnotifier'
gem 'bootstrap-datepicker-rails', '1.3.0.2'
gem 'colorbox-rails'
gem 'google_drive'
gem 'redactor-rails', '0.4.5'
gem 'mini_magick'
gem "actionpack-action_caching"
gem 'acts_as_list_mongoid'
# 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'
gem 'twitter-typeahead-rails', :git => "git://github.com/yourabi/twitter-typeahead-rails.git"
#mongoid-history
gem 'mongoid-history', github: 'aq1018/mongoid-history'
gem 'jquery-timepicker-rails'
#sinatra
gem 'sinatra'
#for exporting excel sheet
gem 'rubyzip', '= 1.0.0'
gem 'axlsx', '= 2.0.1'
gem 'axlsx_rails'
# 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'
gem 'jquery-turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
#gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
gem 'rspec_api_documentation', group: [:development, :test]
group :test do
gem 'rspec-rails'
gem 'mongoid-rspec'
gem 'factory_girl_rails'
gem 'shoulda-matchers'
gem 'database_cleaner'
gem 'faker'
gem "codeclimate-test-reporter", require: nil
gem 'webmock'
gem 'vcr', '2.4.0'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'brakeman', :require => false
gem 'quiet_assets'
gem "letter_opener"
end
group :production do
#gem 'therubyracer'
end
#gem 'simplecov', :require => false, :group => :test
gem 'simplecov', '~> 0.7.1'
#BackGround Job processing instead of delayed_job
gem 'sidekiq'
gem 'whenever'
#gem for deploying to remote server
gem 'mina', github: 'nadarei/mina'
gem 'mina_extensions', github: 'marcosbeirigo/mina_extensions'
#gem 'rescue'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
#webserver for staging, production
gem 'unicorn'
gem 'thin'
gem 'google-api-client'
gem 'authority'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
gem 'light', git: '[email protected]:joshsoftware/lightair.git', branch: 'engine'
#gem 'light', path: '/Users/shweta/josh/intranet/lightair'#, branch: 'engine'
gem 'screamout', git: '[email protected]:joshsoftware/screamout.git', branch: 'engine'
gem 'mongoid_rateable', :git => 'git://github.com/PerfectMemory/mongoid_rateable.git'
gem 'feedjira'
gem 'rollbar'
#gem 'aws-sdk', '~> 2'
gem "aws-sdk"
gem "recaptcha", '~> 3.3.0', :require => "recaptcha/rails"
gem "byebug"
gem "rest-client"
gem 'time_difference'
gem 'slack-ruby-bot'
gem 'business_time'
gem 'rack-proxy', '~> 0.6.4'
gem 'rack-cors', require: 'rack/cors'
gem 'jquery-datatables-rails', git: 'git://github.com/rweng/jquery-datatables-rails.git'