rubygems / bundler

Manage your Ruby application's gem dependencies
https://bundler.io
MIT License
4.88k stars 2k forks source link

bundler was not working as expected and throwing some error messages #6061

Closed pavan93 closed 6 years ago

pavan93 commented 7 years ago

The latest bundler is 1.16.0.pre.2, but you are currently running 1.15.4. To update, run gem install bundler --pre --- ERROR REPORT TEMPLATE -------------------------------------------------------

Error Report

Questions

Please fill out answers to these questions, it'll help us figure out why things are going wrong.

Backtrace

NoMethodError: undefined method `trace=' for #<Bundler::UI::Shell:0x3860028>
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/source/git.rb:203:in `rescue in load_spec_files'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/source/git.rb:201:in `load_spec_files'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/source/path.rb:97:in `local_specs'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/source/git.rb:166:in `specs'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/definition.rb:246:in `block (2 levels) in index'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/definition.rb:244:in `each'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/definition.rb:244:in `block in index'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/index.rb:10:in `build'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/definition.rb:241:in `index'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/definition.rb:235:in `resolve'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/definition.rb:199:in `missing_dependencies'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/installer.rb:219:in `block in resolve_if_need'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/ui/shell.rb:127:in `with_level'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/ui/shell.rb:86:in `silence'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/installer.rb:216:in `resolve_if_need'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/installer.rb:78:in `run'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/installer.rb:24:in `install'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/cli/install.rb:68:in `run'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/cli.rb:188:in `block in install'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/settings.rb:92:in `temporary'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/cli.rb:187:in `install'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/vendor/thor/lib/thor.rb:387:in `dispatch'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/cli.rb:22:in `dispatch'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/vendor/thor/lib/thor/base.rb:466:in `start'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/cli.rb:13:in `start'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/exe/bundle:30:in `block in <top (required)>'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/lib/bundler/friendly_errors.rb:121:in `with_friendly_errors'
  C:/Users/pavankumar/.gems/gems/bundler-1.15.4/exe/bundle:22:in `<top (required)>'
  C:/Users/pavankumar/.gems/bin/bundle:23:in `load'
  C:/Users/pavankumar/.gems/bin/bundle:23:in `<top (required)>'
  -e:1:in `load'
  -e:1:in `<main>'

Environment

Bundler   1.15.4
Rubygems  2.6.13
Ruby      2.3.3p222 (2016-11-21 revision 56859) [i386-mingw32]
GEM_HOME  C:/Users/pavankumar/.gems
GEM_PATH  C:\Users\pavankumar\.gems\bin
Git       not installed
Platform  x86-mingw32
OpenSSL   OpenSSL 1.0.2j  26 Sep 2016

Bundler settings

gem.test
  Set for the current user (C:/Users/pavankumar/.bundle/config): "minitest"

Gemfile

Gemfile

# frozen_string_literal: true

source "https://rubygems.org"

git_source(:github) { |repo| "https://github.com/#{repo}.git" }

gemspec

gem "arel", github: "rails/arel"

# We need a newish Rake since Active Job sets its test tasks' descriptions.
gem "rake", ">= 11.1"

# This needs to be with require false to ensure correct loading order, as it has to
# be loaded after loading the test library.
gem "mocha", require: false

gem "capybara", "~> 2.15"

gem "rack-cache", "~> 1.2"
gem "jquery-rails"
gem "coffee-rails"
gem "sass-rails", github: "rails/sass-rails", branch: "5-0-stable"
gem "turbolinks", "~> 5"
gem 'bundler'

gem 'rack', '~> 2.0.1'
gem 'rspec'

# require: false so bcrypt is loaded only when has_secure_password is used.
# This is to avoid Active Model (and by extension the entire framework)
# being dependent on a binary library.
gem "bcrypt", "~> 3.1.11", require: false

# This needs to be with require false to avoid it being automatically loaded by
# sprockets.
gem "uglifier", ">= 1.3.0", require: false

# Explicitly avoid 1.x that doesn't support Ruby 2.4+
gem "json", ">= 2.0.0"

