-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
72 lines (55 loc) · 1.37 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1.2'
gem 'pg', :group => :production
gem 'puma', '~> 3.7'
gem 'bulk_insert' # bulk inserts
gem 'sass-rails', '~> 5.0'
gem 'roadie' # Styles for emails
gem 'roadie-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'kaminari'
gem 'jbuilder', '~> 2.5'
gem 'redis', '~> 3.0'
gem 'bcrypt', '~> 3.1.11'
gem 'devise'
gem 'simple_token_authentication'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-facebook'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'active_link_to'
gem 'rmagick'
gem 'rtesseract' #OCR
gem 'carrierwave' # attachments
gem 'ruby-units' # measurements and weights
gem 'money-rails' # money
gem 'chronic'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
group :test do
gem 'simplecov'
end
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'faker'
gem 'sqlite3'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'rake-progressbar'
gem 'letter_opener'
end
group :production do
gem "sentry-raven"
gem 'bonsai-elasticsearch-rails'
gem 'newrelic_rpm'
gem 'sidekiq'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
ruby "2.4.1"