protocolbuffers / protobuf

Protocol Buffers - Google's data interchange format
http://protobuf.dev
Other
65.23k stars 15.45k forks source link

Ruby: Yanked 3.10.0 version installed via Bundler #6735

Closed msbit closed 3 years ago

msbit commented 4 years ago

What version of protobuf and what language are you using? Version: 3.9.2 Language: Ruby

What operating system (Linux, Windows, ...) and version? macOS 10.14.6

What runtime / compiler are you using (e.g., python version or gcc version) Ruby 2.6.3p62

As per https://rubygems.org/gems/google-protobuf/versions, version 3.10.0 of google-protobuf has been yanked, but this is still installed when running bundle install. I'm not sure if this is a protobuf issue, but I figured this would be the best place to start.

What did you do? Steps to reproduce the behavior:

  1. Add gem 'google-protobuf', '~> 3.0' to Gemfile
  2. bundle install

What did you expect to see

Fetching gem metadata from https://rubygems.org/.
Using bundler 2.0.2
Installing google-protobuf 3.9.2 (universal-darwin)
Bundle complete! 1 Gemfile dependency, 2 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.

What did you see instead?

Fetching gem metadata from https://rubygems.org/.
Using bundler 2.0.2
Installing google-protobuf 3.10.0 (universal-darwin)
Bundle complete! 1 Gemfile dependency, 2 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
uhrohraggy commented 4 years ago

Also facing this issue, causes failed Circle CI runs now

UbuntuEvangelist commented 4 years ago

same here

myappuser@ubuntu:/var/www/myapp/code$ bundle exec rake db:create Could not find google-protobuf-3.9.2 in any of the sources Run bundle install to install missing gems.

Screenshot from 2019-10-22 01-57-40

msbit commented 4 years ago

@saydulk you may not be having this particular issue; what happens if you run bundle install then try the command again?

UbuntuEvangelist commented 4 years ago

bundle install work but when i try others commands it not work.

Bundle complete! 120 Gemfile dependencies, 243 gems now installed. Gems in the groups development and test were not installed. Bundled gems are installed into ./vendor/cache myappuser@ubuntu:/var/www/myapp/code$ bundle exec rake secret Could not find google-protobuf-3.9.2 in any of the sources Run bundle install to install missing gems. myappuser@ubuntu:/var/www/myapp/code$ bundle exec rake db:create Could not find google-protobuf-3.9.2 in any of the sources Run bundle install to install missing gems. myappuser@ubuntu:/var/www/myapp/code$ Screenshot from 2019-10-22 03-12-29

msbit commented 4 years ago

@saydulk could you paste the contents of your Gemfile and Gemfile.lock, in particular the google-protobuf line(s)?

UbuntuEvangelist commented 4 years ago

Gemfile