gem "rubocop", ">= 0.47", require: false

# https://github.com/guard/rb-inotify/pull/79
gem "rb-inotify", github: "matthewd/rb-inotify", branch: "close-handling", require: false

group :doc do
  gem "sdoc", github: "robin850/sdoc", branch: "upgrade"
  gem "redcarpet", "~> 3.2.3", platforms: :ruby
  gem "w3c_validators"
  gem "kindlerb", "~> 1.2.0"
end

# Active Support.
gem "dalli", ">= 2.2.1"
gem "listen", ">= 3.0.5", "< 3.2", require: false
gem "libxml-ruby", platforms: :ruby

# Action View. For testing Erubis handler deprecation.
gem "erubis", "~> 2.7.0", require: false

# for railties app_generator_test
gem "bootsnap", ">= 1.1.0", require: false

# Active Job.
group :job do
  gem "resque", require: false
  gem "resque-scheduler", require: false
  gem "sidekiq", require: false
  gem "sucker_punch", require: false
  gem "delayed_job", require: false
  gem "queue_classic", github: "QueueClassic/queue_classic", branch: "master", require: false, platforms: :ruby
  gem "sneakers", require: false
  gem "que", require: false
  gem "backburner", require: false
  #TODO: add qu after it support Rails 5.1
  # gem 'qu-rails', github: "bkeepers/qu", branch: "master", require: false
  # gem "qu-redis", require: false
  gem "delayed_job_active_record", require: false
  gem "sequel", require: false
end

# Action Cable
group :cable do
  gem "puma", require: false

  gem "em-hiredis", require: false
  gem "hiredis", require: false
  gem "redis", require: false

  gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false

  gem "blade", require: false, platforms: [:ruby]
  gem "blade-sauce_labs_plugin", require: false, platforms: [:ruby]
  gem "sprockets-export", require: false
end

group :storage do
  gem "aws-sdk-s3", require: false
  gem "google-cloud-storage", "~> 1.3", require: false
  gem "azure-storage", require: false

  gem "mini_magick"
end

# Add your own local bundler stuff.
local_gemfile = File.expand_path(".Gemfile", __dir__)
instance_eval File.read local_gemfile if File.exist? local_gemfile

group :test do
  gem "minitest-bisect"

  platforms :mri do
    gem "stackprof"
    gem "byebug"
  end

  gem "benchmark-ips"
end

platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
  gem "nokogiri", ">= 1.6.8"

  # Needed for compiling the ActionDispatch::Journey parser.
  gem "racc", ">=1.4.6", require: false

  # Active Record.
  gem "sqlite3", "~> 1.3.6"

  group :db do
    gem "pg", ">= 0.18.0"
    gem "mysql2", ">= 0.4.4"
  end
end

platforms :jruby do
  if ENV["AR_JDBC"]
    gem "activerecord-jdbcsqlite3-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
    group :db do
      gem "activerecord-jdbcmysql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
      gem "activerecord-jdbcpostgresql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
    end
  else
    gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0"
    group :db do
      gem "activerecord-jdbcmysql-adapter", ">= 1.3.0"
      gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0"
    end
  end
end

platforms :rbx do
  # The rubysl-yaml gem doesn't ship with Psych by default as it needs
  # libyaml that isn't always available.
  gem "psych", "~> 2.0"
end

# Gems that are necessary for Active Record tests with Oracle.
if ENV["ORACLE_ENHANCED"]
  platforms :ruby do
    gem "ruby-oci8", "~> 2.2"
  end
  gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
end

# A gem necessary for Active Record tests with IBM DB.
gem "ibm_db" if ENV["IBM_DB"]
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64]
gem 'execjs'

Gemfile.lock

GIT
  remote: https://github.com/QueueClassic/queue_classic.git
  revision: cde82d17ded2799ed726dd7b0df6ce1fd4c1b7da
  branch: master
  specs:
    queue_classic (3.2.0.RC1)
      pg (>= 0.17, < 0.20)

