-
Notifications
You must be signed in to change notification settings - Fork 129
/
Copy pathGemfile
113 lines (90 loc) · 2.11 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
source 'https://rubygems.org'
ruby '2.5.5'
gem 'rails'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'jbuilder'
gem 'devise', git: 'https://github.com/plataformatec/devise.git', branch: '3-stable'
gem 'rabl'
gem 'builder'
gem 'haml-rails'
gem 'figaro'
gem 'unicorn', '4.9.0'
gem 'xmldsig'
gem 'spreadsheet'
gem 'peddler'
group :doc do
gem 'sdoc', require: false
end
group :development, :test do
gem 'factory_girl_rails'
gem 'rspec-rails'
gem 'rails_layout'
gem 'ffaker'
gem 'rubocop', require: false
gem 'pry-rails'
gem 'pry-byebug'
gem 'pry-doc'
end
group :test do
gem 'mongoid-rspec'
gem 'database_cleaner'
gem 'capybara'
gem 'poltergeist'
end
group :production do
gem 'thin'
gem 'rails_12factor'
end
gem 'mongoid'
gem 'bson_ext'
gem 'rails_admin', '~> 1.1.1'
gem 'httparty'
gem 'bunny', '~> 2.6'
gem 'json-schema'
gem 'nokogiri'
gem 'cancan'
gem 'rolify'
gem 'rufus-scheduler'
gem 'rubyzip'
gem 'carrierwave-mongoid'
gem 'mini_magick'
gem 'liquid'
gem 'codemirror-rails'
gem 'wannabe_bool'
gem 'parser'
gem 'oauth'
gem 'bootstrap-wysihtml5-rails', '> 0.3.1.24'
gem 'captcha'
gem "recaptcha", require: "recaptcha/rails"
gem 'httmultiparty'
gem 'oauth2'
gem 'exception_notification'
gem 'mime'
gem 'deface'
gem 'cross_origin', git: 'https://github.com/macarci/cross_origin.git'
gem 'lodash-rails'
gem 'identicon'
gem 'language_sniffer'
gem 'cenit-config', git: 'https://github.com/cenit-io/cenit-config.git'
gem 'cenit-multi_tenancy', git: 'https://github.com/cenit-io/cenit-multi_tenancy.git'
gem 'cenit-token', git: 'https://github.com/cenit-io/cenit-token.git'
gem 'cenit-service', git: 'https://github.com/cenit-io/cenit-service.git'
gem 'capataz', git: 'https://github.com/macarci/capataz.git'
gem 'rkelly-remix'
gem 'write_xlsx'
gem 'handlebars'
gem 'aws-sdk', '~> 2.10.13'
gem 'net-scp'
gem 'net-sftp'
gem 'mongoid-tracer', git: 'https://github.com/macarci/mongoid-tracer.git'
gem 'diffy'
gem 'combine_pdf', '1.0.4'
gem 'redis'
custom_gemfile_name = 'custom_Gemfile'
if File.exist?(custom_gemfile_name)
instance_eval File.read(custom_gemfile_name)
end