source 'https://rubygems.org' gem 'rails', '~> 4.2' gem 'rails-i18n' gem 'responders', '~> 2.0' gem "better_errors", "~> 2.5.1" gem 'mysql2' gem 'rake', '~> 13.0' gem 'figaro' gem 'foreman' gem 'puma' gem 'redis-rails' gem 'google-protobuf', '~> 3.9', '>= 3.9.2' gem "passenger", ">= 5.3.2", require: "phusion_passenger/rack_handler" gem "bundler", ">= 1.17.3" gem 'rotp', '3.3.1' gem 'json' gem 'jbuilder' gem 'webconsole', '~> 0.2.1' gem 'padrino' gem 'omniauth', '~> 1.8.1' gem 'omniauth-identity', '~> 1.1', '>= 1.1.1' gem 'omniauth-auth0', '~> 2.0.0' gem 'omniauth-google-oauth2', '~> 0.5.2' gem 'omniauth-facebook' gem 'rucaptcha' gem 'dalli' gem 'hashie', '~> 3.0' gem 'aasm', '~> 3.4.0' gem 'amqp', '~> 1.8' gem 'bunny', '~> 2.12' gem 'cancancan' gem 'enumerize' gem 'datagrid' gem 'kaminari' gem 'paranoid2' gem 'active_hash' gem 'http_accept_language' gem 'paper_trail', '~> 3.0.1' gem 'rails-observers' gem 'country_select', '~> 2.1.0' gem 'gon', '~> 5.2.0' gem 'pusher' gem 'eventmachine', '~> 1.0.4' gem 'em-websocket', '~> 0.5.1' gem 'simple_form', '~> 3.1.0' gem 'slim-rails' gem 'sass-rails' gem 'coffee-rails' gem 'uglifier', '~> 4.1' gem 'jquery-rails' gem 'angularjs-rails', '~> 1.3.15' gem 'bootstrap-sass', '~> 3.2.0.2' gem 'font-awesome-sass' gem 'font-awesome-rails' gem 'bourbon' gem 'momentjs-rails' gem 'eco' gem 'browser', '~> 0.8.0' gem 'rbtree' gem 'liability-proof', '0.0.9' gem 'grape', '~> 1.0.1' gem 'grape-entity', '~> 0.5.2' gem 'grape-swagger', '~> 0.27.3' gem 'grape-swagger-ui', '~> 2.2.8' gem 'rack-attack', '~> 3.0.0' gem 'easy_table' gem 'carrierwave', '~> 1.0' gem 'fog' gem 'rest-client', '~> 1.6.8' gem 'jwt', '~> 1.5' gem 'email_validator', '~> 1.6' gem 'clipboard-rails', '~> 1.7' gem 'mini_racer', '~> 0.1', require: false gem 'arel-is-blank', '~> 1.0' gem 'sentry-raven', '~> 2.7', require: false gem 'memoist', '~> 0.16' gem 'method-not-implemented', '~> 1.0' gem 'cryptice-passgen', '~> 0.1.2' gem 'cashaddress' gem 'recaptcha', require: 'recaptcha/rails' gem 'active_model_otp' gem 'rqrcode' gem 'sendgrid' gem 'phony_rails' gem 'twilio-ruby' gem 'bootstrap-datepicker-rails' gem 'simplebar-rails' gem 'validates_zipcode' gem 'chosen-rails' gem 'httparty' gem 'fusioncharts-rails', '~> 0.0.2' gem 'ajax-datatables-rails' gem 'jquery-datatables' gem 'useragent' gem 'geocoder' gem 'social-share-button', '~> 1.2' gem 'modernizr-rails' gem 'grpc' group :development, :test do gem 'factory_bot_rails' gem 'faker', '~> 1.4.3' gem 'binding_of_caller' gem 'quiet_assets' gem 'timecop' gem 'rspec-rails' gem 'pry-byebug' gem 'rubocop', '~> 0.58.2', require: false gem 'rubocop-rspec' end

group :test do gem 'database_cleaner' gem 'mocha', require: false

gem 'capybara', '~> 2.17' gem 'selenium-webdriver', '~> 3.8' gem 'chromedriver-helper', '~> 1.1' gem 'rack_session_access', '~> 0.1' end

group :development do gem 'capistrano', require: false gem 'capistrano-rvm', require: false gem 'capistrano-rails', require: false gem 'capistrano-bundler', require: false end

UbuntuEvangelist commented 4 years ago

Gemfile.lock