GIT
  remote: https://github.com/matthewd/rb-inotify.git
  revision: 856730aad4b285969e8dd621e44808a7c5af4242
  branch: close-handling
  specs:
    rb-inotify (0.9.9)
      ffi (~> 1.0)

GIT
  remote: https://github.com/matthewd/websocket-client-simple.git
  revision: e161305f1a466b9398d86df3b1731b03362da91b
  branch: close-race
  specs:
    websocket-client-simple (0.3.0)
      event_emitter
      websocket

GIT
  remote: https://github.com/rails/arel.git
  revision: 42510bf71472e2e35d9becb546edd05562672344
  specs:
    arel (9.0.0.alpha)

GIT
  remote: https://github.com/rails/sass-rails.git
  revision: bb5c1d34e8acad2e2960cc785184ffe17d7b3bca
  branch: 5-0-stable
  specs:
    sass-rails (5.0.6)
      railties (>= 4.0.0, < 6)
      sass (~> 3.1)
      sprockets (>= 2.8, < 4.0)
      sprockets-rails (>= 2.0, < 4.0)
      tilt (>= 1.1, < 3)

GIT
  remote: https://github.com/robin850/sdoc.git
  revision: 0e340352f3ab2f196c8a8743f83c2ee286e4f71c
  branch: upgrade
  specs:
    sdoc (1.0.0.rc2)
      rdoc (~> 5.0)

