forked from rajanbarmukh/intranet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
115 lines (94 loc) · 2.95 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
source 'http://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
ruby "2.2.4"
gem 'rails', '4.2.0'
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'
# 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'
# 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
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
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'brakeman', :require => false
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: 'git@github.com:joshsoftware/lightair.git', branch: 'engine'
#gem 'light', path: '/home/shweta/project/light_air_engine/lightair'
gem 'screamout', git: 'git@github.com:joshsoftware/screamout.git', branch: 'engine'
gem 'mongoid_rateable', :git => 'git://github.com/PerfectMemory/mongoid_rateable.git'
gem 'feedjira'
gem 'rollbar'
gem 'aws-sdk'