GEM remote: https://rubygems.org/ specs: CFPropertyList (2.3.6) aasm (3.4.0) actionmailer (4.2.11.1) actionpack (= 4.2.11.1) actionview (= 4.2.11.1) activejob (= 4.2.11.1) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 1.0, >= 1.0.5) actionpack (4.2.11.1) actionview (= 4.2.11.1) activesupport (= 4.2.11.1) rack (~> 1.6) rack-test (~> 0.6.2) rails-dom-testing (~> 1.0, >= 1.0.5) rails-html-sanitizer (~> 1.0, >= 1.0.2) actionview (4.2.11.1) activesupport (= 4.2.11.1) builder (~> 3.1) erubis (~> 2.7.0) rails-dom-testing (~> 1.0, >= 1.0.5) rails-html-sanitizer (~> 1.0, >= 1.0.3) active_hash (2.0.0) activesupport (>= 2.2.2) active_model_otp (1.2.0) activemodel rotp activejob (4.2.11.1) activesupport (= 4.2.11.1) globalid (>= 0.3.0) activemodel (4.2.11.1) activesupport (= 4.2.11.1) builder (~> 3.1) activerecord (4.2.11.1) activemodel (= 4.2.11.1) activesupport (= 4.2.11.1) arel (~> 6.0) activesupport (4.2.11.1) i18n (~> 0.7) minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) addressable (2.7.0) public_suffix (>= 2.0.2, < 5.0) airbrussh (1.4.0) sshkit (>= 1.6.1, != 1.7.0) ajax-datatables-rails (1.0.0) railties (>= 4.2) amq-protocol (2.3.0) amqp (1.8.0) amq-protocol (>= 2.2.0) eventmachine angularjs-rails (1.3.15) archive-zip (0.12.0) io-like (~> 0.3.0) arel (6.0.4) arel-is-blank (1.0.0) arel (>= 6.0) arel-to-sql (~> 1.0) arel-to-sql (1.0.0) arel (>= 6.0) ast (2.4.0) awesome_print (1.8.0) axiom-types (0.1.1) descendants_tracker (~> 0.0.4) ice_nine (~> 0.11.0) thread_safe (~> 0.3, >= 0.3.1) bcrypt (3.1.13) bcrypt-ruby (3.1.5) bcrypt (>= 3.1.3) better_errors (2.5.1) coderay (>= 1.0.0) erubi (>= 1.0.0) rack (>= 0.9.0) binding_of_caller (0.8.0) debug_inspector (>= 0.0.1) bootstrap-datepicker-rails (1.8.0.1) railties (>= 3.0) bootstrap-sass (3.2.0.4) sass (~> 3.2) bourbon (6.0.0) thor (~> 0.19) browser (0.8.0) builder (3.2.3) bunny (2.14.3) amq-protocol (~> 2.3, >= 2.3.0) byebug (11.0.1) cancancan (3.0.1) capistrano (3.11.2) airbrussh (>= 1.0.0) i18n rake (>= 10.0.0) sshkit (>= 1.9.0) capistrano-bundler (1.6.0) capistrano (~> 3.1) capistrano-rails (1.4.0) capistrano (~> 3.1) capistrano-bundler (~> 1.1) capistrano-rvm (0.1.2) capistrano (~> 3.0) sshkit (~> 1.2) capybara (2.18.0) addressable mini_mime (>= 0.1.3) nokogiri (>= 1.3.3) rack (>= 1.0.0) rack-test (>= 0.5.4) xpath (>= 2.0, < 4.0) carrierwave (1.3.1) activemodel (>= 4.0.0) activesupport (>= 4.0.0) mime-types (>= 1.16) cashaddress (0.1.0) childprocess (3.0.0) chosen-rails (1.8.7) coffee-rails (>= 3.2) railties (>= 3.0) sass-rails (>= 3.2) chromedriver-helper (1.2.0) archive-zip (~> 0.10) nokogiri (~> 1.8) chunky_png (1.3.11) clipboard-rails (1.7.1) coderay (1.1.2) coercible (1.0.0) descendants_tracker (~> 0.0.1) 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.1.5) countries (0.9.3) currencies (~> 0.4.2) country_select (2.1.1) countries (>= 0.9.3, < 0.10.0) crass (1.0.4) cryptice-passgen (0.1.2) currencies (0.4.2) dalli (2.7.10) database_cleaner (1.7.0) datagrid (1.5.9) rails (>= 4.0) debug_inspector (0.0.3) descendants_tracker (0.0.4) thread_safe (~> 0.3, >= 0.3.1) diff-lcs (1.3) digest-sha3 (1.1.0) dry-inflector (0.1.2) easy_table (0.0.10) actionpack (> 4.2) activemodel (> 4.2) rubytree (~> 1.0) eco (1.0.0) coffee-script eco-source execjs eco-source (1.1.0.rc.1) em-websocket (0.5.1) eventmachine (>= 0.12.9) http_parser.rb (~> 0.6.0) email_validator (1.6.0) activemodel enumerable-lazy (0.0.2) enumerize (2.3.1) activesupport (>= 3.2) equalizer (0.0.11) erubi (1.9.0) erubis (2.7.0) eventmachine (1.0.9.1) excon (0.67.0) execjs (2.7.0) factory_bot (5.1.1) activesupport (>= 4.2.0) factory_bot_rails (5.1.1) factory_bot (~> 5.1.0) railties (>= 4.2.0) faker (1.4.3) i18n (~> 0.5) faraday (0.16.2) multipart-post (>= 1.2, < 3) ffi (1.11.1) figaro (1.1.1) thor (~> 0.14) fission (0.5.0) CFPropertyList (~> 2.2) fog (2.0.0) fog-aliyun (>= 0.1.0) fog-atmos fog-aws (>= 0.6.0) fog-brightbox (~> 0.4) fog-cloudatcost (~> 0.1.0) fog-core (~> 1.45) fog-digitalocean (>= 0.3.0) fog-dnsimple (~> 1.0) fog-dynect (~> 0.0.2) fog-ecloud (~> 0.1) fog-google (<= 0.1.0) fog-internet-archive fog-joyent fog-json fog-local fog-openstack fog-ovirt fog-powerdns (>= 0.1.1) fog-profitbricks fog-rackspace fog-radosgw (>= 0.0.2) fog-riakcs fog-sakuracloud (>= 0.0.4) fog-serverlove fog-softlayer fog-storm_on_demand fog-terremark fog-vmfusion fog-voxel fog-vsphere (>= 0.4.0) fog-xenserver fog-xml (~> 0.1.1) ipaddress (~> 0.5) json (~> 2.0) fog-aliyun (0.3.5) fog-core fog-json ipaddress (~> 0.8) xml-simple (~> 1.1) fog-atmos (0.1.0) fog-core fog-xml fog-aws (2.0.1) fog-core (~> 1.38) fog-json (~> 1.0) fog-xml (~> 0.1) ipaddress (~> 0.8) fog-brightbox (0.16.1) dry-inflector fog-core fog-json mime-types fog-cloudatcost (0.1.2) fog-core (~> 1.36) fog-json (~> 1.0) fog-xml (~> 0.1) ipaddress (~> 0.8) fog-core (1.45.0) builder excon (~> 0.58) formatador (~> 0.2) fog-digitalocean (0.4.0) fog-core fog-json fog-xml ipaddress (>= 0.5) fog-dnsimple (1.0.0) fog-core (~> 1.38) fog-json (~> 1.0) fog-dynect (0.0.3) fog-core fog-json fog-xml fog-ecloud (0.3.0) fog-core fog-xml fog-google (0.1.0) fog-core fog-json fog-xml fog-internet-archive (0.0.1) fog-core fog-json fog-xml fog-joyent (0.0.1) fog-core (~> 1.42) fog-json (>= 1.0) fog-json (1.2.0) fog-core multi_json (~> 1.10) fog-local (0.6.0) fog-core (>= 1.27, < 3.0) fog-openstack (0.3.10) fog-core (>= 1.45, <= 2.1.0) fog-json (>= 1.0) ipaddress (>= 0.8) fog-ovirt (0.0.1) fog-core (~> 1.45) fog-json fog-xml (~> 0.1.1) fog-powerdns (0.2.0) fog-core fog-json fog-xml fog-profitbricks (4.1.1) fog-core (~> 1.42) fog-json (~> 1.0) fog-rackspace (0.1.6) fog-core (>= 1.35) fog-json (>= 1.0) fog-xml (>= 0.1) ipaddress (>= 0.8) fog-radosgw (0.0.5) fog-core (>= 1.21.0) fog-json fog-xml (>= 0.0.1) fog-riakcs (0.1.0) fog-core fog-json fog-xml fog-sakuracloud (1.7.5) fog-core fog-json fog-serverlove (0.1.2) fog-core fog-json fog-softlayer (1.1.4) fog-core fog-json fog-storm_on_demand (0.1.1) fog-core fog-json fog-terremark (0.1.0) fog-core fog-xml fog-vmfusion (0.1.0) fission fog-core fog-voxel (0.1.0) fog-core fog-xml fog-vsphere (3.2.1) fog-core rbvmomi (>= 1.9, < 3) fog-xenserver (1.0.0) fog-core fog-xml xmlrpc fog-xml (0.1.3) fog-core nokogiri (>= 1.5.11, < 2.0.0) font-awesome-rails (4.7.0.5) railties (>= 3.2, < 6.1) font-awesome-sass (5.11.2) sassc (>= 1.11) foreman (0.86.0) formatador (0.2.5) fusioncharts-rails (0.0.2) geocoder (1.5.2) globalid (0.4.2) activesupport (>= 4.2.0) god (0.13.7) gon (5.2.3) actionpack (>= 2.3.0) json multi_json request_store (>= 1.0.5) google-protobuf (3.9.2) googleapis-common-protos-types (1.0.4) google-protobuf (~> 3.0) grape (1.0.3) activesupport builder mustermann-grape (~> 1.0.0) rack (>= 1.3.0) rack-accept virtus (>= 1.0.0) grape-entity (0.5.2) multi_json (>= 1.3.2) grape-swagger (0.27.3) grape (>= 0.16.2) grape-swagger-ui (2.2.8) railties (>= 3.1) grpc (1.24.0) google-protobuf (~> 3.8) googleapis-common-protos-types (~> 1.0) hashie (3.5.7) http_accept_language (2.1.1) http_parser.rb (0.6.0) httparty (0.16.2) multi_xml (>= 0.5.2) httpclient (2.8.3) i18n (0.9.5) concurrent-ruby (~> 1.0) ice_nine (0.11.2) io-like (0.3.0) ipaddress (0.8.3) jaro_winkler (1.5.3) jbuilder (2.9.1) activesupport (>= 4.2.0) jquery-datatables (1.10.19.1) jquery-rails (4.3.5) rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) thor (>= 0.14, < 2.0) json (2.2.0) jwt (1.5.6) kaminari (1.1.1) activesupport (>= 4.1.0) kaminari-actionview (= 1.1.1) kaminari-activerecord (= 1.1.1) kaminari-core (= 1.1.1) kaminari-actionview (1.1.1) actionview kaminari-core (= 1.1.1) kaminari-activerecord (1.1.1) activerecord kaminari-core (= 1.1.1) kaminari-core (1.1.1) liability-proof (0.0.9) awesome_print libv8 (7.3.492.27.1) loofah (2.3.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) mail (2.7.1) mini_mime (>= 0.1.1) memoist (0.16.0) metaclass (0.0.4) method-not-implemented (1.0.1) method_source (0.9.2) mime-types (1.25.1) mini_mime (1.0.2) mini_portile2 (2.4.0) mini_racer (0.2.6) libv8 (>= 6.9.411) minitest (5.12.2) mocha (1.9.0) metaclass (~> 0.0.1) modernizr-rails (2.7.1) momentjs-rails (2.20.1) railties (>= 3.1) moneta (1.0.0) multi_json (1.13.1) multi_xml (0.6.0) multipart-post (2.1.1) mustermann (1.0.3) mustermann-grape (1.0.0) mustermann (~> 1.0.0) mustermann19 (0.4.4) enumerable-lazy mysql2 (0.3.21) net-scp (2.0.0) net-ssh (>= 2.6.5, < 6.0.0) net-ssh (5.2.0) nio4r (2.5.2) nokogiri (1.10.4) mini_portile2 (~> 2.4.0) oauth2 (1.4.2) faraday (>= 0.8, < 2.0) jwt (>= 1.0, < 3.0) multi_json (~> 1.3) multi_xml (~> 0.5) rack (>= 1.2, < 3) omniauth (1.8.1) hashie (>= 3.4.6, < 3.6.0) rack (>= 1.6.2, < 3) omniauth-auth0 (2.0.0) omniauth-oauth2 (~> 1.4) omniauth-facebook (5.0.0) omniauth-oauth2 (~> 1.2) omniauth-google-oauth2 (0.5.4) jwt (>= 1.5) omniauth (>= 1.1.1) omniauth-oauth2 (>= 1.5) omniauth-identity (1.1.1) bcrypt-ruby (~> 3.0) omniauth (~> 1.0) omniauth-oauth2 (1.5.0) oauth2 (~> 1.1) omniauth (~> 1.2) optimist (3.0.0) padrino (0.14.2) padrino-admin (= 0.14.2) padrino-cache (= 0.14.2) padrino-core (= 0.14.2) padrino-gen (= 0.14.2) padrino-helpers (= 0.14.2) padrino-mailer (= 0.14.2) padrino-support (= 0.14.2) padrino-admin (0.14.2) padrino-core (= 0.14.2) padrino-helpers (= 0.14.2) padrino-cache (0.14.2) moneta (~> 1.0.0) padrino-core (= 0.14.2) padrino-helpers (= 0.14.2) padrino-core (0.14.2) mustermann19 padrino-support (= 0.14.2) rack-protection (>= 1.5.0) sinatra (>= 1.4.6) thor (~> 0.18) padrino-gen (0.14.2) bundler (~> 1.0) padrino-core (= 0.14.2) padrino-helpers (0.14.2) i18n (~> 0.6, >= 0.6.7) padrino-support (= 0.14.2) tilt (>= 1.4.1, < 3) padrino-mailer (0.14.2) mail (~> 2.5) mime-types (< 3) padrino-core (= 0.14.2) padrino-support (0.14.2) paper_trail (3.0.9) activerecord (>= 3.0, < 5.0) activesupport (>= 3.0, < 5.0) parallel (1.17.0) paranoid2 (1.1.5) activerecord (>= 4.1.0) parser (2.6.5.0) ast (~> 2.4.0) passenger (6.0.4) rack rake (>= 0.8.1) phony (2.18.8) phony_rails (0.14.13) activesupport (>= 3.0) phony (> 2.15) powerpack (0.1.2) pry (0.12.2) coderay (~> 1.1.0) method_source (~> 0.9.0) pry-byebug (3.7.0) byebug (~> 11.0) pry (~> 0.10) public_suffix (4.0.1) puma (4.2.0) nio4r (~> 2.0) pusher (1.3.3) httpclient (~> 2.7) multi_json (~> 1.0) pusher-signature (~> 0.1.8) pusher-signature (0.1.8) quiet_assets (1.1.0) railties (>= 3.1, < 5.0) rack (1.6.11) rack-accept (0.4.5) rack (>= 0.4) rack-attack (3.0.0) rack rack-protection (1.5.5) rack rack-test (0.6.3) rack (>= 1.0) rack_session_access (0.2.0) builder (>= 2.0.0) rack (>= 1.0.0) rails (4.2.11.1) actionmailer (= 4.2.11.1) actionpack (= 4.2.11.1) actionview (= 4.2.11.1) activejob (= 4.2.11.1) activemodel (= 4.2.11.1) activerecord (= 4.2.11.1) activesupport (= 4.2.11.1) bundler (>= 1.3.0, < 2.0) railties (= 4.2.11.1) sprockets-rails rails-deprecated_sanitizer (1.0.3) activesupport (>= 4.2.0.alpha) rails-dom-testing (1.0.9) activesupport (>= 4.2.0, < 5.0) nokogiri (~> 1.6) rails-deprecated_sanitizer (>= 1.0.1) rails-html-sanitizer (1.2.0) loofah (~> 2.2, >= 2.2.2) rails-i18n (4.0.9) i18n (~> 0.7) railties (~> 4.0) rails-observers (0.1.5) activemodel (>= 4.0) railties (4.2.11.1) actionpack (= 4.2.11.1) activesupport (= 4.2.11.1) rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) rainbow (3.0.0) rake (13.0.0) rb-fsevent (0.10.3) rb-inotify (0.10.0) ffi (~> 1.0) rbtree (0.4.2) rbvmomi (2.2.0) builder (~> 3.0) json (>= 1.8) nokogiri (~> 1.5) optimist (~> 3.0) recaptcha (5.1.1) json redis (4.1.3) redis-actionpack (5.1.0) actionpack (>= 4.0, < 7) redis-rack (>= 1, < 3) redis-store (>= 1.1.0, < 2) redis-activesupport (5.2.0) activesupport (>= 3, < 7) redis-store (>= 1.3, < 2) redis-rack (2.0.6) rack (>= 1.5, < 3) redis-store (>= 1.2, < 2) redis-rails (5.0.2) redis-actionpack (>= 5.0, < 6) redis-activesupport (>= 5.0, < 6) redis-store (>= 1.2, < 2) redis-store (1.8.0) redis (>= 4, < 5) request_store (1.4.1) rack (>= 1.4) responders (2.4.1) actionpack (>= 4.2.0, < 6.0) railties (>= 4.2.0, < 6.0) rest-client (1.6.14) mime-types (~> 1.16) rotp (3.3.1) rqrcode (1.1.1) chunky_png (~> 1.0) rqrcode_core (~> 0.1.0) rqrcode_core (0.1.0) rspec-core (3.8.2) rspec-support (~> 3.8.0) rspec-expectations (3.8.5) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.8.0) rspec-mocks (3.8.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.8.0) rspec-rails (3.8.2) actionpack (>= 3.0) activesupport (>= 3.0) railties (>= 3.0) rspec-core (~> 3.8.0) rspec-expectations (~> 3.8.0) rspec-mocks (~> 3.8.0) rspec-support (~> 3.8.0) rspec-support (3.8.3) rubocop (0.58.2) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.5, != 2.5.1.1) powerpack (~> 0.1) rainbow (>= 2.2.2, < 4.0) ruby-progressbar (~> 1.7) unicode-display_width (~> 1.0, >= 1.0.1) rubocop-rspec (1.30.0) rubocop (>= 0.58.0) ruby-progressbar (1.10.1) rubytree (1.0.0) json (~> 2.1) structured_warnings (~> 0.3) rubyzip (2.0.0) rucaptcha (2.5.1) railties (>= 3.2) sass (3.7.4) sass-listen (~> 4.0.0) sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) sass-rails (6.0.0) sassc-rails (~> 2.1, >= 2.1.1) sassc (2.2.1) ffi (~> 1.9) sassc-rails (2.1.2) railties (>= 4.0.0) sassc (>= 2.0) sprockets (> 3.0) sprockets-rails tilt selenium-webdriver (3.142.6) childprocess (>= 0.5, < 4.0) rubyzip (>= 1.2.2) sendgrid (1.2.4) json sentry-raven (2.11.3) faraday (>= 0.7.6, < 1.0) simple_form (3.1.1) actionpack (~> 4.0) activemodel (~> 4.0) simplebar-rails (2.6.1) railties (>= 3.1) sinatra (1.4.8) rack (~> 1.5) rack-protection (~> 1.4) tilt (>= 1.3, < 3) slim (4.0.1) temple (>= 0.7.6, < 0.9) tilt (>= 2.0.6, < 2.1) slim-rails (3.2.0) actionpack (>= 3.1) railties (>= 3.1) slim (>= 3.0, < 5.0) social-share-button (1.2.1) coffee-rails sprockets (3.7.2) concurrent-ruby (~> 1.0) rack (> 1, < 3) sprockets-rails (3.2.1) actionpack (>= 4.0) activesupport (>= 4.0) sprockets (>= 3.0.0) sshkit (1.20.0) net-scp (>= 1.1.2) net-ssh (>= 2.8.0) structured_warnings (0.4.0) temple (0.8.2) thor (0.20.3) thread_safe (0.3.6) tilt (2.0.10) timecop (0.9.1) twilio-ruby (5.27.1) faraday (~> 0.9) jwt (>= 1.5, <= 2.5) nokogiri (>= 1.6, < 2.0) tzinfo (1.2.5) thread_safe (~> 0.1) uglifier (4.2.0) execjs (>= 0.3.0, < 3) unicode-display_width (1.6.0) useragent (0.16.10) validates_zipcode (0.2.2) activemodel (>= 3.2.0) virtus (1.0.5) axiom-types (~> 0.1) coercible (~> 1.0) descendants_tracker (~> 0.0, >= 0.0.3) equalizer (~> 0.0, >= 0.0.9) webconsole (0.2.1) xml-simple (1.1.5) xmlrpc (0.3.0) xpath (3.2.0) nokogiri (~> 1.8)

