## Environment ``` Bundler 1.16.3 Platforms ruby, x86_64-linux Ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux] Full Path /usr/local/bin/ruby Config Dir /usr/local/etc RubyGems 2.7.7 Gem Home /usr/local/bundle Gem Path User Path /home/deploy/.gem/ruby/2.5.0 Bin Dir /usr/local/bundle/bin Tools Git not installed RVM not installed rbenv not installed chruby not installed ``` ## Bundler Build Metadata ``` Built At 2018-07-17 Git SHA 12e73cab7 Released Version true ``` ## Bundler settings ``` retry Set for your local app (/usr/local/bundle/config): 5 frozen Set for your local app (/usr/local/bundle/config): true jobs Set for your local app (/usr/local/bundle/config): "1" without Set for your local app (/usr/local/bundle/config): [:development, :test] path Set via BUNDLE_PATH: "/usr/local/bundle" app_config Set via BUNDLE_APP_CONFIG: "/usr/local/bundle" gemfile Set via BUNDLE_GEMFILE: "/myapp/Gemfile" silence_root_warning Set via BUNDLE_SILENCE_ROOT_WARNING: true bin_path Set via BUNDLE_BIN_PATH: "/usr/local/lib/ruby/gems/2.5.0/gems/bundler-1.16.3/exe/bundle" ``` ## Gemfile ### Gemfile ```ruby source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '~> 2.5.0' gem 'dotenv-rails', :require => 'dotenv/rails-now' gem 'rails', '~> 5.2.0' gem 'pg' gem 'puma', '~> 3.11' gem 'sass-rails', '~> 5.0' gem 'uglifier', '>= 1.3.0' gem 'coffee-rails', '~> 4.2' gem 'jquery-rails' gem 'turbolinks', '~> 5' gem 'jbuilder', '~> 2.5' gem 'redis-rails', github: 'redis-store/redis-rails' gem 'redis-rack-cache', github: 'redis-store/redis-rack-cache' # Use ActiveModel has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use ActiveStorage variant # gem 'mini_magick', '~> 4.8' # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.1.0', require: false gem 'activeadmin', github: 'activeadmin/activeadmin' gem 'devise' gem 'airbrake', '~> 5.4' gem 'spreadsheet' gem 'writeexcel' gem 'after_party' gem 'bunny' gem 'connection_pool' gem 'omniauth-reportbee', github: 'reportbee/omniauth-reportbee', :tag => '0.1.7' gem 'request_store' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] end group :development do # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' gem 'pry-rails' gem 'pry-stack_explorer' gem 'pry-byebug' gem 'awesome_print' gem 'hirb' gem 'better_errors' gem 'binding_of_caller' # Use Capistrano for deployment gem 'capistrano' gem 'capistrano-bundler' gem 'capistrano-rails' gem 'capistrano3-puma' gem 'codebase4' end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15', '< 4.0' gem 'selenium-webdriver' # Easy installation and use of chromedriver to run system tests with Chrome gem 'chromedriver-helper' end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] ``` ### Gemfile.lock ``` GIT remote: https://github.com/activeadmin/activeadmin.git revision: c301ab126b3fac1962edeac124eb46e885217420 specs: activeadmin (2.0.0.alpha) arbre (>= 1.1.1) formtastic (~> 3.1) formtastic_i18n inherited_resources (>= 1.7.0) jquery-rails (>= 4.2.0) kaminari (>= 1.0.1) railties (>= 4.2, < 5.3) ransack (>= 1.8.7) sass (~> 3.4) sprockets (>= 3.0, < 4.1) sprockets-es6 (>= 0.9.2) GIT remote: https://github.com/redis-store/redis-rack-cache.git revision: 11d11716a463c0432bd264f65960f748f7a03b12 specs: redis-rack-cache (2.1.2) rack-cache (>= 1.6, < 2) redis-store (>= 1.2, < 2) GIT remote: https://github.com/redis-store/redis-rails.git revision: 009eba5acfd92b6173d9eeca3fc61132a1f6eb47 specs: redis-rails (5.0.2) redis-actionpack (>= 3.0, < 6) redis-activesupport (>= 3.0, < 6) GIT remote: https://github.com/reportbee/omniauth-reportbee.git revision: ed4bd8e550a1136509713a334b01525fccf1d830 tag: 0.1.7 specs: omniauth-reportbee (0.1.7) airbrake (~> 5.4) json omniauth-oauth2 (~> 1.5.0) rest-client GEM remote: https://rubygems.org/ specs: actioncable (5.2.1) actionpack (= 5.2.1) nio4r (~> 2.0) websocket-driver (>= 0.6.1) actionmailer (5.2.1) actionpack (= 5.2.1) actionview (= 5.2.1) activejob (= 5.2.1) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 2.0) actionpack (5.2.1) actionview (= 5.2.1) activesupport (= 5.2.1) rack (~> 2.0) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.2) actionview (5.2.1) activesupport (= 5.2.1) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.3) activejob (5.2.1) activesupport (= 5.2.1) globalid (>= 0.3.6) activemodel (5.2.1) activesupport (= 5.2.1) activerecord (5.2.1) activemodel (= 5.2.1) activesupport (= 5.2.1) arel (>= 9.0) activestorage (5.2.1) actionpack (= 5.2.1) activerecord (= 5.2.1) marcel (~> 0.3.1) activesupport (5.2.1) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) tzinfo (~> 1.1) addressable (2.5.2) public_suffix (>= 2.0.2, < 4.0) after_party (1.10.0) airbrake (5.8.1) airbrake-ruby (~> 1.8) airbrake-ruby (1.8.0) airbrussh (1.3.0) sshkit (>= 1.6.1, != 1.7.0) amq-protocol (2.3.0) arbre (1.1.1) activesupport (>= 3.0.0) archive-zip (0.11.0) io-like (~> 0.3.0) arel (9.0.0) awesome_print (1.8.0) babel-source (5.8.35) babel-transpiler (0.7.0) babel-source (>= 4.0, < 6) execjs (~> 2.0) bcrypt (3.1.12) better_errors (2.4.0) coderay (>= 1.0.0) erubi (>= 1.0.0) rack (>= 0.9.0) bindex (0.5.0) binding_of_caller (0.8.0) debug_inspector (>= 0.0.1) bootsnap (1.3.1) msgpack (~> 1.0) builder (3.2.3) bunny (2.11.0) amq-protocol (~> 2.3.0) byebug (10.0.2) capistrano (3.11.0) airbrussh (>= 1.0.0) i18n rake (>= 10.0.0) sshkit (>= 1.9.0) capistrano-bundler (1.3.0) capistrano (~> 3.1) sshkit (~> 1.2) capistrano-rails (1.4.0) capistrano (~> 3.1) capistrano-bundler (~> 1.1) capistrano3-puma (3.1.1) capistrano (~> 3.7) capistrano-bundler puma (~> 3.4) capybara (3.5.1) addressable mini_mime (>= 0.1.3) nokogiri (~> 1.8) rack (>= 1.6.0) rack-test (>= 0.6.3) xpath (~> 3.1) childprocess (0.9.0) ffi (~> 1.0, >= 1.0.11) chromedriver-helper (1.2.0) archive-zip (~> 0.10) nokogiri (~> 1.8) codebase4 (1.0.19) json (>= 1.1.5) coderay (1.1.2) coffee-rails (4.2.2) coffee-script (>= 2.2.0) railties (>= 4.0.0) coffee-script (2.4.1) coffee-script-source execjs coffee-script-source (1.12.2) concurrent-ruby (1.0.5) connection_pool (2.2.2) crass (1.0.4) debug_inspector (0.0.3) devise (4.4.3) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 6.0) responders warden (~> 1.2.3) domain_name (0.5.20180417) unf (>= 0.0.5, < 1.0.0) dotenv (2.5.0) dotenv-rails (2.5.0) dotenv (= 2.5.0) railties (>= 3.2, < 6.0) erubi (1.7.1) execjs (2.7.0) faraday (0.12.2) multipart-post (>= 1.2, < 3) ffi (1.9.25) formtastic (3.1.5) actionpack (>= 3.2.13) formtastic_i18n (0.6.0) globalid (0.4.1) activesupport (>= 4.2.0) has_scope (0.7.2) actionpack (>= 4.1) activesupport (>= 4.1) hashie (3.5.7) hirb (0.7.3) http-cookie (1.0.3) domain_name (~> 0.5) i18n (1.1.0) concurrent-ruby (~> 1.0) inherited_resources (1.9.0) actionpack (>= 4.2, < 5.3) has_scope (~> 0.6) railties (>= 4.2, < 5.3) responders io-like (0.3.0) jbuilder (2.7.0) activesupport (>= 4.2.0) multi_json (>= 1.2) jquery-rails (4.3.3) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) thor (>= 0.14, < 2.0) json (2.1.0) jwt (1.5.6) kaminari (1.1.1) activesupport (>= 4.1.0) kaminari-actionview (= 1.1.1) kaminari-activerecord (= 1.1.1) kaminari-core (= 1.1.1) kaminari-actionview (1.1.1) actionview kaminari-core (= 1.1.1) kaminari-activerecord (1.1.1) activerecord kaminari-core (= 1.1.1) kaminari-core (1.1.1) listen (3.1.5) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) ruby_dep (~> 1.2) loofah (2.2.2) crass (~> 1.0.2) nokogiri (>= 1.5.9) mail (2.7.0) mini_mime (>= 0.1.1) marcel (0.3.2) mimemagic (~> 0.3.2) method_source (0.9.0) mime-types (3.1) mime-types-data (~> 3.2015) mime-types-data (3.2016.0521) mimemagic (0.3.2) mini_mime (1.0.0) mini_portile2 (2.3.0) minitest (5.11.3) msgpack (1.2.4) multi_json (1.13.1) multi_xml (0.6.0) multipart-post (2.0.0) net-scp (1.2.1) net-ssh (>= 2.6.5) net-ssh (5.0.2) netrc (0.11.0) nio4r (2.3.1) nokogiri (1.8.4) mini_portile2 (~> 2.3.0) oauth2 (1.4.0) faraday (>= 0.8, < 0.13) jwt (~> 1.0) multi_json (~> 1.3) multi_xml (~> 0.5) rack (>= 1.2, < 3) omniauth (1.8.1) hashie (>= 3.4.6, < 3.6.0) rack (>= 1.6.2, < 3) omniauth-oauth2 (1.5.0) oauth2 (~> 1.1) omniauth (~> 1.2) orm_adapter (0.5.0) pg (1.0.0) pry (0.11.3) coderay (~> 1.1.0) method_source (~> 0.9.0) pry-byebug (3.6.0) byebug (~> 10.0) pry (~> 0.10) pry-rails (0.3.6) pry (>= 0.10.4) pry-stack_explorer (0.4.9.2) binding_of_caller (>= 0.7) pry (>= 0.9.11) public_suffix (3.0.2) puma (3.12.0) rack (2.0.5) rack-cache (1.8.0) rack (>= 0.4) rack-test (1.1.0) rack (>= 1.0, < 3) rails (5.2.1) actioncable (= 5.2.1) actionmailer (= 5.2.1) actionpack (= 5.2.1) actionview (= 5.2.1) activejob (= 5.2.1) activemodel (= 5.2.1) activerecord (= 5.2.1) activestorage (= 5.2.1) activesupport (= 5.2.1) bundler (>= 1.3.0) railties (= 5.2.1) sprockets-rails (>= 2.0.0) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) rails-html-sanitizer (1.0.4) loofah (~> 2.2, >= 2.2.2) railties (5.2.1) actionpack (= 5.2.1) activesupport (= 5.2.1) method_source rake (>= 0.8.7) thor (>= 0.19.0, < 2.0) rake (12.3.1) ransack (2.0.0) actionpack (>= 5.0) activerecord (>= 5.0) activesupport (>= 5.0) i18n rb-fsevent (0.10.3) rb-inotify (0.9.10) ffi (>= 0.5.0, < 2) redis (4.0.1) redis-actionpack (5.0.2) actionpack (>= 4.0, < 6) redis-rack (>= 1, < 3) redis-store (>= 1.1.0, < 2) redis-activesupport (5.0.7) activesupport (>= 3, < 6) redis-store (>= 1.3, < 2) redis-rack (2.0.4) rack (>= 1.5, < 3) redis-store (>= 1.2, < 2) redis-store (1.5.0) redis (>= 2.2, < 5) request_store (1.4.1) rack (>= 1.4) responders (2.4.0) actionpack (>= 4.2.0, < 5.3) railties (>= 4.2.0, < 5.3) rest-client (2.0.2) http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 4.0) netrc (~> 0.8) ruby-ole (1.2.12.1) ruby_dep (1.5.0) rubyzip (1.2.1) sass (3.5.7) sass-listen (~> 4.0.0) sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) sass-rails (5.0.7) railties (>= 4.0.0, < 6) sass (~> 3.1) sprockets (>= 2.8, < 4.0) sprockets-rails (>= 2.0, < 4.0) tilt (>= 1.1, < 3) selenium-webdriver (3.14.0) childprocess (~> 0.5) rubyzip (~> 1.2) spreadsheet (1.1.7) ruby-ole (>= 1.0) spring (2.0.2) activesupport (>= 4.2) spring-watcher-listen (2.0.1) listen (>= 2.7, < 4.0) spring (>= 1.2, < 3.0) sprockets (3.7.2) concurrent-ruby (~> 1.0) rack (> 1, < 3) sprockets-es6 (0.9.2) babel-source (>= 5.8.11) babel-transpiler sprockets (>= 3.0.0) sprockets-rails (3.2.1) actionpack (>= 4.0) activesupport (>= 4.0) sprockets (>= 3.0.0) sshkit (1.17.0) net-scp (>= 1.1.2) net-ssh (>= 2.8.0) thor (0.20.0) thread_safe (0.3.6) tilt (2.0.8) turbolinks (5.1.1) turbolinks-source (~> 5.1) turbolinks-source (5.1.0) tzinfo (1.2.5) thread_safe (~> 0.1) uglifier (4.1.18) execjs (>= 0.3.0, < 3) unf (0.1.4) unf_ext unf_ext (0.0.7.5) warden (1.2.7) rack (>= 1.0) web-console (3.6.2) actionview (>= 5.0) activemodel (>= 5.0) bindex (>= 0.4.0) railties (>= 5.0) websocket-driver (0.7.0) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.3) writeexcel (1.0.5) xpath (3.1.0) nokogiri (~> 1.8) PLATFORMS ruby DEPENDENCIES activeadmin! after_party airbrake (~> 5.4) awesome_print better_errors binding_of_caller bootsnap (>= 1.1.0) bunny byebug capistrano capistrano-bundler capistrano-rails capistrano3-puma capybara (>= 2.15, < 4.0) chromedriver-helper codebase4 coffee-rails (~> 4.2) connection_pool devise dotenv-rails hirb jbuilder (~> 2.5) jquery-rails listen (>= 3.0.5, < 3.2) omniauth-reportbee! pg pry-byebug pry-rails pry-stack_explorer puma (~> 3.11) rails (~> 5.2.0) redis-rack-cache! redis-rails! request_store sass-rails (~> 5.0) selenium-webdriver spreadsheet spring spring-watcher-listen (~> 2.0.0) turbolinks (~> 5) tzinfo-data uglifier (>= 1.3.0) web-console (>= 3.3.0) writeexcel RUBY VERSION ruby 2.5.1p57 BUNDLED WITH 1.16.2 ```