-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
83 lines (68 loc) · 1.51 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
source 'http://rubygems.org'
gem 'mysql2', '~> 0.3.13'
gem 'feedjira'
gem 'acts_as_tree'
gem 'mechanize'
gem 'browser'
gem 'roo', '~> 2.0.0'
gem 'roo-xls'
gem "highcharts-rails", "~> 3.0.0"
gem 'jscrollpane-rails'
gem 'dotiw'
gem 'axlsx', '2.1.0.pre'
gem 'axlsx_rails'
gem 'jquery-ui-rails', '~>5.0.5'
gem 'sass', '~>3.4.21'
gem 'ruby-ntlm'
gem 'awesome_nested_set', '3.0.3'
gem 'wash_out'
gem 'vuejs'
gem 'savon'
gem 'airbrake', '~> 5.0'
gem 'unicorn', '5.4.1'
gem 'unicorn-worker-killer'
gem 'resque'
gem 'resque-status'
#gem 'resque_mailer'
gem 'resque-job-stats'
gem 'resque-backtrace', require: false
gem 'redis-objects'
gem 'newrelic_rpm'
gem 'activerecord-import', '0.20.1'
gem 'redis-rails'
group :development do
gem 'awesome_print', '1.7.0'
gem 'puma', ">= 3.12.2"
# gem 'byebug' it's gem needs in ruby > 2.2.0, but on production 2.1.3 v.
gem 'meta_request'
gem 'rb-readline'
gem 'rubocop', '0.74.0'
gem 'rubocop-performance', '1.4.1'
end
group :development, :test do
# debug
# gem 'pry-rails'
# gem 'pry-stack_explorer'
# gem 'pry-doc'
# gem 'pry-byebug', '3.4.3'
# specs
gem 'rspec'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'capybara'
gem 'capybara-screenshot'
gem 'phantomjs'
gem 'poltergeist'
gem 'shoulda-matchers'
gem 'ffaker'
gem 'factory_bot_rails'
gem 'factory_bot'
gem 'rspec-wait'
gem 'bullet'
gem 'rack-mini-profiler'
# For memory profiling
gem 'memory_profiler'
# For call-stack profiling flamegraphs
gem 'flamegraph'
gem 'stackprof'
end