PLATFORMS ruby

DEPENDENCIES aasm (~> 3.4.0) active_hash active_model_otp ajax-datatables-rails amqp (~> 1.8) angularjs-rails (~> 1.3.15) arel-is-blank (~> 1.0) better_errors (~> 2.5.1) binding_of_caller bootstrap-datepicker-rails bootstrap-sass (~> 3.2.0.2) bourbon browser (~> 0.8.0) bundler (>= 1.5.0) bunny (~> 2.12) cancancan capistrano capistrano-bundler capistrano-rails capistrano-rvm capybara (~> 2.17) carrierwave (~> 1.0) cashaddress chosen-rails chromedriver-helper (~> 1.1) clipboard-rails (~> 1.7) coffee-rails country_select (~> 2.1.0) cryptice-passgen (~> 0.1.2) dalli database_cleaner datagrid digest-sha3 (~> 1.1.0) easy_table eco em-websocket (~> 0.5.1) email_validator (~> 1.6) enumerize eventmachine (~> 1.0.4) factory_bot_rails faker (~> 1.4.3) figaro fog font-awesome-rails font-awesome-sass foreman fusioncharts-rails (~> 0.0.2) geocoder god (~> 0.13.7) gon (~> 5.2.0) grape (~> 1.0.1) grape-entity (~> 0.5.2) grape-swagger (~> 0.27.3) grape-swagger-ui (~> 2.2.8) grpc hashie (~> 3.0) http_accept_language httparty jbuilder jquery-datatables jquery-rails json jwt (~> 1.5) kaminari liability-proof (= 0.0.9) memoist (~> 0.16) method-not-implemented (~> 1.0) mini_racer (~> 0.1) mocha modernizr-rails momentjs-rails mysql2 omniauth (~> 1.8.1) omniauth-auth0 (~> 2.0.0) omniauth-facebook omniauth-google-oauth2 (~> 0.5.2) omniauth-identity (~> 1.1, >= 1.1.1) padrino paper_trail (~> 3.0.1) paranoid2 passenger (>= 5.3.2) phony_rails pry-byebug puma pusher quiet_assets rack-attack (~> 3.0.0) rack_session_access (~> 0.1) rails (~> 4.2) rails-i18n rails-observers rake (~> 13.0) rbtree recaptcha redis-rails responders (~> 2.0) rest-client (~> 1.6.8) rotp (= 3.3.1) rqrcode rspec-rails rubocop (~> 0.58.2) rubocop-rspec rucaptcha sass-rails selenium-webdriver (~> 3.8) sendgrid sentry-raven (~> 2.7) simple_form (~> 3.1.0) simplebar-rails slim-rails social-share-button (~> 1.2) timecop twilio-ruby uglifier (~> 4.1) useragent validates_zipcode webconsole (~> 0.2.1)

BUNDLED WITH 1.17.3

msbit commented 4 years ago

@saydulk could you edit those comments to format them as code? You can look at https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#code for more information on how to do so.

msbit commented 4 years ago

@saydulk additionally, it would be good to see:

craig-day commented 4 years ago

For me, this was caused by having the "specific platform" config parameter set to true. For bundler < v2, this was opt-in. In bundler v2 this became the default behavior. You can opt out by adding this to any of the .bundle/config files (project, user, global).

BUNDLE_SPECIFIC_PLATFORM: "false"
haberman commented 3 years ago

Closing as obsolete.