[bug] missing gem when run bundle exec pod install
ARIEnergy opened this issue · 3 comments
I had ran 'bundle install to install all the gems', and then I run this command as below:
'bundle install'
and then it displayed the error "missing gems"
System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/universal-darwin21/rbconfig.rb:230: warning: Insecure world writable dir /opt/homebrew/opt in PATH, mode 040777 Could not find fastlane-2.206.2, cocoapods-pod-merge-0.0.4, artifactory-3.0.15, aws-sdk-s3-1.114.0, babosa-1.0.4, colored-1.2, commander-4.6.0, dotenv-2.7.6, emoji_regex-3.2.3, excon-0.92.3, faraday-1.10.0, faraday-cookie_jar-0.0.7, faraday_middleware-1.2.0, fastimage-2.2.6, google-apis-androidpublisher_v3-0.22.0, google-apis-playcustomapp_v1-0.8.0, google-cloud-storage-1.36.2, highline-2.0.3, json-2.6.2, jwt-2.4.1, mini_magick-4.11.0, multipart-post-2.0.0, naturally-2.2.1, optparse-0.1.1, plist-3.6.0, rubyzip-2.3.2, security-0.1.3, simctl-1.6.8, terminal-notifier-2.0.0, terminal-table-1.8.0, tty-screen-0.8.1, tty-spinner-0.9.3, word_wrap-1.0.0, xcpretty-0.3.0, xcpretty-travis-formatter-1.0.1, public_suffix-4.0.7, aws-sdk-core-3.131.1, aws-sdk-kms-1.57.0, aws-sigv4-1.5.0, faraday-em_http-1.0.0, faraday-em_synchrony-1.0.0, faraday-excon-1.1.0, faraday-httpclient-1.0.1, faraday-multipart-1.0.4, faraday-net_http-1.0.1, faraday-net_http_persistent-1.2.0, faraday-patron-1.0.0, faraday-rack-1.0.0, faraday-retry-1.0.3, http-cookie-1.0.5, google-apis-core-0.6.0, digest-crc-0.6.4, google-apis-iamcredentials_v1-0.11.0, google-apis-storage_v1-0.15.0, google-cloud-core-1.6.0, googleauth-1.1.3, mini_mime-1.1.2, unicode-display_width-1.8.0, tty-cursor-0.7.1, rouge-2.0.7, aws-eventstream-1.2.0, aws-partitions-1.598.0, jmespath-1.6.1, domain_name-0.5.20190701, representable-3.2.0, retriable-3.1.2, webrick-1.7.0, google-cloud-env-1.6.0, google-cloud-errors-1.2.0, memoist-0.16.2, multi_json-1.15.0, os-1.1.4, signet-0.16.1, unf-0.1.4, declarative-0.0.20, trailblazer-option-0.1.2, uber-0.1.0, unf_ext-0.0.8.2 in any of the sources Run
bundle install to install missing gems.
Hello @ARIEnergy this seems like a configuration issue on your end, since bundle install works fine with the pod-merge included in a new project I just created.
Make sure your Gemfile also mentions the source and includes cocoa pods:
source 'https://rubygems.org'
gem 'cocoapods'
gem 'cocoapods-pod-merge'