PATH
  remote: .
  specs:
    actioncable (5.2.0.alpha)
      actionpack (= 5.2.0.alpha)
      nio4r (~> 2.0)
      websocket-driver (~> 0.6.1)
    actionmailer (5.2.0.alpha)
      actionpack (= 5.2.0.alpha)
      actionview (= 5.2.0.alpha)
      activejob (= 5.2.0.alpha)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 2.0)
    actionpack (5.2.0.alpha)
      actionview (= 5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
      rack (~> 2.0)
      rack-test (>= 0.6.3)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.0.2)
    actionview (5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
      builder (~> 3.1)
      erubi (~> 1.4)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.0.3)
    activejob (5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
      globalid (>= 0.3.6)
    activemodel (5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
    activerecord (5.2.0.alpha)
      activemodel (= 5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
      arel (= 9.0.0.alpha)
    activestorage (5.2.0.alpha)
      actionpack (= 5.2.0.alpha)
      activerecord (= 5.2.0.alpha)
    activesupport (5.2.0.alpha)
      concurrent-ruby (~> 1.0, >= 1.0.2)
      i18n (~> 0.7)
      minitest (~> 5.1)
      tzinfo (~> 1.1)
    rails (5.2.0.alpha)
      actioncable (= 5.2.0.alpha)
      actionmailer (= 5.2.0.alpha)
      actionpack (= 5.2.0.alpha)
      actionview (= 5.2.0.alpha)
      activejob (= 5.2.0.alpha)
      activemodel (= 5.2.0.alpha)
      activerecord (= 5.2.0.alpha)
      activestorage (= 5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
      bundler (>= 1.3.0)
      railties (= 5.2.0.alpha)
      sprockets-rails (>= 2.0.0)
    railties (5.2.0.alpha)
      actionpack (= 5.2.0.alpha)
      activesupport (= 5.2.0.alpha)
      method_source
      rake (>= 0.8.7)
      thor (>= 0.18.1, < 2.0)

GEM
  remote: https://rubygems.org/
  specs:
    addressable (2.5.1)
      public_suffix (~> 2.0, >= 2.0.2)
    amq-protocol (2.2.0)
    ast (2.3.0)
    aws-partitions (1.20.0)
    aws-sdk-core (3.3.0)
      aws-partitions (~> 1.0)
      aws-sigv4 (~> 1.0)
      jmespath (~> 1.0)
    aws-sdk-kms (1.1.0)
      aws-sdk-core (~> 3)
      aws-sigv4 (~> 1.0)
    aws-sdk-s3 (1.2.0)
      aws-sdk-core (~> 3)
      aws-sdk-kms (~> 1)
      aws-sigv4 (~> 1.0)
    aws-sigv4 (1.0.1)
    azure-core (0.1.11)
      faraday (~> 0.9)
      faraday_middleware (~> 0.10)
      nokogiri (~> 1.6)
    azure-storage (0.12.3.preview)
      azure-core (~> 0.1)
      faraday (~> 0.9)
      faraday_middleware (~> 0.10)
    backburner (1.4.1)
      beaneater (~> 1.0)
      concurrent-ruby (~> 1.0.1)
      dante (> 0.1.5)
    bcrypt (3.1.11)
    bcrypt (3.1.11-x64-mingw32)
    bcrypt (3.1.11-x86-mingw32)
    beaneater (1.0.0)
    benchmark-ips (2.7.2)
    blade (0.7.1)
      activesupport (>= 3.0.0)
      blade-qunit_adapter (~> 2.0.1)
      coffee-script
      coffee-script-source
      curses (~> 1.0.0)
      eventmachine
      faye
      sprockets (>= 3.0)
      thin (>= 1.6.0)
      thor (>= 0.19.1)
      useragent (~> 0.16.7)
    blade-qunit_adapter (2.0.1)
    blade-sauce_labs_plugin (0.7.2)
      childprocess
      faraday
      selenium-webdriver
    bootsnap (1.1.2)
      msgpack (~> 1.0)
    builder (3.2.3)
    bunny (2.6.6)
      amq-protocol (>= 2.1.0)
    byebug (9.0.6)
    capybara (2.15.1)
      addressable
      mini_mime (>= 0.1.3)
      nokogiri (>= 1.3.3)
      rack (>= 1.0.0)
      rack-test (>= 0.5.4)
      xpath (~> 2.0)
    childprocess (0.7.1)
      ffi (~> 1.0, >= 1.0.11)
    coffee-rails (4.2.2)
      coffee-script (>= 2.2.0)
      railties (>= 4.0.0)
    coffee-script (2.4.1)
      coffee-script-source
      execjs
    coffee-script-source (1.12.2)
    concurrent-ruby (1.0.5)
    connection_pool (2.2.1)
    cookiejar (0.3.3)
    curses (1.0.2)
    daemons (1.2.4)
    dalli (2.7.6)
    dante (0.2.0)
    declarative (0.0.9)
    declarative-option (0.1.0)
    delayed_job (4.1.3)
      activesupport (>= 3.0, < 5.2)
    delayed_job_active_record (4.1.2)
      activerecord (>= 3.0, < 5.2)
      delayed_job (>= 3.0, < 5)
    digest-crc (0.4.1)
    em-hiredis (0.3.1)
      eventmachine (~> 1.0)
      hiredis (~> 0.6.0)
    em-http-request (1.1.5)
      addressable (>= 2.3.4)
      cookiejar (!= 0.3.1)
      em-socksify (>= 0.3)
      eventmachine (>= 1.0.3)
      http_parser.rb (>= 0.6.0)
    em-socksify (0.3.1)
      eventmachine (>= 1.0.0.beta.4)
    erubi (1.6.1)
    erubis (2.7.0)
    et-orbi (1.0.5)
      tzinfo
    event_emitter (0.2.6)
    eventmachine (1.2.5)
    eventmachine (1.2.5-x64-mingw32)
    eventmachine (1.2.5-x86-mingw32)
    execjs (2.7.0)
    faraday (0.13.1)
      multipart-post (>= 1.2, < 3)
    faraday_middleware (0.12.2)
      faraday (>= 0.7.4, < 1.0)
    faye (1.2.4)
      cookiejar (>= 0.3.0)
      em-http-request (>= 0.3.0)
      eventmachine (>= 0.12.0)
      faye-websocket (>= 0.9.1)
      multi_json (>= 1.0.0)
      rack (>= 1.0.0)
      websocket-driver (>= 0.5.1)
    faye-websocket (0.10.7)
      eventmachine (>= 0.12.0)
      websocket-driver (>= 0.5.1)
    ffi (1.9.18)
    ffi (1.9.18-x64-mingw32)
    ffi (1.9.18-x86-mingw32)
    globalid (0.4.0)
      activesupport (>= 4.2.0)
    google-api-client (0.13.1)
      addressable (~> 2.5, >= 2.5.1)
      googleauth (~> 0.5)
      httpclient (>= 2.8.1, < 3.0)
      mime-types (~> 3.0)
      representable (~> 3.0)
      retriable (>= 2.0, < 4.0)
    google-cloud-core (1.0.0)
      google-cloud-env (~> 1.0)
      googleauth (~> 0.5.1)
    google-cloud-env (1.0.1)
      faraday (~> 0.11)
    google-cloud-storage (1.4.0)
      digest-crc (~> 0.4)
      google-api-client (~> 0.13.0)
      google-cloud-core (~> 1.0)
    googleauth (0.5.3)
      faraday (~> 0.12)
      jwt (~> 1.4)
      logging (~> 2.0)
      memoist (~> 0.12)
      multi_json (~> 1.11)
      os (~> 0.9)
      signet (~> 0.7)
    hiredis (0.6.1)
    http_parser.rb (0.6.0)
    httpclient (2.8.3)
    i18n (0.8.6)
    jmespath (1.3.1)
    jquery-rails (4.3.1)
      rails-dom-testing (>= 1, < 3)
      railties (>= 4.2.0)
      thor (>= 0.14, < 2.0)
    json (2.1.0)
    jwt (1.5.6)
    kindlerb (1.2.0)
      mustache
      nokogiri
    libxml-ruby (3.0.0)
    listen (3.1.5)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
      ruby_dep (~> 1.2)
    little-plugger (1.1.4)
    logging (2.2.2)
      little-plugger (~> 1.1)
      multi_json (~> 1.10)
    loofah (2.0.3)
      nokogiri (>= 1.5.9)
    mail (2.6.6)
      mime-types (>= 1.16, < 4)
    memoist (0.16.0)
    metaclass (0.0.4)
    method_source (0.8.2)
    mime-types (3.1)
      mime-types-data (~> 3.2015)
    mime-types-data (3.2016.0521)
    mini_magick (4.8.0)
    mini_mime (0.1.4)
    mini_portile2 (2.2.0)
    minitest (5.10.3)
    minitest-bisect (1.4.0)
      minitest-server (~> 1.0)
      path_expander (~> 1.0)
    minitest-server (1.0.4)
      minitest (~> 5.0)
    mocha (1.3.0)
      metaclass (~> 0.0.1)
    mono_logger (1.1.0)
    msgpack (1.1.0)
    msgpack (1.1.0-x64-mingw32)
    msgpack (1.1.0-x86-mingw32)
    multi_json (1.12.1)
    multipart-post (2.0.0)
    mustache (1.0.5)
    mustermann (1.0.0)
    mysql2 (0.4.9)
    mysql2 (0.4.9-x64-mingw32)
    mysql2 (0.4.9-x86-mingw32)
    nio4r (2.1.0)
    nokogiri (1.8.0)
      mini_portile2 (~> 2.2.0)
    nokogiri (1.8.0-x64-mingw32)
      mini_portile2 (~> 2.2.0)
    nokogiri (1.8.0-x86-mingw32)
      mini_portile2 (~> 2.2.0)
    os (0.9.6)
    parallel (1.12.0)
    parser (2.4.0.0)
      ast (~> 2.2)
    path_expander (1.0.2)
    pg (0.19.0)
    pg (0.19.0-x64-mingw32)
    pg (0.19.0-x86-mingw32)
    powerpack (0.1.1)
    psych (2.2.4)
    public_suffix (2.0.5)
    puma (3.9.1)
    que (0.14.0)
    racc (1.4.14)
    rack (2.0.3)
    rack-cache (1.7.0)
      rack (>= 0.4)
    rack-protection (2.0.0)
      rack
    rack-test (0.7.0)
      rack (>= 1.0, < 3)
    rails-dom-testing (2.0.3)
      activesupport (>= 4.2.0)
      nokogiri (>= 1.6)
    rails-html-sanitizer (1.0.3)
      loofah (~> 2.0)
    rainbow (2.2.2)
      rake
    rake (12.0.0)
    rb-fsevent (0.10.2)
    rdoc (5.1.0)
    redcarpet (3.2.3)
    redis (3.3.3)
    redis-namespace (1.5.3)
      redis (~> 3.0, >= 3.0.4)
    representable (3.0.4)
      declarative (< 0.1.0)
      declarative-option (< 0.2.0)
      uber (< 0.2.0)
    resque (1.27.4)
      mono_logger (~> 1.0)
      multi_json (~> 1.0)
      redis-namespace (~> 1.3)
      sinatra (>= 0.9.2)
      vegas (~> 0.1.2)
    resque-scheduler (4.3.0)
      mono_logger (~> 1.0)
      redis (~> 3.3)
      resque (~> 1.26)
      rufus-scheduler (~> 3.2)
    retriable (3.1.1)
    rubocop (0.49.1)
      parallel (~> 1.10)
      parser (>= 2.3.3.1, < 3.0)
      powerpack (~> 0.1)
      rainbow (>= 1.99.1, < 3.0)
      ruby-progressbar (~> 1.7)
      unicode-display_width (~> 1.0, >= 1.0.1)
    ruby-progressbar (1.8.1)
    ruby_dep (1.5.0)
    rubyzip (1.2.1)
    rufus-scheduler (3.4.2)
      et-orbi (~> 1.0)
    sass (3.5.1)
      sass-listen (~> 4.0.0)
    sass-listen (4.0.0)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
    selenium-webdriver (3.5.1)
      childprocess (~> 0.5)
      rubyzip (~> 1.0)
    sequel (4.49.0)
    serverengine (1.5.11)
      sigdump (~> 0.2.2)
    sidekiq (5.0.4)
      concurrent-ruby (~> 1.0)
      connection_pool (~> 2.2, >= 2.2.0)
      rack-protection (>= 1.5.0)
      redis (~> 3.3, >= 3.3.3)
    sigdump (0.2.4)
    signet (0.7.3)
      addressable (~> 2.3)
      faraday (~> 0.9)
      jwt (~> 1.5)
      multi_json (~> 1.10)
    sinatra (2.0.0)
      mustermann (~> 1.0)
      rack (~> 2.0)
      rack-protection (= 2.0.0)
      tilt (~> 2.0)
    sneakers (2.5.0)
      bunny (~> 2.6.4)
      serverengine (~> 1.5.11)
      thor
      thread (~> 0.1.7)
    sprockets (3.7.1)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-export (1.0.0)
    sprockets-rails (3.2.0)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    sqlite3 (1.3.13)
    sqlite3 (1.3.13-x64-mingw32)
    sqlite3 (1.3.13-x86-mingw32)
    stackprof (0.2.10)
    sucker_punch (2.0.2)
      concurrent-ruby (~> 1.0.0)
    thin (1.7.2)
      daemons (~> 1.0, >= 1.0.9)
      eventmachine (~> 1.0, >= 1.0.4)
      rack (>= 1, < 3)
    thor (0.20.0)
    thread (0.1.7)
    thread_safe (0.3.6)
    tilt (2.0.8)
    turbolinks (5.0.1)
      turbolinks-source (~> 5)
    turbolinks-source (5.0.3)
    tzinfo (1.2.3)
      thread_safe (~> 0.1)
    tzinfo-data (1.2017.2)
      tzinfo (>= 1.0.0)
    uber (0.1.0)
    uglifier (3.2.0)
      execjs (>= 0.3.0, < 3)
    unicode-display_width (1.3.0)
    useragent (0.16.8)
    vegas (0.1.11)
      rack (>= 1.0.0)
    w3c_validators (1.3.3)
      json (>= 1.8)
      nokogiri (~> 1.6)
    wdm (0.1.1)
    websocket (1.2.4)
    websocket-driver (0.6.5)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.2)
    xpath (2.1.0)
      nokogiri (~> 1.3)

PLATFORMS
  ruby
  x64-mingw32
  x86-mingw32

DEPENDENCIES
  activerecord-jdbcmysql-adapter (>= 1.3.0)
  activerecord-jdbcpostgresql-adapter (>= 1.3.0)
  activerecord-jdbcsqlite3-adapter (>= 1.3.0)
  arel!
  aws-sdk-s3
  azure-storage
  backburner
  bcrypt (~> 3.1.11)
  benchmark-ips
  blade
  blade-sauce_labs_plugin
  bootsnap (>= 1.1.0)
  byebug
  capybara (~> 2.15)
  coffee-rails
  dalli (>= 2.2.1)
  delayed_job
  delayed_job_active_record
  em-hiredis
  erubis (~> 2.7.0)
  google-cloud-storage (~> 1.3)
  hiredis
  jquery-rails
  json (>= 2.0.0)
  kindlerb (~> 1.2.0)
  libxml-ruby
  listen (>= 3.0.5, < 3.2)
  mini_magick
  minitest-bisect
  mocha
  mysql2 (>= 0.4.4)
  nokogiri (>= 1.6.8)
  pg (>= 0.18.0)
  psych (~> 2.0)
  puma
  que
  queue_classic!
  racc (>= 1.4.6)
  rack-cache (~> 1.2)
  rails!
  rake (>= 11.1)
  rb-inotify!
  redcarpet (~> 3.2.3)
  redis
  resque
  resque-scheduler
  rubocop (>= 0.47)
  sass-rails!
  sdoc!
  sequel
  sidekiq
  sneakers
  sprockets-export
  sqlite3 (~> 1.3.6)
  stackprof
  sucker_punch
  turbolinks (~> 5)
  tzinfo-data
  uglifier (>= 1.3.0)
  w3c_validators
  wdm (>= 0.1.0)
  websocket-client-simple!

BUNDLED WITH
   1.15.4

Gemspecs

rails.gemspec

# frozen_string_literal: true

version = File.read(File.expand_path("RAILS_VERSION", __dir__)).strip

Gem::Specification.new do |s|
  s.platform    = Gem::Platform::RUBY
  s.name        = "rails"
  s.version     = version
  s.summary     = "Full-stack web application framework."
  s.description = "Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration."

  s.required_ruby_version     = ">= 2.2.2"
  s.required_rubygems_version = ">= 1.8.11"

  s.license = "MIT"

  s.author   = "David Heinemeier Hansson"
  s.email    = "david@loudthinking.com"
  s.homepage = "http://rubyonrails.org"

  s.files = ["README.md"]

  s.add_dependency "activesupport", version
  s.add_dependency "actionpack",    version
  s.add_dependency "actionview",    version
  s.add_dependency "activemodel",   version
  s.add_dependency "activerecord",  version
  s.add_dependency "actionmailer",  version
  s.add_dependency "activejob",     version
  s.add_dependency "actioncable",   version
  s.add_dependency "activestorage", version
  s.add_dependency "railties",      version

  s.add_dependency "bundler",         ">= 1.3.0"
  s.add_dependency "sprockets-rails", ">= 2.0.0"
end

--- TEMPLATE END ----------------------------------------------------------------

Unfortunately, an unexpected error occurred, and Bundler cannot continue.

First, try this link to see if there are any existing issue reports for this error: https://github.com/bundler/bundler/search?q=undefined+method+%60trace%3D%27+for+%23%3CBundler++UI++Shell+0x3860028%3E&type=Issues

If there aren't any reports for this error yet, please create copy and paste the report template above into a new issue. Don't forget to anonymize any private data! The new issue form is located at: https://github.com/bundler/bundler/issues/new

Process finished with exit code 1

colby-swandale commented 6 years ago

Thanks for the error report, having a quick look into this - I'm not sure how trace= is even being called.

segiddins commented 6 years ago

Me either... the line in question is Bundler.ui.trace e, which doesn't have an = anywhere

colby-swandale commented 6 years ago

ping @pavan93 are you still having this issue?

segiddins commented 6 years ago

Closing due to lack of response.