Skip to content

Instantly share code, notes, and snippets.

@wellington1993
Created March 10, 2016 21:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wellington1993/cc7837e488df4c0e7ebd to your computer and use it in GitHub Desktop.
Save wellington1993/cc7837e488df4c0e7ebd to your computer and use it in GitHub Desktop.
Problem at deploy: "Could not find 'activesupport'" and "Unable to load application: Gem::LoadError" and "Could not find 'activesupport' among 736 total gem(s) (Gem::LoadError)"
# On branch master
# Your branch and 'origin/master' have diverged,
# and have 3 and 88 different commits each, respectively.
# (use "git pull" to merge the remote branch into yours)
#
# You have unmerged paths.
# (fix conflicts and run "git commit")
#
# Changes to be committed:
#
# modified: .gitignore
# modified: Gemfile
# new file: Procfile
# modified: Rakefile
# modified: app/assets/javascripts/DeleteCtrl.coffee
# modified: app/assets/javascripts/application.js
# modified: app/assets/javascripts/bottom.js
# modified: app/assets/stylesheets/application.scss
# modified: app/assets/stylesheets/estilo.scss.erb
# modified: app/controllers/account_max_sizes_controller.rb
# modified: app/controllers/accounts_controller.rb
# modified: app/controllers/admin_companies_base_controller.rb
# modified: app/controllers/admins_controller.rb
# modified: app/controllers/aliases_controller.rb
# modified: app/controllers/application_controller.rb
# modified: app/controllers/companies_base_controller.rb
# modified: app/controllers/companies_controller.rb
# modified: app/controllers/domains_controller.rb
# modified: app/controllers/forwards_controller.rb
# modified: app/controllers/home_controller.rb
# new file: app/controllers/login_controller.rb
# modified: app/controllers/logout_controller.rb
# modified: app/controllers/servers_controller.rb
# modified: app/models/admin.rb
# modified: app/models/admin_company.rb
# modified: app/models/company.rb
# modified: app/views/accounts/_search.html.slim
# new file: app/views/accounts/pdf.html.slim
# modified: app/views/companies/index.html.slim
# modified: app/views/devise/mailer/reset_password_instructions.html.erb
# modified: app/views/devise/passwords/edit.html.erb
# modified: app/views/devise/passwords/new.html.erb
# modified: app/views/devise/sessions/new.html.erb
# modified: app/views/devise/shared/_links.html.erb
# modified: app/views/domains/_search.html.slim
# modified: app/views/domains/index.html.slim
# modified: app/views/home/index.html.slim
# modified: app/views/layouts/_navbar_right.html.slim
# new file: app/views/layouts/_navbar_vertical.html.slim
# modified: app/views/layouts/application.html.erb
# new file: app/views/layouts/pdf.html.erb
# new file: app/views/login/index.html.slim
# modified: app/views/logout/index.html.slim
# modified: config/application.rb
# new file: config/assets.yml
# modified: config/boot.rb
# modified: config/initializers/devise.rb
# new file: config/initializers/mail.rb
# modified: config/initializers/mime_types.rb
# new file: config/initializers/pdfkit.rb
# new file: config/initializers/simple_form.rb
# new file: config/initializers/wkhtmltopdf.rb
# modified: config/locales/pt-BR.yml
# modified: config/routes.rb
# modified: doc/a-fazer.md
# modified: doc/commands-tips.md
# new file: doc/controllers_brief.svg
# new file: doc/controllers_complete.svg
# modified: doc/erd.pdf
# new file: doc/language-tips.md
# new file: doc/models_brief.svg
# new file: doc/models_complete.svg
# new file: doc/pendencias-war.txt
# new file: doc/tuoriais/high-performance-javascript-2011-110918100745-phpapp02.pptx
# new file: doc/zsh-tips.md
# new file: gemfiles/asset_hat.rb
# modified: gemfiles/bootstrap-sass.rb
# new file: gemfiles/bootstrap-select-rails.rb
# new file: gemfiles/cache-digests.rb
# new file: gemfiles/chartkick.rb
# new file: gemfiles/cocoapods.rb
# new file: gemfiles/css_splitter.rb
# new file: gemfiles/foreman.rb
# new file: gemfiles/gimli.rb
# new file: gemfiles/git-time-extractor.rb
# new file: gemfiles/github-markup.rb
# new file: gemfiles/goldiloader.rb
# new file: gemfiles/gollum.rb
# new file: gemfiles/half-pipe.rb
# new file: gemfiles/imgkit.rb
# new file: gemfiles/jammit.rb
# new file: gemfiles/js-routes.rb
# new file: gemfiles/mail.rb
# new file: gemfiles/mongrel.rb
# new file: gemfiles/mousetrap-rails.rb
# new file: gemfiles/normalize-rails.rb
# new file: gemfiles/passenger.rb
# modified: gemfiles/pdf.rb
# new file: gemfiles/pdfkit.rb
# new file: gemfiles/pg.rb
# new file: gemfiles/prawn.rb
# modified: gemfiles/puma.rb
# new file: gemfiles/queue_classic.rb
# new file: gemfiles/raakt.rb
# new file: gemfiles/rails-cache-extended.rb
# new file: gemfiles/rails-translate-routes.rb
# new file: gemfiles/record-cache.rb
# new file: gemfiles/routes.rb
# new file: gemfiles/ruby-zimbra.rb
# new file: gemfiles/seed-fu.rb
# new file: gemfiles/select2-sass-bootstrap-rails.rb
# new file: gemfiles/sextant.rb
# modified: gemfiles/smart-listing.rb
# new file: gemfiles/stickler.rb
# new file: gemfiles/textile2pdf.rb
# new file: gemfiles/time-lord.rb
# new file: gemfiles/to_pdf.rb
# new file: gemfiles/waiable.rb
# modified: gemfiles/warbler.rb
# modified: gemfiles/webservers.rb
# new file: gemfiles/wkhtmltoimage-binary.rb
# new file: gemfiles/wkhtmltopdf-binary.rb
Web Console is activated in the test environment, which is
usually a mistake. To ensure it's only activated in development
mode, move it to the development group of your Gemfile:
gem 'web-console', group: :development
If you still want to run it the test environment (and know
what you are doing), put this in your Rails application
configuration:
config.web_console.development_only = false
Looks like your app's ./bin/rails is a stub that was generated by Bundler.
In Rails 4, your app's bin/ directory contains executables that are versioned
like any other source code, rather than stubs that are generated on demand.
Here's how to upgrade:
bundle config --delete bin # Turn off Bundler's stub generator
rake rails:update:bin # Use the new Rails 4 executables
git add bin # Add bin/ to source control
You may need to remove bin/ from your .gitignore as well.
When you install a gem whose executable you want to use in your app,
generate it and add it to source control:
bundle binstubs some-gem-name
git add bin/new-executable
WARN: Unresolved specs during Gem::Specification.reset:
json (>= 1.7.7, ~> 1.7)
minitest (~> 5.1)
rack (>= 1.0, ~> 1.6)
loofah (~> 2.0)
rails-dom-testing (>= 1.0.5, ~> 1.0)
thor (< 2.0, >= 0.18.1)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
/home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:34:in `block in setup': You have already activated rake 10.4.2, but your Gemfile requires rake 10.5.0. Prepending `bundle exec` to your command may solve this. (Gem::LoadError)
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:19:in `setup'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler.rb:92:in `setup'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/setup.rb:8:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:126:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:126:in `rescue in require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:39:in `require'
from /var/www/html/zadmin/config/boot.rb:3:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:119:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:119:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/app_rails_loader.rb:44:in `block in exec_app_rails'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/app_rails_loader.rb:34:in `loop'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/app_rails_loader.rb:34:in `exec_app_rails'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/cli.rb:5:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:67:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:67:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/bin/rails:9:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/bin/rails:23:in `load'
from /home/rails/.rbenv/versions/2.2.1/bin/rails:23:in `<main>'
rake aborted!
Gem::LoadError: You have already activated rake 10.4.2, but your Gemfile requires rake 10.5.0. Prepending `bundle exec` to your command may solve this.
/var/www/html/zadmin/config/boot.rb:3:in `<top (required)>'
/var/www/html/zadmin/config/application.rb:1:in `<top (required)>'
/var/www/html/zadmin/Rakefile:6:in `<top (required)>'
LoadError: cannot load such file -- bundler/setup
/var/www/html/zadmin/config/boot.rb:3:in `<top (required)>'
/var/www/html/zadmin/config/application.rb:1:in `<top (required)>'
/var/www/html/zadmin/Rakefile:6:in `<top (required)>'
(See full trace by running task with --trace)
Looks like your app's ./bin/rails is a stub that was generated by Bundler.
In Rails 4, your app's bin/ directory contains executables that are versioned
like any other source code, rather than stubs that are generated on demand.
Here's how to upgrade:
bundle config --delete bin # Turn off Bundler's stub generator
rake rails:update:bin # Use the new Rails 4 executables
git add bin # Add bin/ to source control
You may need to remove bin/ from your .gitignore as well.
When you install a gem whose executable you want to use in your app,
generate it and add it to source control:
bundle binstubs some-gem-name
git add bin/new-executable
WARN: Unresolved specs during Gem::Specification.reset:
json (>= 1.7.7, ~> 1.7)
minitest (~> 5.1)
rack (>= 1.0, ~> 1.6)
loofah (~> 2.0)
rails-dom-testing (>= 1.0.5, ~> 1.0)
thor (< 2.0, >= 0.18.1)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
/home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:34:in `block in setup': You have already activated rake 10.4.2, but your Gemfile requires rake 10.5.0. Prepending `bundle exec` to your command may solve this. (Gem::LoadError)
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:19:in `setup'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler.rb:92:in `setup'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/setup.rb:8:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:126:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:126:in `rescue in require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:39:in `require'
from /var/www/html/zadmin/config/boot.rb:3:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:119:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:119:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/app_rails_loader.rb:44:in `block in exec_app_rails'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/app_rails_loader.rb:34:in `loop'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/app_rails_loader.rb:34:in `exec_app_rails'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/lib/rails/cli.rb:5:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:67:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_require.rb:67:in `require'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/railties-4.2.1/bin/rails:9:in `<top (required)>'
from /home/rails/.rbenv/versions/2.2.1/bin/rails:23:in `load'
from /home/rails/.rbenv/versions/2.2.1/bin/rails:23:in `<main>'
Select gem to uninstall:
1. activesupport-3.2.21
2. activesupport-4.2.0
3. activesupport-4.2.1
4. All versions
> 4
You have requested to uninstall the gem:
activesupport-3.2.21
activemodel-3.2.21 depends on activesupport (= 3.2.21)
activerecord-3.2.21 depends on activesupport (= 3.2.21)
god-0.13.7 depends on activesupport (< 4.0.0, >= 2.3.10, development)
god-0.13.6 depends on activesupport (< 4.0.0, >= 2.3.10, development)
If you remove this gem, these dependencies will not be met.
Continue with Uninstall? [yN] y
Successfully uninstalled activesupport-3.2.21
You have requested to uninstall the gem:
activesupport-4.2.0
actionpack-4.2.0 depends on activesupport (= 4.2.0)
actionview-4.2.0 depends on activesupport (= 4.2.0)
activejob-4.2.0 depends on activesupport (= 4.2.0)
activemodel-4.2.0 depends on activesupport (= 4.2.0)
activerecord-4.2.0 depends on activesupport (= 4.2.0)
rails-4.2.0 depends on activesupport (= 4.2.0)
railties-4.2.0 depends on activesupport (= 4.2.0)
If you remove this gem, these dependencies will not be met.
Continue with Uninstall? [yN] y
Successfully uninstalled activesupport-4.2.0
You have requested to uninstall the gem:
activesupport-4.2.1
actionpack-4.2.1 depends on activesupport (= 4.2.1)
actionview-4.2.1 depends on activesupport (= 4.2.1)
active_hash-1.4.1 depends on activesupport (>= 2.2.2)
active_hash-1.4.0 depends on activesupport (>= 2.2.2)
activejob-4.2.1 depends on activesupport (= 4.2.1)
activemodel-4.2.1 depends on activesupport (= 4.2.1)
activerecord-4.2.1 depends on activesupport (= 4.2.1)
bootstrap-sass-3.3.6 depends on activesupport (>= 4.1.5, development)
bootstrap-sass-3.3.5.1 depends on activesupport (>= 4.1.5, development)
bootstrap-sass-3.3.4.1 depends on activesupport (>= 4.1.5, development)
bullet-4.14.10 depends on activesupport (>= 3.0.0)
bullet-4.14.7 depends on activesupport (>= 3.0.0)
bullet-4.14.6 depends on activesupport (>= 3.0.0)
bullet-4.14.5 depends on activesupport (>= 3.0.0)
bullet-4.14.4 depends on activesupport (>= 3.0.0)
chronic-0.10.2 depends on activesupport (>= 0, development)
climate_control-0.0.3 depends on activesupport (>= 3.0)
cocaine-0.5.8 depends on activesupport (< 5.0, >= 3.0.0, development)
cocaine-0.5.7 depends on activesupport (< 5.0, >= 3.0.0, development)
delayed_job-4.1.1 depends on activesupport (< 5.0, >= 3.0)
delayed_job-4.0.6 depends on activesupport (< 5.0, >= 3.0)
excon-0.45.3 depends on activesupport (>= 0, development)
excon-0.44.4 depends on activesupport (>= 0, development)
excon-0.17.0 depends on activesupport (>= 0, development)
font-awesome-rails-4.5.0.0 depends on activesupport (>= 0, development)
font-awesome-rails-4.4.0.0 depends on activesupport (>= 0, development)
font-awesome-rails-4.3.0.0 depends on activesupport (>= 0, development)
globalid-0.3.6 depends on activesupport (>= 4.1.0)
globalid-0.3.5 depends on activesupport (>= 4.1.0)
globalid-0.3.3 depends on activesupport (>= 4.1.0)
hakiri-0.7.2 depends on activesupport (>= 0)
health_monitor-0.1.4 depends on activesupport (>= 2.1)
jbuilder-2.4.0 depends on activesupport (< 5.1, >= 3.0.0)
jbuilder-2.3.2 depends on activesupport (< 5, >= 3.0.0)
jbuilder-2.2.16 depends on activesupport (< 5, >= 3.0.0)
jbuilder-2.2.13 depends on activesupport (< 5, >= 3.0.0)
jbuilder-2.2.12 depends on activesupport (< 5, >= 3.0.0)
kaminari-0.16.3 depends on activesupport (>= 3.0.0)
lograge-0.3.5 depends on activesupport (>= 3)
mailcatcher-0.6.2 depends on activesupport (< 5, >= 4.0.0)
money-rails-1.4.1 depends on activesupport (>= 3.0)
paper_trail-4.0.1 depends on activesupport (< 6.0, >= 3.0)
paper_trail-4.0.0 depends on activesupport (< 6.0, >= 3.0)
paper_trail-4.0.0.rc1 depends on activesupport (< 6.0, >= 3.0)
paper_trail-4.0.0.beta2 depends on activesupport (< 6.0, >= 3.0)
paper_trail-3.0.8 depends on activesupport (< 5.0, >= 3.0)
paper_trail-3.0.7 depends on activesupport (< 5.0, >= 3.0)
paperclip-4.3.2 depends on activesupport (>= 3.2.0)
paperclip-4.3.1 depends on activesupport (>= 3.2.0)
paperclip-4.2.1 depends on activesupport (>= 3.0.0)
pdfkit-0.8.2 depends on activesupport (>= 3.0.8, development)
pdfkit-0.7.0 depends on activesupport (>= 3.0.8, development)
rack-attack-4.3.1 depends on activesupport (>= 3.0.0, development)
rack-attack-4.3.0 depends on activesupport (>= 3.0.0, development)
rack-attack-4.2.0 depends on activesupport (>= 3.0.0, development)
railroady-1.4.2 depends on activesupport (>= 0, development)
railroady-1.4.0 depends on activesupport (>= 0, development)
railroady-1.3.1 depends on activesupport (>= 0, development)
rails-4.2.1 depends on activesupport (= 4.2.1)
rails-deprecated_sanitizer-1.0.3 depends on activesupport (>= 4.2.0.alpha)
rails-dom-testing-1.0.7 depends on activesupport (< 5.0, >= 4.2.0.beta)
rails-dom-testing-1.0.6 depends on activesupport (< 5.0, >= 4.2.0.beta)
rails-erd-1.4.4 depends on activesupport (>= 3.2)
rails-timeago-2.13.0 depends on activesupport (>= 3.1)
rails-timeago-2.12.0 depends on activesupport (>= 3.1)
rails-timeago-2.11.1 depends on activesupport (>= 3.1)
rails_best_practices-1.15.7 depends on activesupport (>= 0)
railties-4.2.1 depends on activesupport (= 4.2.1)
ransack-1.7.0 depends on activesupport (>= 3.0)
ransack-1.6.6 depends on activesupport (>= 3.0)
ransack-1.6.5 depends on activesupport (>= 3.0)
ransack-1.6.4 depends on activesupport (>= 3.0)
reek-3.8.1 depends on activesupport (~> 4.2, development)
reek-2.2.1 depends on activesupport (~> 4.2, development)
rsolr-1.0.13 depends on activesupport (>= 0, development)
rspec-rails-3.4.0 depends on activesupport (< 4.3, >= 3.0)
seed_dump-3.2.4 depends on activesupport (>= 4)
seed_dump-3.2.2 depends on activesupport (~> 4)
simple-navigation-3.14.0 depends on activesupport (>= 2.3.2)
slim-rails-3.0.1 depends on activesupport (< 5.0, >= 3.1)
spring-1.6.1 depends on activesupport (~> 4.2.0, development)
spring-1.3.6 depends on activesupport (~> 4.2.0, development)
sprockets-rails-3.0.0 depends on activesupport (>= 4.0)
sprockets-rails-2.3.1 depends on activesupport (>= 3.0)
umlify-1.2.6 depends on activesupport (>= 0)
utf8-cleaner-0.2.1 depends on activesupport (>= 0)
If you remove this gem, these dependencies will not be met.
Continue with Uninstall? [yN] y
Successfully uninstalled activesupport-4.2.1
/home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/dependency.rb:318:in `to_specs': Could not find 'activesupport' (= 4.2.1) among 736 total gem(s) (Gem::LoadError)
Checked in 'GEM_PATH=/home/rails/.gem/ruby/2.2.0:/home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0', execute `gem env` for more information
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb:1437:in `block in activate_dependencies'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb:1426:in `each'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb:1426:in `activate_dependencies'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/specification.rb:1408:in `activate'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb:67:in `block in gem'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb:66:in `synchronize'
from /home/rails/.rbenv/versions/2.2.1/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb:66:in `gem'
from /home/rails/.rbenv/versions/2.2.1/bin/rails:22:in `<main>'
RubyGems Environment:
- RUBYGEMS VERSION: 2.5.1
- RUBY VERSION: 2.2.1 (2015-02-26 patchlevel 85) [x86_64-linux]
- INSTALLATION DIRECTORY: /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0
- USER INSTALLATION DIRECTORY: /home/rails/.gem/ruby/2.2.0
- RUBY EXECUTABLE: /home/rails/.rbenv/versions/2.2.1/bin/ruby
- EXECUTABLE DIRECTORY: /home/rails/.rbenv/versions/2.2.1/bin
- SPEC CACHE DIRECTORY: /home/rails/.gem/specs
- SYSTEM CONFIGURATION DIRECTORY: /home/rails/.rbenv/versions/2.2.1/etc
- RUBYGEMS PLATFORMS:
- ruby
- x86_64-linux
- GEM PATHS:
- /home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0
- /home/rails/.gem/ruby/2.2.0
- GEM CONFIGURATION:
- :update_sources => true
- :verbose => true
- :backtrace => false
- :bulk_threshold => 1000
- REMOTE SOURCES:
- https://rubygems.org/
- SHELL PATH:
- /home/rails/.rbenv/versions/2.2.1/bin
- /home/rails/.rbenv/libexec
- /home/rails/.rbenv/plugins/ruby-build/bin
- /home/rails/.rbenv/shims
- /home/rails/.rbenv/bin
- /home/rails/.rbenv/shims
- /home/rails/.rbenv/bin
- /usr/local/bin
- /bin
- /usr/bin
- /usr/local/sbin
- /usr/sbin
- /home/rails/.local/bin
- /home/rails/bin
Unknown switches '--no-development'
Using rake 10.5.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.4
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.0.0
Using rack 1.6.4
Using mime-types 2.99.1
Using addressable 2.3.8
Using htmlentities 4.3.4
Using arel 6.0.3
Using rubyzip 1.0.0
Using alertify-rails 0.2.0
Using amq-protocol 2.0.1
Using robotex 1.0.0
Using angular-ui-bootstrap-rails 0.14.3
Using archive-tar-minitar 0.5.2
Using execjs 2.6.0
Using awesome_print 1.6.1
Using bundler 1.11.2
Using thor 0.19.1
Using concurrent-ruby 1.0.1
Using open4 1.3.4
Using bcrypt 3.1.10
Using coderay 1.1.1
Using debug_inspector 0.0.2
Using sass 3.4.21
Using bootstrap_flash_messages 1.0.2
Using bower-rails 0.10.0
Using tilt 2.0.2
Using highline 1.7.8
Using sexp_processor 4.7.0
Using safe_yaml 1.0.4
Using temple 0.7.6
Using terminal-table 1.5.2
Using breadcrumbs_on_rails 2.3.1
Using browser 2.0.2
Using uniform_notifier 1.9.0
Using byebug 8.2.2
Using callsite 0.0.11
Using cancancan 1.13.1
Using choice 0.2.0
Using chronic 0.10.2
Using cocoon 1.2.8
Using coffee-script-source 1.10.0
Using connection_pool 2.2.0
Using coordinate-converter 0.1.0
Using daemon-spawn 0.4.2
Using daemons 1.2.3
Using dalli 2.7.6
Using device_detector 0.8.2
Using orm_adapter 0.5.0
Using devise-i18n 0.12.1
Using diffy 3.1.0
Using unf_ext 0.0.7.2
Using dotenv 2.1.0
Using progress 3.1.1
Using exif 1.0.1
Using exifr 1.2.4
Using fast_xs 0.8.0
Using fastercsv 1.5.5
Using filesize 0.1.1
Using forgery 0.6.0
Using fspath 2.1.1
Using geocoder 1.3.1
Using geoutm 1.0.2
Using git-version-bump 0.15.1
Using gmaps4rails 2.1.2
Using gritter 1.2.0
Using netrc 0.11.0
Using image_size 1.4.2
Using in_threads 1.3.1
Using interception 0.5
Using multi_json 1.11.2
Using libv8 3.16.14.13
Using localstorageshim-rails 1.0.2
Using systemu 2.6.5
Using manifesto 0.7.0
Using net-http-digest_auth 1.4
Using net-http-persistent 2.9.4
Using ntlm-http 0.1.1
Using webrobots 0.1.2
Using memcache-client 1.8.5
Using memcached 1.8.0
Using memcachier 0.0.2
Using method_source 0.8.2
Using mimemagic 0.3.0
Using mini_exiftool 2.5.1
Using mini_magick 4.4.0
Using sixarm_ruby_unaccent 1.1.1
Using mousetrap-rails 1.4.6
Using multi_fetch_fragments 0.0.17
Using mysql2 0.3.20
Using nori 2.6.0
Using nprogress-rails 0.1.6.7
Using request_store 1.3.0
Using parallel 1.6.2
Using slop 3.6.0
Using puma 2.15.3
Using rack-offline 0.6.4
Using rack-ssl-enforcer 0.2.9
Using ruby-graphviz 1.2.2
Using redcarpet 3.3.4
Using redis 3.2.2
Using ref 2.0.0
Using remotipart 1.2.1
Using request-log-analyzer 1.13.4
Using role_model 0.8.2
Using rolify 5.0.0
Using ruby-ole 1.2.12
Using ruby-prof 0.15.9
Using ruby_gntp 0.3.4
Using smarter_csv 1.1.0
Using spring 1.6.4
Using sqlite3 1.3.11
Using underscore-rails 1.8.3
Using rdoc 4.2.2
Using tzinfo 1.2.2
Using gyoku 1.3.1
Using nokogiri 1.6.7.2
Using rack-test 0.6.3
Using warden 1.2.6
Using httpi 2.4.1
Using rack-attack 4.4.1
Using rack-cache 1.6.1
Using mail 2.6.3
Using css_parser 1.3.7
Using fastimage 1.9.0
Using bunny 2.3.0
Using autoprefixer-rails 6.3.3.1
Using uglifier 2.7.2
Using bundler-audit 0.5.0
Using sprockets 3.5.2
Using backup 3.4.0
Using bcrypt-ruby 3.1.5
Using better_errors 2.1.1
Using binding_of_caller 0.7.2
Using font-awesome-sass 4.5.0
Using haml 4.0.7
Using commander 4.4.0
Using ruby_parser 3.8.1
Using slim 3.0.6
Using rails4_upgrade 0.5.0
Using debugger-xml 0.4.1
Using whenever 0.9.4
Using coffee-script 2.4.1
Using unf 0.1.4
Using dump 1.1.0
Using simple_xlsx_writer 0.5.3
Using rack-contrib 1.4.0
Using image_optim 0.22.1
Using macaddr 1.7.1
Using money 6.7.0
Using pry 0.10.3
Using sidekiq 4.1.0
Using therubyracer 0.12.2
Using spreadsheet 1.1.1
Using sdoc 0.4.1
Using activesupport 4.2.0
Using loofah 2.0.3
Using axlsx 2.0.1
Using akami 1.3.1
Using anemone 0.7.2
Using wasabi 3.5.0
Using premailer 1.7.9
Using bootstrap-sass 3.3.6
Using ruby2ruby 2.3.0
Using domain_name 0.5.20160216
Using image_optim_pack 0.2.1.20160221
Using uuid 2.3.8
Using monetize 1.4.0
Using pry-rescue 1.4.2
Using pry-stack_explorer 0.4.9.2
Using roo 1.13.2
Using rails-deprecated_sanitizer 1.0.3
Using globalid 0.3.6
Using active_hash 1.4.1
Using activemodel 4.2.0
Using bullet 5.0.0
Using climate_control 0.0.3
Using delayed_job 4.1.1
Using jbuilder 2.4.1
Using simple-navigation 3.14.0
Using utf8-cleaner 0.2.1
Using rails-html-sanitizer 1.0.3
Using savon 2.11.1
Using brakeman 3.2.1
Using http-cookie 1.0.2
Using ruby-growl 4.1
Using rails-dom-testing 1.0.7
Using activejob 4.2.0
Using activerecord 4.2.0
Using strip_attributes 1.7.1
Using validates_cpf_cnpj 0.2.0
Using validates_formatting_of 0.9.0
Using cocaine 0.5.8
Using simple_navigation_renderers 1.0.2
Using rest-client 1.8.0
Using mechanize 2.7.4
Using actionview 4.2.0
Using acts_as_xlsx 1.0.6
Using annotate 2.7.0
Using delayed_job_active_record 4.1.0
Using goldiloader 0.0.10
Using habtm_generator 0.5
Using paper_trail 4.0.2
Using persistize 0.2.0
Using polyamorous 1.3.0
Using rails-erd 1.4.6
Using seed_dump 3.2.4
Using paperclip 4.3.5
Using hakiri 0.7.2
Using actionpack 4.2.0
Using paperclip-meta 2.0.0
Using paperclip-optimizer 2.0.0
Using xls_to_csv-paperclip-processor 0.4.5
Using actionmailer 4.2.0
Using actionpack-action_caching 1.1.1
Using actionpack-page_caching 1.0.2
Using active_link_to 1.0.3
Using railties 4.2.0
Using sprockets-rails 3.0.4
Using kaminari 0.16.3
Using rails-timeago 2.13.0
Using ransack 1.7.0
Using simple_form 3.2.1
Using actionmailer_inline_css 1.5.3
Using bootstrap-datepicker-rails 1.6.0.pre.alpha from git://github.com/Nerian/bootstrap-datepicker-rails.git (at master@ec4b9e9)
Using bootstrap-modal-rails 2.2.5
Using coffee-rails 4.1.1
Using responders 2.1.1
Using dotenv-rails 2.1.0
Using font-awesome-rails 4.5.0.1
Using garlicjs-rails 1.2.2
Using historyjs-rails 1.0.1
Using jquery-cookie-rails 1.3.1.1
Using jquery-rails 4.1.0
Using jquery-ui-rails 5.0.5
Using meta_request 0.4.0
Using money-rails 1.6.0
Using multi-select-rails 0.9.12
Using public_activity 1.4.3
Using rails-i18n 4.0.8
Using slim-rails 3.0.1
Using toastr-rails 1.0.3
Using rails 4.2.0
Using sass-rails 5.0.4
Using simple_form_bootstrap3 0.3.6
Using turbolinks 2.5.3
Using devise 3.4.1
Using axlsx_rails 0.4.0
Using dropzonejs-rails 0.7.3
Using kaminari-bootstrap 3.0.1
Using kaminari-i18n 0.3.2
Using sextant 0.2.4
Using traceroute 0.5.0
Using yaml_db 0.3.0
Using jquery-turbolinks 2.1.0
Using turboboost 0.1.0
Bundle complete! 154 Gemfile dependencies, 261 gems now installed.
Bundled gems are installed into ./vendor.
[rails@web2 manager]$
[rails@web2 manager]$
[rails@web2 manager]$ cd ..
[rails@web2 html]$ cd zadmin/
[rails@web2 zadmin]$ bundle install
Fetching git://github.com/kugaevsky/mousetrap-rails.git
Fetching gem metadata from http://rails-assets.org/...
Fetching version metadata from http://rails-assets.org/..
Fetching gem metadata from http://rails-assets.org/...
Fetching gem metadata from http://rubygems.org/.......
Fetching version metadata from http://rails-assets.org/..
Fetching version metadata from http://rubygems.org/...
Fetching dependency metadata from http://rails-assets.org/..
Fetching dependency metadata from http://rubygems.org/..
Resolving dependencies.................................................................................................................................
Using rake 10.5.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.3
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.0.0
Using rack 1.6.4
Using mime-types 2.99
Using arel 6.0.3
Using htmlentities 4.3.4
Using rubyzip 1.0.0
Using addressable 2.4.0
Installing posix-spawn 0.3.11 with native extensions
Using alertify-rails 0.2.0
Using angularjs-rails 1.4.8
Using ansi 1.5.0
Installing cssmin 1.0.3
Installing jsmin 1.0.1
Using ast 2.2.0
Using execjs 2.6.0
Using bundler 1.11.2
Using thor 0.19.1
Using concurrent-ruby 1.0.0
Using open4 1.3.4
Using backup-rails 1.0.3
Using bcrypt 3.1.10
Using coderay 1.1.0
Using debug_inspector 0.0.2
Using sass 3.4.21
Installing bootstrap-select-rails 1.6.3
Using bootstrap_flash_messages 1.0.2
Using bower-rails 0.10.0
Using fastercsv 1.5.5
Using tilt 2.0.2
Using highline 1.7.8
Using multi_json 1.11.2
Using sexp_processor 4.6.0
Using safe_yaml 1.0.4
Using temple 0.7.6
Using terminal-table 1.5.2
Using browser 1.1.0
Using uniform_notifier 1.9.0
Using bump 0.5.3
Using byebug 8.2.1
Using callsite 0.0.11
Using cancancan 1.13.1
Installing chartkick 1.4.2
Using choice 0.2.0
Using coffee-script-source 1.10.0
Using chunky_png 1.3.5
Using rb-fsevent 0.9.7
Using ffi 1.9.10
Using chronic 0.10.2
Using numerizer 0.1.1
Using orm_adapter 0.5.0
Using clamav 0.4.1
Using cocoon 1.2.6
Using colored 1.2
Using colorize 0.7.7
Using coordinate-converter 0.1.0
Using daemon-spawn 0.4.2
Using daemons 1.2.3
Using dalli 2.7.5
Using device_detector 0.8.2
Using devise-i18n 0.12.1
Using diff-lcs 1.2.5
Using diffy 3.1.0
Using docile 1.1.5
Using unf_ext 0.0.7.1
Using dotenv 2.1.0
Using rmagick 2.15.4
Using rspec-support 3.4.1
Using simplecov-html 0.10.0
Using yard 0.8.7.6
Using eventmachine 1.0.9.1
Using http_parser.rb 0.6.0
Installing excon 0.48.0
Using exif 1.0.1
Using exifr 1.2.4
Using fast_xs 0.8.0
Using filesize 0.1.1
Using forgery 0.6.0
Using formatador 0.2.5
Using fspath 2.1.1
Using geocoder 1.2.14
Using geoutm 1.0.2
Installing git 1.3.0
Using git-version-bump 0.15.1
Installing logger 1.2.8
Installing github-markup 0.7.5
Using gmaps4rails 2.1.2
Using god 0.13.7
Installing mustache 0.99.8
Installing hpricot 0.8.6 with native extensions
Using google-analytics-rails 1.0.0
Using gritter 1.2.0
Using lumberjack 1.0.10
Using nenv 0.2.0
Using shellany 0.0.1
Using method_source 0.8.2
Using slop 3.6.0
Using guard-compat 1.2.1
Using netrc 0.11.0
Installing hash-deep-merge 0.1.1
Using hashie 3.4.3
Using hirb 0.7.3
Using hodel_3000_compliant_logger 0.1.1
Using httpclient 2.7.1
Using image_size 1.4.1
Using in_threads 1.3.1
Using progress 3.1.1
Using imgkit 1.6.1
Using interception 0.5
Installing jruby-jars 1.7.24
Installing jruby-rack 1.1.20
Using jwt 1.5.2
Using libv8 3.16.14.13
Installing little-plugger 1.1.4
Using localstorageshim-rails 1.0.2
Using localtunnel 1.0.2
Using systemu 2.6.5
Using sqlite3 1.3.11
Using manifesto 0.7.0
Using mimemagic 0.3.0
Using mini_exiftool 2.5.1
Using mini_magick 4.3.6
Using sixarm_ruby_unaccent 1.1.1
Using mousetrap-rails 1.4.6 from git://github.com/kugaevsky/mousetrap-rails.git (at master@c8c357e)
Using multi_fetch_fragments 0.0.17
Using mysql2 0.3.20
Using net-ldap 0.13.0
Using nickel 0.1.6
Using nori 2.6.0
Installing normalize-rails 3.0.3
Using nprogress-rails 0.1.6.7
Using oj 2.14.3
Using request_store 1.3.0
Using parallel 1.6.1
Installing pdf-core 0.6.1
Installing pg 0.18.4 with native extensions
Using powerpack 0.1.1
Using pr_geohash 1.0.0
Installing ttfunk 1.4.0
Using puma 2.15.3
Using rack-offline 0.6.4
Using rack-ssl-enforcer 0.2.9
Using railroady 1.4.2
Installing rails-assets-tether 1.2.0
Using ruby-graphviz 1.2.2
Using require_all 1.3.3
Using ruby-progressbar 1.7.5
Using rails_log_autotruncator 0.2.2
Using rainbow 2.0.0
Using redcarpet 3.3.4
Using ref 2.0.0
Using regexp-examples 1.1.4
Using remotipart 1.2.1
Using request-log-analyzer 1.13.4
Using rickshaw 0.3.1
Using rolify 5.0.0
Using ruby-ole 1.2.12
Installing routes 0.2.0
Using ruby-prof 0.15.9
Using ruby_gntp 0.3.4
Using smarter_csv 1.1.0
Using spring 1.6.2
Using stackprof 0.2.8
Using trollop 2.1.2
Using strong_password 0.0.4
Using sunspot_solr 2.2.3
Using tins 1.8.2
Using time-lord 1.0.1
Using time_ago_in_words 0.1.1
Using ui_datepicker-rails3 1.2.0
Using underscore-rails 1.8.3
Using unix-crypt 1.3.0
Installing wkhtmltoimage-binary 0.12.2
Installing wkhtmltopdf-binary 0.9.9.3
Using rake-compiler 0.9.5
Using rdoc 4.2.1
Using tzinfo 1.2.2
Using gyoku 1.3.1
Using rsolr 1.0.13
Using nokogiri 1.6.7.1
Using rack-test 0.6.3
Using warden 1.2.4
Using rack-protection 1.5.3
Using httpi 2.4.1
Installing passenger 5.0.26 with native extensions
Using rack-attack 4.3.1
Using rack-livereload 0.3.16
Using rack-mini-profiler 0.9.8
Using mail 2.6.3
Using fastimage 1.8.1
Installing albino 1.3.3
Installing asset_hat 0.4.2
Installing jammit 0.7.0
Using parser 2.3.0.1
Using autoprefixer-rails 6.3.1
Using uglifier 2.7.2
Using bundler-audit 0.4.0
Using figaro 1.1.1
Installing foreman 0.78.0
Using sprockets 3.5.2
Using backup 3.4.0
Using bcrypt-ruby 3.1.5
Using better_errors 2.1.1
Using binding_of_caller 0.7.2
Using compass-import-once 1.0.5
Using font-awesome-sass 4.5.0
Using haml 4.0.7
Using commander 4.3.5
Using compass-core 1.0.3
Using rollbar 2.7.1
Using ruby_parser 3.7.2
Using code_analyzer 0.4.5
Using slim 3.0.6
Using coffee-script 2.4.1
Using rb-inotify 0.9.5
Using whenever 0.9.4
Using chronic_duration 0.10.6
Installing grit 2.0.0
Using unf 0.1.4
Using rspec-core 3.4.1
Using rspec-expectations 3.4.0
Using rspec-mocks 3.4.1
Using simplecov 0.11.1
Using thin 1.5.1
Using em-websocket 0.5.1
Using simple_xlsx_writer 0.5.3
Using rack-contrib 1.4.0
Installing git_time_extractor 0.3.2
Installing sanitize 1.0.8
Installing raakt 0.5.6
Using notiffany 0.0.8
Using zeus 0.15.4
Using pry 0.10.3
Installing lazy_high_charts 1.5.5
Using omniauth 1.3.1
Using smusher 0.4.9
Using image_optim 0.22.0
Installing warbler 1.4.9
Installing logging 1.8.2
Using macaddr 1.7.1
Using money 6.7.0
Installing queue_classic 3.1.0
Installing prawn 2.1.0
Using therubyracer 0.12.2
Using spreadsheet 1.1.1
Using term-ansicolor 1.3.2
Using fast_stack 0.1.0
Using css_parser 1.2.6
Using sdoc 0.4.1
Using activesupport 4.2.0
Using sunspot 2.2.3
Using loofah 2.0.3
Using axlsx 2.0.1
Using akami 1.3.1
Using sinatra 1.4.6
Using wasabi 3.5.0
Using rubocop 0.36.0
Using bootstrap-sass 3.3.6
Installing css_splitter 0.4.4
Using ruby2ruby 2.2.0
Using flay 2.6.1
Using compass 1.0.3
Using listen 3.0.5
Using domain_name 0.5.25
Using skinny 0.2.4
Using pry-doc 0.8.0
Using pry-rescue 1.4.2
Using pry-stack_explorer 0.4.9.2
Using image_optim_pack 0.2.1.20160119
Using uuid 2.3.8
Using monetize 1.4.0
Using roo 1.13.2
Using flamegraph 0.1.0
Using deadweight 0.2.2
Using rails-deprecated_sanitizer 1.0.3
Using globalid 0.3.6
Using active_hash 1.4.1
Using activemodel 4.2.0
Using bullet 5.0.0
Using climate_control 0.0.3
Using delayed_job 4.1.1
Installing groupdate 2.5.2
Using jbuilder 2.4.0
Installing rails-translate-routes 0.1.3
Using rails_best_practices 1.15.7
Using umlify 1.2.6
Using utf8-cleaner 0.2.1
Using rails-html-sanitizer 1.0.2
Installing gollum 1.0.0
Installing stickler 2.4.2
Using savon 2.11.1
Using brakeman 3.1.4
Using reek 1.4.0
Using guard 2.13.0
Using http-cookie 1.0.2
Using mailcatcher 0.6.3
Using ruby-growl 4.1
Using rails-dom-testing 1.0.7
Using activejob 4.2.0
Using activerecord 4.2.0
Using password_strength 1.1.1
Using rails_email_validator 0.1.4
Using strip_attributes 1.7.1
Using valid_email 0.0.11
Using validate_url 1.0.2
Using validates_formatting_of 0.9.0
Using cocaine 0.5.8
Using guard-bundler 2.1.0
Using guard-livereload 2.5.1
Using rest-client 1.8.0
Using actionview 4.2.0
Installing active_median 0.1.2
Using acts-as-taggable-on 3.5.0
Using acts_as_xlsx 1.0.6
Using annotate 2.7.0 from git://github.com/ctran/annotate_models.git (at /var/www/html/zadmin/vendor/cache/annotate_models-56abbaa3eb5e@56abbaa)
Using delayed_job_active_record 4.1.0
Installing goldiloader 0.0.10
Using guard-migrate 1.2.1
Using habtm_generator 0.5
Using oink 0.10.1
Using paper_trail 4.0.2
Using persistize 0.2.0
Using polyamorous 1.3.0
Using rails-erd 1.4.5
Installing seed-fu 2.3.5
Using seed_dump 3.2.4
Using ckeditor 4.1.6
Using paperclip 4.3.2
Using hakiri 0.7.2
Using actionpack 4.2.0
Using paperclip-meta 2.0.0
Using paperclip-optimizer 2.0.0
Using xls_to_csv-paperclip-processor 0.4.5
Using actionmailer 4.2.0
Using active_link_to 1.0.3
Using railties 4.2.0
Using sprockets-rails 3.0.0
Using dotiw 3.0.1 from git://github.com/radar/dotiw.git (at /var/www/html/zadmin/vendor/cache/dotiw-6f90bbc46a05@6f90bbc)
Using health_monitor 0.1.4
Using kaminari 0.16.3
Using meta-tags 2.1.0
Using rails-timeago 2.13.0
Using ransack 1.7.0
Using simple_form 3.2.1
Using bootstrap-datepicker-rails 1.5.0
Using bootstrap-modal-rails 2.2.5
Using coffee-rails 4.1.1
Using responders 2.1.1
Using dotenv-rails 2.1.0
Using rspec-rails 3.4.0
Using font-awesome-rails 4.5.0.0
Using garlicjs-rails 1.2.2
Installing highcharts-rails 4.1.9
Using historyjs-rails 1.0.1
Using jquery-cookie-rails 1.3.1.1
Using jquery-rails 4.1.0
Using jquery-tablesorter 1.20.2
Using jquery-ui-rails 5.0.5
Using lograge 0.3.5
Using lol_dba 2.0.3
Using meta_request 0.3.4
Using momentjs-rails 2.11.0 from git://github.com/derekprior/momentjs-rails.git (at /var/www/html/zadmin/vendor/cache/momentjs-rails-eda1b74512db@eda1b74)
Using money-rails 1.6.0
Using multi-select-rails 0.9.12
Using public_activity 1.4.2
Using quiet_assets 1.1.0
Using rails-dev-boost 0.3.0 from git://github.com/thedarkone/rails-dev-boost.git (at /var/www/html/zadmin/vendor/cache/rails-dev-boost-a709a10b06b7@a709a10)
Using rails-dev-tweaks 1.2.0
Using rails-i18n 4.0.8
Using slim-rails 3.0.1
Using toastr-rails 1.0.3
Using rails 4.2.0
Using sass-rails 5.0.4
Installing js-routes 1.2.4
Using web-console 2.2.1
Using simple_form_bootstrap3 0.3.6
Using turbolinks 2.5.3
Using devise 3.4.1
Using axlsx_rails 0.4.0
Using dropzonejs-rails 0.7.2
Using easy_captcha 0.6.5
Using evercookie 0.1.2
Using gretel 3.0.8
Using jquery-lazy-images 0.3.2
Using kaminari-bootstrap 3.0.1
Using kaminari-i18n 0.3.2
Using page_title_helper 2.1.0 from git://github.com/lwe/page_title_helper.git (at /var/www/html/zadmin/vendor/cache/page_title_helper-9e4a25b9ad50@9e4a25b)
Using rails-footnotes 4.1.8
Installing sextant 0.2.4
Using sunspot_rails 2.2.3
Using traceroute 0.5.0
Using yaml_db 0.3.0
Using compass-rails 3.0.0 from git://github.com/Compass/compass-rails.git (at /var/www/html/zadmin/vendor/cache/compass-rails-a1c890628d61@a1c8906)
Using jquery-turbolinks 2.1.0
Using turboboost 0.1.0
Using devise_security_extension 0.9.2
Using devise_token_auth 0.1.33
Using chosen-rails 1.4.1 from git://github.com/qpowell/chosen-rails.git (at /var/www/html/zadmin/vendor/cache/chosen-rails-171f33b17034@171f33b)
Updating files in vendor/cache
* active_median-0.1.2.gem
* posix-spawn-0.3.11.gem
* albino-1.3.3.gem
* cssmin-1.0.3.gem
* jsmin-1.0.1.gem
* asset_hat-0.4.2.gem
* bootstrap-select-rails-1.6.3.gem
* chartkick-1.4.2.gem
* css_splitter-0.4.4.gem
* excon-0.48.0.gem
* foreman-0.78.0.gem
* git-1.3.0.gem
* logger-1.2.8.gem
* git_time_extractor-0.3.2.gem
* github-markup-0.7.5.gem
* goldiloader-0.0.10.gem
* grit-2.0.0.gem
* mustache-0.99.8.gem
* hpricot-0.8.6.gem
* sanitize-1.0.8.gem
* gollum-1.0.0.gem
* groupdate-2.5.2.gem
* hash-deep-merge-0.1.1.gem
* highcharts-rails-4.1.9.gem
* jammit-0.7.0.gem
* jruby-jars-1.7.24.gem
* jruby-rack-1.1.20.gem
* js-routes-1.2.4.gem
* lazy_high_charts-1.5.5.gem
* little-plugger-1.1.4.gem
* logging-1.8.2.gem
* normalize-rails-3.0.3.gem
* passenger-5.0.26.gem
* pdf-core-0.6.1.gem
* pg-0.18.4.gem
* ttfunk-1.4.0.gem
* prawn-2.1.0.gem
* queue_classic-3.1.0.gem
* raakt-0.5.6.gem
* rails-assets-tether-1.2.0.gem
* rails-translate-routes-0.1.3.gem
* routes-0.2.0.gem
* seed-fu-2.3.5.gem
* sextant-0.2.4.gem
* stickler-2.4.2.gem
* warbler-1.4.9.gem
* wkhtmltoimage-binary-0.12.2.gem
* wkhtmltopdf-binary-0.9.9.3.gem
Removing outdated .gem files from vendor/cache
* kgio-2.10.0.gem
* pdfkit-0.8.2.gem
* raindrops-0.15.0.gem
* smart_listing-1.1.2.gem
* unicorn-5.0.1.gem
* wicked_pdf-1.0.3.gem
Bundle complete! 249 Gemfile dependencies, 404 gems now installed.
Bundled gems are installed into ./vendor.
Unknown switches '--development'
*** LOCAL GEMS ***
abstract_type (0.0.7)
actionmailer (4.2.1, 4.2.0)
actionpack (4.2.1, 4.2.0)
actionview (4.2.1, 4.2.0)
active_hash (1.4.1, 1.4.0)
active_link_to (1.0.3, 1.0.2)
activejob (4.2.1, 4.2.0)
activemodel (4.2.1, 4.2.0, 3.2.21)
activerecord (4.2.1, 4.2.0, 3.2.21)
acts-as-taggable-on (3.5.0)
acts_as_xlsx (1.0.6)
adamantium (0.2.0)
addressable (2.4.0, 2.3.8, 2.3.7, 2.3.5)
akami (1.3.1, 1.3.0)
alertify-rails (0.2.0)
angular-ui-bootstrap-rails (0.14.3, 0.13.0, 0.12.1)
angularjs-rails (1.4.8, 1.4.7, 1.4.0, 1.3.15, 1.3.14)
annotate (2.6.10)
ansi (1.5.0)
arel (6.0.3, 6.0.0, 3.0.3)
ast (2.2.0, 2.1.0, 2.0.0)
astrolabe (1.3.1, 1.3.0)
atomic (1.1.99, 1.1.14)
auto_html (1.6.4)
auto_strip_attributes (2.0.6)
autoprefixer-rails (6.2.3, 6.2.2, 6.1.2, 6.0.3, 5.2.0, 5.1.11, 5.1.8, 5.1.7.1)
awesome_print (1.6.1)
aws-ses (0.6.0, 0.5.0)
axiom-types (0.1.1)
axlsx (2.0.1)
axlsx_rails (0.4.0, 0.3.0)
backup (4.1.10, 3.4.0)
backup-rails (1.0.5, 1.0.3)
bcrypt (3.1.10)
bcrypt-ruby (3.1.5)
better_errors (2.1.1)
bigdecimal (1.2.7, 1.2.6)
binding_of_caller (0.7.2)
bootstrap-datepicker-rails (1.5.0, 1.4.0)
bootstrap-modal-rails (2.2.5)
bootstrap-sass (3.3.6, 3.3.5.1, 3.3.4.1)
bootstrap_flash_messages (1.0.2, 1.0.0)
bower-rails (0.10.0, 0.9.2)
brakeman (3.1.4)
breadcrumbs_on_rails (2.3.1)
browser (1.0.1, 0.8.0)
buftok (0.2.0)
builder (3.2.2, 3.0.4)
bullet (4.14.10, 4.14.7, 4.14.6, 4.14.5, 4.14.4)
bump (0.5.3, 0.5.2)
bundler (1.11.2, 1.10.6, 1.10.2, 1.10.1, 1.9.6, 1.9.5, 1.9.1)
bundler-audit (0.4.0, 0.3.1)
byebug (8.2.1, 6.0.2, 5.0.0, 4.0.5, 4.0.4, 4.0.3)
callsite (0.0.11)
cancancan (1.13.1, 1.10.1)
celluloid (0.16.0)
CFPropertyList (2.3.1)
choice (0.2.0)
chronic (0.10.2)
chronic_duration (0.10.6)
chunky_png (1.3.5, 1.3.4)
ckeditor (4.1.5, 4.1.4, 4.1.2, 4.1.1)
clamav (0.4.1)
climate_control (0.0.3)
cocaine (0.5.8, 0.5.7)
cocoon (1.2.6)
code_analyzer (0.4.5)
codeclimate-engine-rb (0.1.0)
coderay (1.1.0)
coercible (1.0.0)
coffee-rails (4.1.1, 4.1.0)
coffee-script (2.4.1, 2.3.0)
coffee-script-source (1.10.0, 1.9.1.1, 1.9.1)
colored (1.2)
colorize (0.7.7)
columnize (0.9.0)
commander (4.3.5, 4.3.4, 4.3.3, 4.3.2, 4.3.1, 4.3.0)
commonjs (0.2.7)
compass (1.0.3)
compass-core (1.0.3)
compass-import-once (1.0.5)
compass-rails (2.0.1)
concord (0.1.5)
concurrent-ruby (1.0.0)
coordinate-converter (0.1.0)
css_parser (1.2.6)
daemon-spawn (0.4.2)
daemons (1.2.3, 1.2.2)
dalli (2.7.5, 2.7.4)
deadweight (0.2.2)
debug_inspector (0.0.2)
debugger-xml (0.4.1)
delayed_job (4.1.1, 4.0.6)
delayed_job_active_record (4.1.0, 4.0.3)
descendants_tracker (0.0.4, 0.0.3)
device_detector (0.8.2, 0.8.1, 0.7.0)
devise (3.5.1, 3.4.1)
devise-i18n (0.12.1, 0.12.0, 0.11.4)
diff-lcs (1.2.5)
diffy (3.1.0, 3.0.7)
docile (1.1.5)
dogapi (1.18.0, 1.17.0, 1.11.0)
domain_name (0.5.25, 0.5.24, 0.5.23)
dotenv (2.0.2, 2.0.1, 2.0.0)
dotenv-rails (2.0.2, 2.0.1, 2.0.0)
dropbox-sdk (1.6.4, 1.5.1)
dropzonejs-rails (0.7.2, 0.7.1)
em-websocket (0.5.1)
equalizer (0.0.11, 0.0.9)
erubis (2.7.0)
eventmachine (1.0.8, 1.0.7)
evercookie (0.1.2, 0.1.1)
excon (0.45.3, 0.44.4, 0.17.0)
execjs (2.6.0, 2.5.2, 2.4.0, 2.3.0)
exif (1.0.1)
exifr (1.2.4, 1.2.3.1, 1.2.2)
faraday (0.9.1, 0.8.8)
fast_stack (0.1.0)
fast_xs (0.8.0)
fastercsv (1.5.5)
fastimage (1.8.1, 1.7.0, 1.6.8)
ffi (1.9.10, 1.9.8)
filesize (0.1.1)
fission (0.5.0)
flamegraph (0.1.0)
flay (2.6.1)
flowdock (0.6.0, 0.5.0, 0.4.0)
fog (1.30.0, 1.28.0, 1.9.0)
fog-atmos (0.1.0)
fog-aws (0.4.0, 0.1.2, 0.1.1)
fog-brightbox (0.7.1)
fog-core (1.30.0, 1.29.0)
fog-ecloud (0.1.1, 0.0.2)
fog-google (0.0.5)
fog-json (1.0.2, 1.0.1, 1.0.0)
fog-local (0.2.1)
fog-powerdns (0.1.1)
fog-profitbricks (0.0.2)
fog-radosgw (0.0.4, 0.0.3)
fog-riakcs (0.1.0)
fog-sakuracloud (1.0.1, 1.0.0)
fog-serverlove (0.1.2, 0.1.1)
fog-softlayer (0.4.6, 0.4.5, 0.4.1)
fog-storm_on_demand (0.1.1, 0.1.0)
fog-terremark (0.1.0, 0.0.4)
fog-vmfusion (0.1.0, 0.0.1)
fog-voxel (0.1.0, 0.0.2)
fog-xml (0.1.2, 0.1.1)
font-awesome-rails (4.5.0.0, 4.4.0.0, 4.3.0.0)
font-awesome-sass (4.5.0, 4.4.0, 4.3.2.1)
forgery (0.6.0)
formatador (0.2.5)
fspath (2.1.1)
garlicjs-rails (1.2.2)
geocoder (1.2.14, 1.2.12, 1.2.11, 1.2.8)
geoutm (1.0.2)
git-version-bump (0.15.1)
globalid (0.3.6, 0.3.5, 0.3.3)
gmaps4rails (2.1.2)
god (0.13.7, 0.13.6)
google-analytics-rails (0.0.6)
gritter (1.2.0, 1.1.0)
guard (2.13.0, 2.12.5)
guard-bundler (2.1.0)
guard-compat (1.2.1)
guard-livereload (2.5.1, 2.5.0, 2.4.0)
guard-migrate (1.2.1)
gyoku (1.3.1)
habtm_generator (0.5, 0.3)
hakiri (0.7.2)
haml (4.0.7)
hashie (3.4.3)
health_monitor (0.1.4)
highline (1.7.8, 1.7.2, 1.7.1, 1.6.21)
hike (2.1.3, 1.2.3)
hipchat (1.5.1, 1.0.1)
hirb (0.7.3)
historyjs-rails (1.0.1)
hitimes (1.2.2)
hodel_3000_compliant_logger (0.1.1)
htmlentities (4.3.4, 4.3.3)
http (0.8.12, 0.8.9, 0.8.5, 0.6.4, 0.5.0)
http-cookie (1.0.2)
http-form_data (1.0.1)
http_parser.rb (0.6.0)
httparty (0.13.5, 0.13.3, 0.12.0)
httpclient (2.7.0.1)
httpi (2.4.1, 2.4.0)
i18n (0.7.0)
ice_nine (0.11.1)
image_optim (0.22.0, 0.21.0, 0.20.2)
image_optim_pack (0.2.1.20151113, 0.2.1.20151012, 0.2.1.20150525, 0.2.1.20150422)
image_size (1.4.1)
imgkit (1.6.1)
in_threads (1.3.1)
inflecto (0.0.2)
interception (0.5)
io-console (0.4.3)
ipaddress (0.8.0)
jbuilder (2.4.0, 2.3.2, 2.2.16, 2.2.13, 2.2.12)
jquery-cookie-rails (1.3.1.1)
jquery-rails (4.0.5, 4.0.3)
jquery-tablesorter (1.20.0, 1.18.5, 1.17.1)
jquery-turbolinks (2.1.0)
jquery-ui-rails (5.0.5, 5.0.3)
json (1.8.3, 1.8.2, 1.8.1)
jwt (1.5.2)
kaminari (0.16.3)
kaminari-bootstrap (3.0.1)
kaminari-i18n (0.3.2)
kgio (2.10.0, 2.9.3)
less (2.6.0)
less-rails (2.7.0)
libv8 (3.16.14.13 x86_64-linux, 3.16.14.7 x86_64-linux)
listen (3.0.5, 3.0.3, 2.10.0, 2.9.0)
localstorageshim-rails (1.0.2)
localtunnel (1.0.2)
lograge (0.3.5)
loofah (2.0.3, 2.0.2, 2.0.1)
lumberjack (1.0.9)
macaddr (1.7.1)
mail (2.6.3, 2.5.4)
mailcatcher (0.6.2)
manifesto (0.7.0)
memoizable (0.4.2, 0.4.0)
meta-tags (2.1.0)
meta_request (0.3.4)
method_source (0.8.2)
mime-types (2.99, 2.6.2, 2.6.1, 2.5, 2.4.3, 1.25.1)
mimemagic (0.3.0)
mini_exiftool (2.5.1, 2.5.0)
mini_magick (4.3.6, 4.2.7, 4.2.4, 4.2.3)
mini_portile (0.6.2)
mini_portile2 (2.0.0)
minitest (5.8.3, 5.8.1, 5.7.0, 5.6.1, 5.6.0, 5.5.1, 5.4.3)
momentjs-rails (2.10.6, 2.10.2)
monetize (1.3.0, 1.1.0)
money (6.5.1)
money-rails (1.4.1)
multi-select-rails (0.9.12)
multi_fetch_fragments (0.0.17)
multi_json (1.11.2, 1.11.0, 1.10.1)
multi_xml (0.5.5)
multipart-post (2.0.0, 1.2.0)
mysql2 (0.3.20, 0.3.18)
naught (1.0.0)
nenv (0.2.0)
net-ldap (0.12.1, 0.11)
net-scp (1.2.1, 1.0.4)
net-sftp (2.1.2)
net-ssh (2.9.2, 2.5.2)
netrc (0.11.0, 0.10.3)
nickel (0.1.6)
nokogiri (1.6.7.1, 1.6.7, 1.6.6.2, 1.5.11)
nori (2.6.0, 2.5.0)
notiffany (0.0.8, 0.0.6)
nprogress-rails (0.1.6.7, 0.1.6.6)
numerizer (0.1.1)
oink (0.10.1)
oj (2.14.2)
omniauth (1.3.1)
open4 (1.3.4, 1.3.0)
orm_adapter (0.5.0)
os (0.9.6)
pagerduty (2.0.1, 2.0.0)
paper_trail (4.0.1, 4.0.0, 4.0.0.rc1, 4.0.0.beta2, 3.0.8, 3.0.7)
paperclip (4.3.2, 4.3.1, 4.2.1)
paperclip-meta (2.0.0, 1.2.0)
paperclip-optimizer (2.0.0)
parallel (1.6.1, 1.6.0, 1.4.1)
parser (2.2.3.0, 2.2.2.6, 2.2.2.5, 2.2.2.2, 2.2.0.3)
password_strength (1.1.1)
pdfkit (0.8.2, 0.7.0)
persistize (0.3.0, 0.2.0)
polyamorous (1.3.0, 1.2.0, 1.1.0)
polyglot (0.3.5, 0.3.3)
power_assert (0.2.3, 0.2.2)
powerpack (0.1.1, 0.1.0)
pr_geohash (1.0.0)
private_attr (1.1.0)
procto (0.0.2)
progress (3.1.0)
pry (0.10.3, 0.10.1)
pry-doc (0.8.0)
pry-rescue (1.4.2, 1.4.1)
pry-stack_explorer (0.4.9.2)
psych (2.0.13, 2.0.8)
public_activity (1.4.2)
puma (2.15.3, 2.14.0, 2.11.3, 2.11.2)
quiet_assets (1.1.0)
rack (1.6.4, 1.6.1, 1.6.0)
rack-attack (4.3.1, 4.3.0, 4.2.0)
rack-cache (1.2)
rack-contrib (1.4.0, 1.2.0)
rack-livereload (0.3.16)
rack-mini-profiler (0.9.8)
rack-offline (0.6.4)
rack-protection (1.5.3)
rack-ssl-enforcer (0.2.9, 0.2.8)
rack-test (0.6.3)
railroady (1.4.2, 1.4.0, 1.3.1)
rails (4.2.1, 4.2.0)
rails-deprecated_sanitizer (1.0.3)
rails-dev-tweaks (1.2.0)
rails-dom-testing (1.0.7, 1.0.6)
rails-erd (1.4.4)
rails-html-sanitizer (1.0.2)
rails-i18n (4.0.8, 4.0.7, 4.0.5, 4.0.4)
rails-timeago (2.13.0, 2.12.0, 2.11.1)
rails_best_practices (1.15.7)
rails_email_validator (0.1.4)
rails_log_autotruncator (0.2.2)
railties (4.2.1, 4.2.0)
rainbow (2.0.0)
raindrops (0.15.0, 0.13.0)
rake (10.4.2)
rake-compiler (0.9.5)
ransack (1.7.0, 1.6.6, 1.6.5, 1.6.4)
rb-fsevent (0.9.7, 0.9.6, 0.9.5, 0.9.4)
rb-inotify (0.9.5)
rdoc (4.2.1, 4.2.0)
redcarpet (3.3.4, 3.2.3)
reek (3.8.1, 2.2.1)
ref (2.0.0, 1.0.5)
regexp-examples (1.1.3)
remotipart (1.2.1)
request-log-analyzer (1.13.4)
request_store (1.2.1, 1.1.0)
require_all (1.3.3)
responders (2.1.1, 2.1.0)
rest-client (1.8.0)
rickshaw (0.3.1)
rmagick (2.15.4)
rolify (5.0.0, 4.0.0)
rollbar (2.7.1)
roo (1.13.2)
rsolr (1.0.13)
rspec-core (3.4.1)
rspec-expectations (3.4.0)
rspec-mocks (3.4.0)
rspec-rails (3.4.0)
rspec-support (3.4.1)
rubocop (0.35.1)
ruby-graphviz (1.2.2)
ruby-growl (4.1)
ruby-hmac (0.4.0)
ruby-ole (1.2.12, 1.2.11.8)
ruby-prof (0.15.9, 0.15.8)
ruby-progressbar (1.7.5)
ruby2ruby (2.2.0)
ruby_gntp (0.3.4)
ruby_parser (3.7.2)
rubyzip (1.0.0)
safe_yaml (1.0.4)
sass (3.4.20, 3.4.14)
sass-rails (5.0.4, 5.0.3)
savon (2.11.1, 2.11.0)
sdoc (0.4.1)
seed_dump (3.2.4, 3.2.2)
sexp_processor (4.6.0)
sextant (0.2.4)
shellany (0.0.1)
simple-navigation (3.14.0)
simple_form (3.2.1, 3.1.0)
simple_form_bootstrap3 (0.3.6)
simple_navigation_renderers (1.0.2)
simple_xlsx_writer (0.5.3)
simplecov (0.11.1)
simplecov-html (0.10.0)
sinatra (1.4.6)
sisyphus-rails (0.1.0)
skinny (0.2.3)
slim (3.0.6, 3.0.3)
slim-rails (3.0.1)
slop (3.6.0)
smarter_csv (1.1.0, 1.0.19)
smusher (0.4.9)
spreadsheet (1.1.0, 1.0.3)
spring (1.6.1, 1.3.6)
sprockets (3.5.2, 2.12.3)
sprockets-rails (3.0.0, 2.3.1)
sqlite3 (1.3.11, 1.3.10)
stackprof (0.2.7)
strip_attributes (1.7.1, 1.7.0)
strong_password (0.0.4)
sunspot (2.2.3)
sunspot_solr (2.2.3)
systemu (2.6.5)
temple (0.7.6, 0.7.5)
term-ansicolor (1.3.2)
terminal-table (1.5.2, 1.4.5)
therubyracer (0.12.2)
thin (1.5.1)
thor (0.19.1, 0.18.1)
thread_safe (0.3.5, 0.1.3)
tilt (2.0.1, 1.4.1)
time-lord (1.0.1)
time_ago_in_words (0.1.1)
timers (4.0.1)
tins (1.6.0)
toastr-rails (1.0.3)
trollop (2.1.2)
turboboost (0.1.0, 0.0.12)
turbolinks (2.5.3)
tzinfo (1.2.2, 0.3.44)
uglifier (2.7.2, 2.7.1)
ui_datepicker-rails3 (1.2.0)
umlify (1.2.6)
underscore-rails (1.8.3, 1.8.2)
unf (0.1.4, 0.1.3)
unf_ext (0.0.7.1, 0.0.6)
unicorn (5.0.1)
uniform_notifier (1.9.0)
unix-crypt (1.3.0)
unparser (0.2.4, 0.2.3)
utf8-cleaner (0.2.1, 0.0.9)
uuid (2.3.8, 2.3.7)
valid_email (0.0.11)
validate_url (1.0.2)
validates_formatting_of (0.9.0)
virtus (1.0.5)
warden (1.2.4, 1.2.3)
wasabi (3.5.0)
web-console (2.2.1)
whenever (0.9.4)
wicked_pdf (1.0.3)
xls_to_csv-paperclip-processor (0.4.5)
xml-simple (1.1.5, 1.1.4)
yaml_db (0.3.0)
yard (0.8.7.6)
zeus (0.15.4)
/usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency.rb:318:in `to_specs': Could not find 'puma' (>= 0) among 70 total gem(s) (Gem::LoadError)
Checked in 'GEM_PATH=/root/.gem/ruby/2.2.0:/usr/local/lib/ruby/gems/2.2.0', execute `gem env` for more information
from /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/dependency.rb:327:in `to_spec'
from /usr/local/lib/ruby/site_ruby/2.2.0/rubygems/core_ext/kernel_gem.rb:64:in `gem'
from /usr/local/bin/puma:22:in `<main>'
rake aborted!
Gem::LoadError: You have already activated rake 10.4.2, but your Gemfile requires rake 10.5.0. Prepending `bundle exec` to your command may solve this.
/var/www/html/zadmin/config/boot.rb:3:in `<top (required)>'
/var/www/html/zadmin/config/application.rb:1:in `<top (required)>'
/var/www/html/zadmin/Rakefile:6:in `<top (required)>'
LoadError: cannot load such file -- bundler/setup
/var/www/html/zadmin/config/boot.rb:3:in `<top (required)>'
/var/www/html/zadmin/config/application.rb:1:in `<top (required)>'
/var/www/html/zadmin/Rakefile:6:in `<top (required)>'
(See full trace by running task with --trace)
Fetching git://github.com/Compass/compass-rails.git
Fetching git://github.com/qpowell/chosen-rails.git
Fetching git://github.com/derekprior/momentjs-rails.git
Fetching git://github.com/ctran/annotate_models.git
Fetching git://github.com/thedarkone/rails-dev-boost.git
Fetching git://github.com/radar/dotiw.git
Fetching git://github.com/lwe/page_title_helper.git
Fetching git://github.com/kugaevsky/mousetrap-rails.git
Fetching gem metadata from http://rails-assets.org/...
Fetching version metadata from http://rails-assets.org/..
Fetching gem metadata from http://rubygems.org/.......
Fetching version metadata from http://rubygems.org/...
Fetching dependency metadata from http://rubygems.org/..
Resolving dependencies...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Using rake 10.5.0
Using i18n 0.7.0
Using json 1.8.3
Installing minitest 5.8.4 (was 5.8.3)
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.0.0
Using rack 1.6.4
Installing mime-types 1.25.1 (was 2.99)
Using arel 6.0.3
Using htmlentities 4.3.4
Using rubyzip 1.0.0
Installing addressable 2.3.8 (was 2.4.0)
Using alertify-rails 0.2.0
Installing angularjs-rails 1.5.0 (was 1.4.8)
Using ansi 1.5.0
Using cssmin 1.0.3
Using jsmin 1.0.1
Using ast 2.2.0
Using execjs 2.6.0
Installing ice_nine 0.11.2
Using bundler 1.11.2
Using thor 0.19.1
Installing concurrent-ruby 1.0.1 (was 1.0.0)
Using open4 1.3.4
Using backup-rails 1.0.3
Installing bcrypt 3.1.11 (was 3.1.10) with native extensions
Installing coderay 1.1.1 (was 1.1.0)
Using debug_inspector 0.0.2
Using sass 3.4.21
Using bootstrap-select-rails 1.6.3
Using bootstrap_flash_messages 1.0.2
Using bower-rails 0.10.0
Using tilt 2.0.2
Using highline 1.7.8
Installing sexp_processor 4.7.0 (was 4.6.0)
Using safe_yaml 1.0.4
Using temple 0.7.6
Using terminal-table 1.5.2
Installing browser 2.0.2 (was 1.1.0)
Using uniform_notifier 1.9.0
Using bump 0.5.3
Installing byebug 8.2.2 (was 8.2.1) with native extensions
Using callsite 0.0.11
Using cancancan 1.13.1
Installing charlock_holmes 0.7.3 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
current directory: /var/www/html/zadmin/vendor/ruby/2.2.0/gems/charlock_holmes-0.7.3/ext/charlock_holmes
/home/rails/.rbenv/versions/2.2.1/bin/ruby -r ./siteconf20160310-31673-7c331t.rb extconf.rb
checking for main() in -licui18n... no
which: no brew in (/home/rails/.rbenv/versions/2.2.1/bin:/home/rails/.rbenv/libexec:/home/rails/.rbenv/plugins/ruby-build/bin:/home/rails/.rbenv/shims:/home/rails/.rbenv/bin:/home/rails/.rbenv/shims:/home/rails/.rbenv/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/rails/.local/bin:/home/rails/bin)
checking for main() in -licui18n... no
***************************************************************************************
*********** icu required (brew install icu4c or apt-get install libicu-dev) ***********
***************************************************************************************
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/home/rails/.rbenv/versions/2.2.1/bin/$(RUBY_BASE_NAME)
--with-icu-dir
--without-icu-dir
--with-icu-include
--without-icu-include=${icu-dir}/include
--with-icu-lib
--without-icu-lib=${icu-dir}/lib
--with-icui18nlib
--without-icui18nlib
--with-icui18nlib
--without-icui18nlib
To see why this extension failed to compile, please check the mkmf.log which can be found here:
/var/www/html/zadmin/vendor/ruby/2.2.0/extensions/x86_64-linux/2.2.0-static/charlock_holmes-0.7.3/mkmf.log
extconf failed, exit code 1
Gem files will remain installed in /var/www/html/zadmin/vendor/ruby/2.2.0/gems/charlock_holmes-0.7.3 for inspection.
Results logged to /var/www/html/zadmin/vendor/ruby/2.2.0/extensions/x86_64-linux/2.2.0-static/charlock_holmes-0.7.3/gem_make.out
Using chartkick 1.4.2
Using choice 0.2.0
Using coffee-script-source 1.10.0
Using chunky_png 1.3.5
Using multi_json 1.11.2
Using rb-fsevent 0.9.7
Using ffi 1.9.10
Using chronic 0.10.2
Using numerizer 0.1.1
Using orm_adapter 0.5.0
Using clamav 0.4.1
Installing cocoon 1.2.8 (was 1.2.6)
Using equalizer 0.0.11
Using colored 1.2
Using colorize 0.7.7
Using coordinate-converter 0.1.0
Using daemon-spawn 0.4.2
Using daemons 1.2.3
Installing dalli 2.7.6 (was 2.7.5)
Using device_detector 0.8.2
Installing devise-i18n 1.0.0 (was 0.12.1)
Using diff-lcs 1.2.5
Using diffy 3.1.0
Using docile 1.1.5
Installing unf_ext 0.0.7.2 (was 0.0.7.1) with native extensions
Using dotenv 2.1.0
Using rmagick 2.15.4
Using rspec-support 3.4.1
Using simplecov-html 0.10.0
Using yard 0.8.7.6
Using eventmachine 1.0.9.1
Using http_parser.rb 0.6.0
Using excon 0.48.0
Using exif 1.0.1
Using exifr 1.2.4
Using fast_xs 0.8.0
Using fastercsv 1.5.5
Using filesize 0.1.1
Using forgery 0.6.0
Using formatador 0.2.5
Using fspath 2.1.1
Installing geocoder 1.3.1 (was 1.2.14)
Using geoutm 1.0.2
Using git 1.3.0
Using git-version-bump 0.15.1
Using logger 1.2.8
Installing github-markup 1.4.0 (was 0.7.5)
Using posix-spawn 0.3.11
Using gmaps4rails 2.1.2
Using god 0.13.7
Installing rouge 1.10.1
Installing stringex 2.5.2
Installing kramdown 1.8.0
Using mustache 0.99.8
Installing useragent 0.14.0
Installing google-analytics-rails 1.1.0 (was 1.0.0)
Using gritter 1.2.0
Using lumberjack 1.0.10
Installing nenv 0.3.0 (was 0.2.0)
Using shellany 0.0.1
Using method_source 0.8.2
Using slop 3.6.0
Using guard-compat 1.2.1
Using netrc 0.11.0
Using hash-deep-merge 0.1.1
Using hashie 3.4.3
Using hirb 0.7.3
Using hodel_3000_compliant_logger 0.1.1
Using hpricot 0.8.6
Using httpclient 2.7.1
Installing image_size 1.4.2 (was 1.4.1)
Using in_threads 1.3.1
Using progress 3.1.1
Using imgkit 1.6.1
Using interception 0.5
Using jruby-jars 1.7.24
Using jruby-rack 1.1.20
Installing jwt 1.5.3 (was 1.5.2)
Using libv8 3.16.14.13
Using little-plugger 1.1.4
Using localstorageshim-rails 1.0.2
Installing localtunnel 1.0.3 (was 1.0.2)
Using systemu 2.6.5
Using sqlite3 1.3.11
Using manifesto 0.7.0
Using mimemagic 0.3.0
Using mini_exiftool 2.5.1
Installing mini_magick 4.4.0 (was 4.3.6)
Using sixarm_ruby_unaccent 1.1.1
Using mousetrap-rails 1.4.6 from git://github.com/kugaevsky/mousetrap-rails.git (at master@c8c357e)
Using multi_fetch_fragments 0.0.17
Using mysql2 0.3.20
Installing net-ldap 0.14.0 (was 0.13.0)
Using nickel 0.1.6
Using nori 2.6.0
Using normalize-rails 3.0.3
Using nprogress-rails 0.1.6.7
Installing oj 2.14.6 (was 2.14.3) with native extensions
Using request_store 1.3.0
Installing parallel 1.6.2 (was 1.6.1)
Using pdf-core 0.6.1
Using pg 0.18.4
Using powerpack 0.1.1
Using pr_geohash 1.0.0
Using ttfunk 1.4.0
Installing puma 3.1.0 (was 2.15.3) with native extensions
Using rack-offline 0.6.4
Using rack-ssl-enforcer 0.2.9
Using railroady 1.4.2
Using rails-assets-tether 1.2.0
Using ruby-graphviz 1.2.2
Using require_all 1.3.3
Using ruby-progressbar 1.7.5
Using rails_log_autotruncator 0.2.2
Installing rainbow 2.1.0 (was 2.0.0)
Using redcarpet 3.3.4
Using ref 2.0.0
Installing regexp-examples 1.2.0 (was 1.1.4)
Using remotipart 1.2.1
Using request-log-analyzer 1.13.4
Using rickshaw 0.3.1
Using rolify 5.0.0
Using ruby-ole 1.2.12
Using routes 0.2.0
Installing unicode-display_width 1.0.2
Using ruby-prof 0.15.9
Using ruby_gntp 0.3.4
Using smarter_csv 1.1.0
Installing spring 1.6.4 (was 1.6.2)
Using stackprof 0.2.8
Using trollop 2.1.2
Installing strong_password 0.0.5 (was 0.0.4)
Installing sunspot_solr 2.2.5 (was 2.2.3)
Installing tins 1.9.0 (was 1.8.2)
Using time-lord 1.0.1
Using time_ago_in_words 0.1.1
Using ui_datepicker-rails3 1.2.0
Using underscore-rails 1.8.3
Using unix-crypt 1.3.0
Using wkhtmltoimage-binary 0.12.2
Using wkhtmltopdf-binary 0.9.9.3
Installing rake-compiler 0.9.6 (was 0.9.5)
Installing rdoc 4.2.2 (was 4.2.1)
Using tzinfo 1.2.2
Using descendants_tracker 0.0.4
Using gyoku 1.3.1
Installing rsolr 1.1.1 (was 1.0.13)
Installing nokogiri 1.6.7.2 (was 1.6.7.1) with native extensions
Using rack-test 0.6.3
Installing warden 1.2.6 (was 1.2.4)
Using rack-protection 1.5.3
Using httpi 2.4.1
Using passenger 5.0.26
Installing rack-attack 4.4.1 (was 4.3.1)
Using rack-livereload 0.3.16
Using mail 2.6.3
Installing fastimage 1.9.0 (was 1.8.1)
Using asset_hat 0.4.2
Using jammit 0.7.0
Installing parser 2.3.0.6 (was 2.3.0.1)
Installing autoprefixer-rails 6.3.3.1 (was 6.3.1)
Using uglifier 2.7.2
Installing bundler-audit 0.5.0 (was 0.4.0)
Using figaro 1.1.1
Using foreman 0.78.0
Using sprockets 3.5.2
Using backup 3.4.0
Using bcrypt-ruby 3.1.5
Using better_errors 2.1.1
Using binding_of_caller 0.7.2
Using compass-import-once 1.0.5
Using font-awesome-sass 4.5.0
Using haml 4.0.7
Installing commander 4.4.0 (was 4.3.5)
Installing ruby_parser 3.8.1 (was 3.7.2)
Using code_analyzer 0.4.5
Using slim 3.0.6
An error occurred while installing charlock_holmes (0.7.3), and Bundler cannot continue.
Make sure that `gem install charlock_holmes -v '0.7.3'` succeeds before bundling.
[rails@web2 zadmin]$ bundle update
Fetching git://github.com/Compass/compass-rails.git
Fetching git://github.com/qpowell/chosen-rails.git
Fetching git://github.com/derekprior/momentjs-rails.git
Fetching git://github.com/ctran/annotate_models.git
Fetching git://github.com/thedarkone/rails-dev-boost.git
Fetching git://github.com/radar/dotiw.git
Fetching git://github.com/lwe/page_title_helper.git
Fetching git://github.com/kugaevsky/mousetrap-rails.git
Fetching gem metadata from http://rails-assets.org/...
Fetching version metadata from http://rails-assets.org/..
Fetching gem metadata from http://rubygems.org/.......
Fetching version metadata from http://rubygems.org/...
Fetching dependency metadata from http://rubygems.org/..
Resolving dependencies...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Using rake 10.5.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.4 (was 5.8.3)
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.0.0
Using rack 1.6.4
Using mime-types 1.25.1 (was 2.99)
Using arel 6.0.3
Using htmlentities 4.3.4
Using rubyzip 1.0.0
Using addressable 2.3.8 (was 2.4.0)
Using alertify-rails 0.2.0
Using angularjs-rails 1.5.0 (was 1.4.8)
Using ansi 1.5.0
Using cssmin 1.0.3
Using jsmin 1.0.1
Using ast 2.2.0
Using execjs 2.6.0
Using ice_nine 0.11.2
Using bundler 1.11.2
Using thor 0.19.1
Using concurrent-ruby 1.0.1 (was 1.0.0)
Using open4 1.3.4
Using backup-rails 1.0.3
Using bcrypt 3.1.11 (was 3.1.10)
Using coderay 1.1.1 (was 1.1.0)
Using debug_inspector 0.0.2
Using sass 3.4.21
Using bootstrap-select-rails 1.6.3
Using bootstrap_flash_messages 1.0.2
Using bower-rails 0.10.0
Using tilt 2.0.2
Using highline 1.7.8
Using sexp_processor 4.7.0 (was 4.6.0)
Using safe_yaml 1.0.4
Using temple 0.7.6
Using terminal-table 1.5.2
Using browser 2.0.2 (was 1.1.0)
Using uniform_notifier 1.9.0
Using bump 0.5.3
Using byebug 8.2.2 (was 8.2.1)
Using callsite 0.0.11
Using cancancan 1.13.1
Installing charlock_holmes 0.7.3 with native extensions
Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
current directory: /var/www/html/zadmin/vendor/ruby/2.2.0/gems/charlock_holmes-0.7.3/ext/charlock_holmes
/home/rails/.rbenv/versions/2.2.1/bin/ruby -r ./siteconf20160310-18087-1f3cy1b.rb extconf.rb
checking for main() in -licui18n... no
which: no brew in (/home/rails/.rbenv/versions/2.2.1/bin:/home/rails/.rbenv/libexec:/home/rails/.rbenv/plugins/ruby-build/bin:/home/rails/.rbenv/shims:/home/rails/.rbenv/bin:/home/rails/.rbenv/shims:/home/rails/.rbenv/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/rails/.local/bin:/home/rails/bin)
checking for main() in -licui18n... no
***************************************************************************************
*********** icu required (brew install icu4c or apt-get install libicu-dev) ***********
***************************************************************************************
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers. Check the mkmf.log file for more details. You may
need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/home/rails/.rbenv/versions/2.2.1/bin/$(RUBY_BASE_NAME)
--with-icu-dir
--without-icu-dir
--with-icu-include
--without-icu-include=${icu-dir}/include
--with-icu-lib
--without-icu-lib=${icu-dir}/lib
--with-icui18nlib
--without-icui18nlib
--with-icui18nlib
--without-icui18nlib
To see why this extension failed to compile, please check the mkmf.log which can be found here:
/var/www/html/zadmin/vendor/ruby/2.2.0/extensions/x86_64-linux/2.2.0-static/charlock_holmes-0.7.3/mkmf.log
extconf failed, exit code 1
Gem files will remain installed in /var/www/html/zadmin/vendor/ruby/2.2.0/gems/charlock_holmes-0.7.3 for inspection.
Results logged to /var/www/html/zadmin/vendor/ruby/2.2.0/extensions/x86_64-linux/2.2.0-static/charlock_holmes-0.7.3/gem_make.out
Using chartkick 1.4.2
Using choice 0.2.0
Using coffee-script-source 1.10.0
Using chunky_png 1.3.5
Using multi_json 1.11.2
Using rb-fsevent 0.9.7
Using ffi 1.9.10
Using chronic 0.10.2
Using numerizer 0.1.1
Using orm_adapter 0.5.0
Using clamav 0.4.1
Using cocoon 1.2.8 (was 1.2.6)
Using equalizer 0.0.11
Using colored 1.2
Using colorize 0.7.7
Using coordinate-converter 0.1.0
Using daemon-spawn 0.4.2
Using daemons 1.2.3
Using dalli 2.7.6 (was 2.7.5)
Using device_detector 0.8.2
Using devise-i18n 1.0.0 (was 0.12.1)
Using diff-lcs 1.2.5
Using diffy 3.1.0
Using docile 1.1.5
Using unf_ext 0.0.7.2 (was 0.0.7.1)
Using dotenv 2.1.0
Using rmagick 2.15.4
Using rspec-support 3.4.1
Using simplecov-html 0.10.0
Using yard 0.8.7.6
Using eventmachine 1.0.9.1
Using http_parser.rb 0.6.0
Using excon 0.48.0
Using exif 1.0.1
Using exifr 1.2.4
Using fast_xs 0.8.0
Using fastercsv 1.5.5
Using filesize 0.1.1
Using forgery 0.6.0
Using formatador 0.2.5
Using fspath 2.1.1
Using geocoder 1.3.1 (was 1.2.14)
Using geoutm 1.0.2
Using git 1.3.0
Using git-version-bump 0.15.1
Using logger 1.2.8
Using github-markup 1.4.0 (was 0.7.5)
Using posix-spawn 0.3.11
Using gmaps4rails 2.1.2
Using god 0.13.7
Using rouge 1.10.1
Using stringex 2.5.2
Using kramdown 1.8.0
Using mustache 0.99.8
Using useragent 0.14.0
Using google-analytics-rails 1.1.0 (was 1.0.0)
Using gritter 1.2.0
Using lumberjack 1.0.10
Using nenv 0.3.0 (was 0.2.0)
Using shellany 0.0.1
Using method_source 0.8.2
Using slop 3.6.0
Using guard-compat 1.2.1
Using netrc 0.11.0
Using hash-deep-merge 0.1.1
Using hashie 3.4.3
Using hirb 0.7.3
Using hodel_3000_compliant_logger 0.1.1
Using hpricot 0.8.6
Using httpclient 2.7.1
Using image_size 1.4.2 (was 1.4.1)
Using in_threads 1.3.1
Using progress 3.1.1
Using imgkit 1.6.1
Using interception 0.5
Using jruby-jars 1.7.24
Using jruby-rack 1.1.20
Using jwt 1.5.3 (was 1.5.2)
Using libv8 3.16.14.13
Using little-plugger 1.1.4
Using localstorageshim-rails 1.0.2
Using localtunnel 1.0.3 (was 1.0.2)
Using systemu 2.6.5
Using sqlite3 1.3.11
Using manifesto 0.7.0
Using mimemagic 0.3.0
Using mini_exiftool 2.5.1
Using mini_magick 4.4.0 (was 4.3.6)
Using sixarm_ruby_unaccent 1.1.1
Using mousetrap-rails 1.4.6 from git://github.com/kugaevsky/mousetrap-rails.git (at master@c8c357e)
Using multi_fetch_fragments 0.0.17
Using mysql2 0.3.20
Using net-ldap 0.14.0 (was 0.13.0)
Using nickel 0.1.6
Using nori 2.6.0
Using normalize-rails 3.0.3
Using nprogress-rails 0.1.6.7
Using oj 2.14.6 (was 2.14.3)
Using request_store 1.3.0
Using parallel 1.6.2 (was 1.6.1)
Using pdf-core 0.6.1
Using pg 0.18.4
Using powerpack 0.1.1
Using pr_geohash 1.0.0
Using ttfunk 1.4.0
Using puma 3.1.0 (was 2.15.3)
Using rack-offline 0.6.4
Using rack-ssl-enforcer 0.2.9
Using railroady 1.4.2
Using rails-assets-tether 1.2.0
Using ruby-graphviz 1.2.2
Using require_all 1.3.3
Using ruby-progressbar 1.7.5
Using rails_log_autotruncator 0.2.2
Using rainbow 2.1.0 (was 2.0.0)
Using redcarpet 3.3.4
Using ref 2.0.0
Using regexp-examples 1.2.0 (was 1.1.4)
Using remotipart 1.2.1
Using request-log-analyzer 1.13.4
Using rickshaw 0.3.1
Using rolify 5.0.0
Using ruby-ole 1.2.12
Using routes 0.2.0
Using unicode-display_width 1.0.2
Using ruby-prof 0.15.9
Using ruby_gntp 0.3.4
Using smarter_csv 1.1.0
Using spring 1.6.4 (was 1.6.2)
Using stackprof 0.2.8
Using trollop 2.1.2
Using strong_password 0.0.5 (was 0.0.4)
Using sunspot_solr 2.2.5 (was 2.2.3)
Using tins 1.9.0 (was 1.8.2)
Using time-lord 1.0.1
Using time_ago_in_words 0.1.1
Using ui_datepicker-rails3 1.2.0
Using underscore-rails 1.8.3
Using unix-crypt 1.3.0
Using wkhtmltoimage-binary 0.12.2
Using wkhtmltopdf-binary 0.9.9.3
Using rake-compiler 0.9.6 (was 0.9.5)
Using rdoc 4.2.2 (was 4.2.1)
Using tzinfo 1.2.2
Using descendants_tracker 0.0.4
Using gyoku 1.3.1
Using rsolr 1.1.1 (was 1.0.13)
Using nokogiri 1.6.7.2 (was 1.6.7.1)
Using rack-test 0.6.3
Using warden 1.2.6 (was 1.2.4)
Using rack-protection 1.5.3
Using httpi 2.4.1
Using passenger 5.0.26
Using rack-attack 4.4.1 (was 4.3.1)
Using rack-livereload 0.3.16
Using mail 2.6.3
Using fastimage 1.9.0 (was 1.8.1)
Using asset_hat 0.4.2
Using jammit 0.7.0
Using parser 2.3.0.6 (was 2.3.0.1)
Using autoprefixer-rails 6.3.3.1 (was 6.3.1)
Using uglifier 2.7.2
Using bundler-audit 0.5.0 (was 0.4.0)
Using figaro 1.1.1
Using foreman 0.78.0
Using sprockets 3.5.2
Using backup 3.4.0
Using bcrypt-ruby 3.1.5
Using better_errors 2.1.1
Using binding_of_caller 0.7.2
Using compass-import-once 1.0.5
Using font-awesome-sass 4.5.0
Using haml 4.0.7
Using commander 4.4.0 (was 4.3.5)
Using ruby_parser 3.8.1 (was 3.7.2)
Using code_analyzer 0.4.5
Using slim 3.0.6
An error occurred while installing charlock_holmes (0.7.3), and Bundler cannot continue.
Make sure that `gem install charlock_holmes -v '0.7.3'` succeeds before bundling.
Fetching git://github.com/Compass/compass-rails.git
Fetching git://github.com/qpowell/chosen-rails.git
Fetching git://github.com/derekprior/momentjs-rails.git
Fetching git://github.com/ctran/annotate_models.git
Fetching git://github.com/thedarkone/rails-dev-boost.git
Fetching git://github.com/radar/dotiw.git
Fetching git://github.com/lwe/page_title_helper.git
Fetching git://github.com/kugaevsky/mousetrap-rails.git
Fetching gem metadata from http://rails-assets.org/...
Fetching version metadata from http://rails-assets.org/..
Fetching gem metadata from http://rubygems.org/.......
Fetching version metadata from http://rubygems.org/...
Fetching dependency metadata from http://rubygems.org/..
Resolving dependencies...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Using rake 10.5.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.4 (was 5.8.3)
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using mini_portile2 2.0.0
Using rack 1.6.4
Using mime-types 1.25.1 (was 2.99)
Using arel 6.0.3
Using htmlentities 4.3.4
Using rubyzip 1.0.0
Using addressable 2.3.8 (was 2.4.0)
Using alertify-rails 0.2.0
Using angularjs-rails 1.5.0 (was 1.4.8)
Using ansi 1.5.0
Using cssmin 1.0.3
Using jsmin 1.0.1
Using ast 2.2.0
Using execjs 2.6.0
Using ice_nine 0.11.2
Using bundler 1.11.2
Using thor 0.19.1
Using concurrent-ruby 1.0.1 (was 1.0.0)
Using open4 1.3.4
Using backup-rails 1.0.3
Using bcrypt 3.1.11 (was 3.1.10)
Using coderay 1.1.1 (was 1.1.0)
Using debug_inspector 0.0.2
Using sass 3.4.21
Using bootstrap-select-rails 1.6.3
Using bootstrap_flash_messages 1.0.2
Using bower-rails 0.10.0
Using tilt 2.0.2
Using highline 1.7.8
Using sexp_processor 4.7.0 (was 4.6.0)
Using safe_yaml 1.0.4
Using temple 0.7.6
Using terminal-table 1.5.2
Using browser 2.0.2 (was 1.1.0)
Using uniform_notifier 1.9.0
Using bump 0.5.3
Using byebug 8.2.2 (was 8.2.1)
Using callsite 0.0.11
Using cancancan 1.13.1
Installing charlock_holmes 0.7.3 with native extensions
Using chartkick 1.4.2
Using choice 0.2.0
Using coffee-script-source 1.10.0
Using chunky_png 1.3.5
Using multi_json 1.11.2
Using rb-fsevent 0.9.7
Using ffi 1.9.10
Using chronic 0.10.2
Using numerizer 0.1.1
Using orm_adapter 0.5.0
Using clamav 0.4.1
Using cocoon 1.2.8 (was 1.2.6)
Using equalizer 0.0.11
Using colored 1.2
Using colorize 0.7.7
Using coordinate-converter 0.1.0
Using daemon-spawn 0.4.2
Using daemons 1.2.3
Using dalli 2.7.6 (was 2.7.5)
Using device_detector 0.8.2
Using devise-i18n 1.0.0 (was 0.12.1)
Using diff-lcs 1.2.5
Using diffy 3.1.0
Using docile 1.1.5
Using unf_ext 0.0.7.2 (was 0.0.7.1)
Using dotenv 2.1.0
Using rmagick 2.15.4
Using rspec-support 3.4.1
Using simplecov-html 0.10.0
Using yard 0.8.7.6
Using eventmachine 1.0.9.1
Using http_parser.rb 0.6.0
Using excon 0.48.0
Using exif 1.0.1
Using exifr 1.2.4
Using fast_xs 0.8.0
Using fastercsv 1.5.5
Using filesize 0.1.1
Using forgery 0.6.0
Using formatador 0.2.5
Using fspath 2.1.1
Using geocoder 1.3.1 (was 1.2.14)
Using geoutm 1.0.2
Using git 1.3.0
Using git-version-bump 0.15.1
Using logger 1.2.8
Using github-markup 1.4.0 (was 0.7.5)
Using posix-spawn 0.3.11
Using gmaps4rails 2.1.2
Using god 0.13.7
Using rouge 1.10.1
Using stringex 2.5.2
Using kramdown 1.8.0
Using mustache 0.99.8
Using useragent 0.14.0
Using google-analytics-rails 1.1.0 (was 1.0.0)
Using gritter 1.2.0
Using lumberjack 1.0.10
Using nenv 0.3.0 (was 0.2.0)
Using shellany 0.0.1
Using method_source 0.8.2
Using slop 3.6.0
Using guard-compat 1.2.1
Using netrc 0.11.0
Using hash-deep-merge 0.1.1
Using hashie 3.4.3
Using hirb 0.7.3
Using hodel_3000_compliant_logger 0.1.1
Using hpricot 0.8.6
Using httpclient 2.7.1
Using image_size 1.4.2 (was 1.4.1)
Using in_threads 1.3.1
Using progress 3.1.1
Using imgkit 1.6.1
Using interception 0.5
Using jruby-jars 1.7.24
Using jruby-rack 1.1.20
Using jwt 1.5.3 (was 1.5.2)
Using libv8 3.16.14.13
Using little-plugger 1.1.4
Using localstorageshim-rails 1.0.2
Using localtunnel 1.0.3 (was 1.0.2)
Using systemu 2.6.5
Using sqlite3 1.3.11
Using manifesto 0.7.0
Using mimemagic 0.3.0
Using mini_exiftool 2.5.1
Using mini_magick 4.4.0 (was 4.3.6)
Using sixarm_ruby_unaccent 1.1.1
Using mousetrap-rails 1.4.6 from git://github.com/kugaevsky/mousetrap-rails.git (at master@c8c357e)
Using multi_fetch_fragments 0.0.17
Using mysql2 0.3.20
Using net-ldap 0.14.0 (was 0.13.0)
Using nickel 0.1.6
Using nori 2.6.0
Using normalize-rails 3.0.3
Using nprogress-rails 0.1.6.7
Using oj 2.14.6 (was 2.14.3)
Using request_store 1.3.0
Using parallel 1.6.2 (was 1.6.1)
Using pdf-core 0.6.1
Using pg 0.18.4
Using powerpack 0.1.1
Using pr_geohash 1.0.0
Using ttfunk 1.4.0
Using puma 3.1.0 (was 2.15.3)
Using rack-offline 0.6.4
Using rack-ssl-enforcer 0.2.9
Using railroady 1.4.2
Using rails-assets-tether 1.2.0
Using ruby-graphviz 1.2.2
Using require_all 1.3.3
Using ruby-progressbar 1.7.5
Using rails_log_autotruncator 0.2.2
Using rainbow 2.1.0 (was 2.0.0)
Using redcarpet 3.3.4
Using ref 2.0.0
Using regexp-examples 1.2.0 (was 1.1.4)
Using remotipart 1.2.1
Using request-log-analyzer 1.13.4
Using rickshaw 0.3.1
Using rolify 5.0.0
Using ruby-ole 1.2.12
Using routes 0.2.0
Using unicode-display_width 1.0.2
Using ruby-prof 0.15.9
Using ruby_gntp 0.3.4
Using smarter_csv 1.1.0
Using spring 1.6.4 (was 1.6.2)
Using stackprof 0.2.8
Using trollop 2.1.2
Using strong_password 0.0.5 (was 0.0.4)
Using sunspot_solr 2.2.5 (was 2.2.3)
Using tins 1.9.0 (was 1.8.2)
Using time-lord 1.0.1
Using time_ago_in_words 0.1.1
Using ui_datepicker-rails3 1.2.0
Using underscore-rails 1.8.3
Using unix-crypt 1.3.0
Using wkhtmltoimage-binary 0.12.2
Using wkhtmltopdf-binary 0.9.9.3
Using rake-compiler 0.9.6 (was 0.9.5)
Using rdoc 4.2.2 (was 4.2.1)
Using tzinfo 1.2.2
Using descendants_tracker 0.0.4
Using gyoku 1.3.1
Using rsolr 1.1.1 (was 1.0.13)
Using nokogiri 1.6.7.2 (was 1.6.7.1)
Using rack-test 0.6.3
Using warden 1.2.6 (was 1.2.4)
Using rack-protection 1.5.3
Using httpi 2.4.1
Using passenger 5.0.26
Using rack-attack 4.4.1 (was 4.3.1)
Using rack-livereload 0.3.16
Using mail 2.6.3
Using fastimage 1.9.0 (was 1.8.1)
Using asset_hat 0.4.2
Using jammit 0.7.0
Using parser 2.3.0.6 (was 2.3.0.1)
Using autoprefixer-rails 6.3.3.1 (was 6.3.1)
Using uglifier 2.7.2
Using bundler-audit 0.5.0 (was 0.4.0)
Using figaro 1.1.1
Using foreman 0.78.0
Using sprockets 3.5.2
Using backup 3.4.0
Using bcrypt-ruby 3.1.5
Using better_errors 2.1.1
Using binding_of_caller 0.7.2
Using compass-import-once 1.0.5
Using font-awesome-sass 4.5.0
Using haml 4.0.7
Using commander 4.4.0 (was 4.3.5)
Using ruby_parser 3.8.1 (was 3.7.2)
Using code_analyzer 0.4.5
Using slim 3.0.6
Using coffee-script 2.4.1
Using compass-core 1.0.3
Installing rollbar 2.8.3 (was 2.7.1)
Installing rb-inotify 0.9.7 (was 0.9.5)
Using whenever 0.9.4
Using chronic_duration 0.10.6
Using unf 0.1.4
Installing rspec-core 3.4.4 (was 3.4.1)
Using rspec-expectations 3.4.0
Using rspec-mocks 3.4.1
Installing simplecov 0.11.2 (was 0.11.1)
Using thin 1.5.1
Using em-websocket 0.5.1
Using simple_xlsx_writer 0.5.3
Using rack-contrib 1.4.0
Using git_time_extractor 0.3.2
Installing gitlab-grit 2.7.3
Using notiffany 0.0.8
Using zeus 0.15.4
Using pry 0.10.3
Using lazy_high_charts 1.5.5
Using omniauth 1.3.1
Using raakt 0.5.6
Using smusher 0.4.9
Installing image_optim 0.22.1 (was 0.22.0)
Using warbler 1.4.9
Using logging 1.8.2
Using macaddr 1.7.1
Using money 6.7.0
Using queue_classic 3.1.0
Using prawn 2.1.0
Using therubyracer 0.12.2
Using spreadsheet 1.1.1
Using term-ansicolor 1.3.2
Using fast_stack 0.1.0
Using css_parser 1.2.6
Using sdoc 0.4.1
Using activesupport 4.2.0
Using axiom-types 0.1.1
Using coercible 1.0.0
Installing sunspot 2.2.5 (was 2.2.3)
Using loofah 2.0.3
Using axlsx 2.0.1
Using akami 1.3.1
Installing sanitize 2.1.0 (was 1.0.8)
Installing sinatra 1.4.7 (was 1.4.6)
Using wasabi 3.5.0
Installing rubocop 0.38.0 (was 0.36.0)
Using bootstrap-sass 3.3.6
Using css_splitter 0.4.4
Installing ruby2ruby 2.3.0 (was 2.2.0)
Installing flay 2.7.0 (was 2.6.1)
Using compass 1.0.3
Installing listen 3.0.6 (was 3.0.5)
Installing domain_name 0.5.20160309 (was 0.5.25)
Using skinny 0.2.4
Installing gollum-grit_adapter 1.0.0
Using pry-doc 0.8.0
Using pry-rescue 1.4.2
Using pry-stack_explorer 0.4.9.2
Installing image_optim_pack 0.2.1.20160221 (was 0.2.1.20160119)
Using uuid 2.3.8
Using monetize 1.4.0
Using roo 1.13.2
Using flamegraph 0.1.0
Using deadweight 0.2.2
Using rails-deprecated_sanitizer 1.0.3
Using globalid 0.3.6
Using active_hash 1.4.1
Using activemodel 4.2.0
Using bullet 5.0.0
Using climate_control 0.0.3
Using delayed_job 4.1.1
Using groupdate 2.5.2
Installing jbuilder 2.4.1 (was 2.4.0)
Using rails-translate-routes 0.1.3
Installing rails_best_practices 1.16.0 (was 1.15.7)
Using umlify 1.2.6
Using utf8-cleaner 0.2.1
Using virtus 1.0.5
Installing rails-html-sanitizer 1.0.3 (was 1.0.2)
Using stickler 2.4.2
Using savon 2.11.1
Installing brakeman 3.2.1 (was 3.1.4)
Using guard 2.13.0
Using http-cookie 1.0.2
Installing mailcatcher 0.6.4 (was 0.6.3)
Installing gollum-lib 4.2.0
Using ruby-growl 4.1
Using rails-dom-testing 1.0.7
Using activejob 4.2.0
Using activerecord 4.2.0
Using password_strength 1.1.1
Using rails_email_validator 0.1.4
Using strip_attributes 1.7.1
Installing valid_email 0.0.12 (was 0.0.11)
Using validate_url 1.0.2
Using validates_formatting_of 0.9.0
Using cocaine 0.5.8
Installing codeclimate-engine-rb 0.3.1
Using guard-bundler 2.1.0
Installing guard-livereload 2.5.2 (was 2.5.1)
Using rest-client 1.8.0
Installing gollum 4.0.1 (was 1.0.0)
Using actionview 4.2.0
Using active_median 0.1.2
Using acts-as-taggable-on 3.5.0
Using acts_as_xlsx 1.0.6
Using annotate 2.7.0 from git://github.com/ctran/annotate_models.git (at master@56abbaa)
Using delayed_job_active_record 4.1.0
Using goldiloader 0.0.10
Using guard-migrate 1.2.1
Using habtm_generator 0.5
Using oink 0.10.1
Using paper_trail 4.0.2
Using persistize 0.2.0
Using polyamorous 1.3.0
Installing rails-erd 1.4.6 (was 1.4.5)
Using seed-fu 2.3.5
Using seed_dump 3.2.4
Using ckeditor 4.1.6
Installing paperclip 4.3.5 (was 4.3.2)
Installing reek 3.11 (was 1.4.0)
Using hakiri 0.7.2
Using actionpack 4.2.0
Using paperclip-meta 2.0.0
Using paperclip-optimizer 2.0.0
Using xls_to_csv-paperclip-processor 0.4.5
Using actionmailer 4.2.0
Using active_link_to 1.0.3
Using railties 4.2.0
Installing sprockets-rails 3.0.4 (was 3.0.0)
Using dotiw 3.1.1 (was 3.0.1) from git://github.com/radar/dotiw.git (at master@3be9d26)
Using health_monitor 0.1.4
Using kaminari 0.16.3
Using meta-tags 2.1.0
Using rails-timeago 2.13.0
Using ransack 1.7.0
Using simple_form 3.2.1
Installing bootstrap-datepicker-rails 1.6.0 (was 1.5.0)
Using bootstrap-modal-rails 2.2.5
Using coffee-rails 4.1.1
Using responders 2.1.1
Using dotenv-rails 2.1.0
Installing rspec-rails 3.4.2 (was 3.4.0)
Installing font-awesome-rails 4.5.0.1 (was 4.5.0.0)
Using garlicjs-rails 1.2.2
Using highcharts-rails 4.1.9
Using historyjs-rails 1.0.1
Using jquery-cookie-rails 1.3.1.1
Installing jquery-rails 4.1.1 (was 4.1.0)
Installing jquery-tablesorter 1.20.5 (was 1.20.2)
Using jquery-ui-rails 5.0.5
Installing lograge 0.3.6 (was 0.3.5)
Using lol_dba 2.0.3
Installing meta_request 0.4.0 (was 0.3.4)
Using momentjs-rails 2.11.0 from git://github.com/derekprior/momentjs-rails.git (at master@eda1b74)
Using money-rails 1.6.0
Using multi-select-rails 0.9.12
Installing public_activity 1.4.3 (was 1.4.2)
Using quiet_assets 1.1.0
Using rails-dev-boost 0.3.0 from git://github.com/thedarkone/rails-dev-boost.git (at master@a709a10)
Using rails-dev-tweaks 1.2.0
Using rails-i18n 4.0.8
Using slim-rails 3.0.1
Using toastr-rails 1.0.3
Using rails 4.2.0
Using sass-rails 5.0.4
Using js-routes 1.2.4
Installing web-console 2.3.0 (was 2.2.1)
Using simple_form_bootstrap3 0.3.6
Using turbolinks 2.5.3
Using devise 3.4.1
Using axlsx_rails 0.4.0
Installing dropzonejs-rails 0.7.3 (was 0.7.2)
Using easy_captcha 0.6.5
Using evercookie 0.1.2
Using gretel 3.0.8
Using jquery-lazy-images 0.3.2
Using kaminari-bootstrap 3.0.1
Using kaminari-i18n 0.3.2
Using page_title_helper 2.1.0 from git://github.com/lwe/page_title_helper.git (at master@8ffc76b)
Using rails-footnotes 4.1.8
Using sextant 0.2.4
Installing sunspot_rails 2.2.5 (was 2.2.3)
Using traceroute 0.5.0
Using yaml_db 0.3.0
Using compass-rails 3.0.2 (was 3.0.0) from git://github.com/Compass/compass-rails.git (at master@62e37c7)
Using jquery-turbolinks 2.1.0
Using turboboost 0.1.0
Installing devise_security_extension 0.10.0 (was 0.9.2)
Using devise_token_auth 0.1.33
Using chosen-rails 1.4.1 from git://github.com/qpowell/chosen-rails.git (at master@171f33b)
Updating files in vendor/cache
* minitest-5.8.4.gem
* nokogiri-1.6.7.2.gem
* rails-html-sanitizer-1.0.3.gem
* mime-types-1.25.1.gem
* addressable-2.3.8.gem
* angularjs-rails-1.5.0.gem
* autoprefixer-rails-6.3.3.1.gem
* descendants_tracker-0.0.4.gem
* ice_nine-0.11.2.gem
* axiom-types-0.1.1.gem
* concurrent-ruby-1.0.1.gem
* sprockets-rails-3.0.4.gem
* bcrypt-3.1.11.gem
* coderay-1.1.1.gem
* bootstrap-datepicker-rails-1.6.0.gem
* sexp_processor-4.7.0.gem
* ruby_parser-3.8.1.gem
* ruby2ruby-2.3.0.gem
* brakeman-3.2.1.gem
* browser-2.0.2.gem
* bundler-audit-0.5.0.gem
* byebug-8.2.2.gem
* charlock_holmes-0.7.3.gem
* rb-inotify-0.9.7.gem
/var/www/html/zadmin/vendor/cache/chosen-rails-171f33b17034/lib/chosen-rails/version.rb:3: warning: already initialized constant Chosen::Rails::VERSION
/var/www/html/zadmin/vendor/ruby/2.2.0/bundler/gems/chosen-rails-171f33b17034/lib/chosen-rails/version.rb:3: warning: previous definition of VERSION was here
/var/www/html/zadmin/vendor/cache/chosen-rails-171f33b17034/lib/chosen-rails/version.rb:4: warning: already initialized constant Chosen::Rails::CHOSEN_VERSION
/var/www/html/zadmin/vendor/ruby/2.2.0/bundler/gems/chosen-rails-171f33b17034/lib/chosen-rails/version.rb:4: warning: previous definition of CHOSEN_VERSION was here
* cocoon-1.2.8.gem
* coercible-1.0.0.gem
* equalizer-0.0.11.gem
* virtus-1.0.5.gem
* codeclimate-engine-rb-0.3.1.gem
* commander-4.4.0.gem
* rdoc-4.2.2.gem
* dalli-2.7.6.gem
* warden-1.2.6.gem
* devise-i18n-1.0.0.gem
* devise_security_extension-0.10.0.gem
* unf_ext-0.0.7.2.gem
* domain_name-0.5.20160309.gem
* dropzonejs-rails-0.7.3.gem
* rspec-core-3.4.4.gem
* rspec-rails-3.4.2.gem
* simplecov-0.11.2.gem
* rake-compiler-0.9.6.gem
* fastimage-1.9.0.gem
* flay-2.7.0.gem
* font-awesome-rails-4.5.0.1.gem
* geocoder-1.3.1.gem
* github-markup-1.4.0.gem
* gitlab-grit-2.7.3.gem
* gollum-grit_adapter-1.0.0.gem
* rouge-1.10.1.gem
* sanitize-2.1.0.gem
* stringex-2.5.2.gem
* gollum-lib-4.2.0.gem
* kramdown-1.8.0.gem
* sinatra-1.4.7.gem
* useragent-0.14.0.gem
* gollum-4.0.1.gem
* google-analytics-rails-1.1.0.gem
* listen-3.0.6.gem
* nenv-0.3.0.gem
* guard-livereload-2.5.2.gem
* image_size-1.4.2.gem
* image_optim-0.22.1.gem
* image_optim_pack-0.2.1.20160221.gem
* jbuilder-2.4.1.gem
* jquery-rails-4.1.1.gem
* jquery-tablesorter-1.20.5.gem
* jwt-1.5.3.gem
* localtunnel-1.0.3.gem
* lograge-0.3.6.gem
* mailcatcher-0.6.4.gem
* meta_request-0.4.0.gem
* mini_magick-4.4.0.gem
* net-ldap-0.14.0.gem
* oj-2.14.6.gem
* paperclip-4.3.5.gem
* parallel-1.6.2.gem
* parser-2.3.0.6.gem
* public_activity-1.4.3.gem
* puma-3.1.0.gem
* rack-attack-4.4.1.gem
* rails-erd-1.4.6.gem
* rails_best_practices-1.16.0.gem
* rainbow-2.1.0.gem
* reek-3.11.gem
* regexp-examples-1.2.0.gem
* rollbar-2.8.3.gem
* rsolr-1.1.1.gem
* unicode-display_width-1.0.2.gem
* rubocop-0.38.0.gem
* spring-1.6.4.gem
* strong_password-0.0.5.gem
* sunspot-2.2.5.gem
* sunspot_rails-2.2.5.gem
* sunspot_solr-2.2.5.gem
* tins-1.9.0.gem
* valid_email-0.0.12.gem
* web-console-2.3.0.gem
Removing outdated .gem files from vendor/cache
* minitest-5.8.3.gem
* nokogiri-1.6.7.1.gem
* rails-html-sanitizer-1.0.2.gem
* mime-types-2.99.gem
* addressable-2.4.0.gem
* angularjs-rails-1.4.8.gem
* concurrent-ruby-1.0.0.gem
* sprockets-rails-3.0.0.gem
* bcrypt-3.1.10.gem
* coderay-1.1.0.gem
* bootstrap-datepicker-rails-1.5.0.gem
* sexp_processor-4.6.0.gem
* ruby_parser-3.7.2.gem
* ruby2ruby-2.2.0.gem
* brakeman-3.1.4.gem
* bundler-audit-0.4.0.gem
* byebug-8.2.1.gem
* rb-inotify-0.9.5.gem
* albino-1.3.3.gem
* gollum-1.0.0.gem
* cocoon-1.2.6.gem
* commander-4.3.5.gem
* rdoc-4.2.1.gem
* dalli-2.7.5.gem
* warden-1.2.4.gem
* devise-i18n-0.12.1.gem
* devise_security_extension-0.9.2.gem
* unf_ext-0.0.7.1.gem
* domain_name-0.5.25.gem
* dropzonejs-rails-0.7.2.gem
* rspec-core-3.4.1.gem
* rspec-rails-3.4.0.gem
* simplecov-0.11.1.gem
* rake-compiler-0.9.5.gem
* fastimage-1.8.1.gem
* flay-2.6.1.gem
* font-awesome-rails-4.5.0.0.gem
* geocoder-1.2.14.gem
* listen-3.0.5.gem
* nenv-0.2.0.gem
* guard-livereload-2.5.1.gem
* sanitize-1.0.8.gem
* image_size-1.4.1.gem
* image_optim-0.22.0.gem
* grit-2.0.0.gem
* jbuilder-2.4.0.gem
* github-markup-0.7.5.gem
* jwt-1.5.2.gem
* localtunnel-1.0.2.gem
* lograge-0.3.5.gem
* sinatra-1.4.6.gem
* meta_request-0.3.4.gem
* mini_magick-4.3.6.gem
* paperclip-4.3.2.gem
* parallel-1.6.1.gem
* public_activity-1.4.2.gem
* puma-2.15.3.gem
* rack-attack-4.3.1.gem
* rails_best_practices-1.15.7.gem
* rainbow-2.0.0.gem
* rollbar-2.7.1.gem
* rsolr-1.0.13.gem
* strong_password-0.0.4.gem
* sunspot-2.2.3.gem
* sunspot_rails-2.2.3.gem
* sunspot_solr-2.2.3.gem
* valid_email-0.0.11.gem
* web-console-2.2.1.gem
* autoprefixer-rails-6.3.1.gem
* browser-1.1.0.gem
* google-analytics-rails-1.0.0.gem
* image_optim_pack-0.2.1.20160119.gem
* jquery-rails-4.1.0.gem
* jquery-tablesorter-1.20.2.gem
* mailcatcher-0.6.3.gem
* net-ldap-0.13.0.gem
* oj-2.14.3.gem
* parser-2.3.0.1.gem
* rails-erd-1.4.5.gem
* reek-1.4.0.gem
* regexp-examples-1.1.4.gem
* rubocop-0.36.0.gem
* spring-1.6.2.gem
* tins-1.8.2.gem
Removing outdated git and path gems from vendor/cache
* dotiw-6f90bbc46a05
* compass-rails-a1c890628d61
* page_title_helper-9e4a25b9ad50
Bundle updated!
! Unable to load application: Gem::LoadError: You have already activated puma 2.15.3, but your Gemfile requires puma 3.1.0. Prepending `bundle exec` to your command may solve this.
/home/rails/.rbenv/versions/2.2.1/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:34:in `block in setup': You have already activated puma 2.15.3, but your Gemfile requires puma 3.1.0. Prepending `bundle exec` to your command may solve this. (Gem::LoadError)
bundler: exec needs a command to run
I has this problems at deploy, steps below:
0 - Fine and Working but...
1 - First (git pull)
2 - bundle install
3 - Start puma server
4 - Try to run "db:migrate:status"
5 - Try "bundle update"
6 - Instaled libicu and libicu-devel
7 - Again "bundle update"
8 - Try to load Puma server
9 - Try "bundle exec"
10 - Try "bundle exec rake"
11 - and same crash like Step 3
12 - Changed some Gem Versions
13 - Try "rails s " and "bundle exec rails s"
14 - Trt "bundle config --delete bin && rake rails:update:bin"
15 - Try "rails s --trace"
16 - Try "gem remove activesupport"
17 - Try "rails s"
18 - "gem env"
19 - Try "bundle install --no-development"
20 - Try "bundle install --development"
21 - Try "gem list"
22 - Try Remove Gemfile.lock
23 - Problem still
24 - http://stackoverflow.com/questions/35927463/rails-rubygems-dependency-rb318in-to-specs-could-not-find-activesupport
25 - http://stackoverflow.com/questions/35925806/rails-bundler-runtime-rbin-block-in-setup-you-have-already-activated-active
Please Help me...
@jaxtonkael
Copy link

Have you tried gem update ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment