$ sudo gem install bundler したらタイムアウト。 ERROR: Could not find a valid gem 'bundler' (>= 0), here is why: Unable to download data from https://rubygems.org/ - Errno::ETIMEDOUT: Operation timed out - connect(2) (https://rubygems.org/latest_specs.4.8.gz) どうもsudoした...
そこで bundler を使うと、gem の依存関係を解決しながら gem を一括でインストールすることができます。 bundler をインストール まずは Bundler をインストールします。 $ rbenv exec gem install bundler $ rbenv rehash ここでポイントとなるのは、gem install コマンド実行時に接頭辞として...
Install the gem and add to the application's Gemfile by executing: $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG If bundler is not being used to manage dependencies, install the gem by executing: $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUB...
bundler以外のgemに関しては、bundlerとGemfile.lockを使ってバージョンを固定して運用しましょう。default gemであってもGemfileに記載すれば任意のバージョンで実行できます。 bundlerに関しては、余り知られていない可能性がありますがrubygems自体がバージョンを指定してコマンドを実行する機能を持っ...
xcode-select --install メモ このパターンに該当する場合は、エラーメッセージにYou have to install development tools firstみたいなメッセージが出てたと記憶。 ちなみに、利用規約に同意していない場合にも発生するので注意。 参考: 【解決方法】Macで gem ffi の インストール (アップデート...
An error occurred while installing rugged (1.3.1), and Bundler cannot continue. Make sure that `gem install rugged -v '1.3.1' --source 'https://rubygems.org/'` succeeds before bundling. In Gemfile: qiita-markdown was resolved to 0.40.0, which depends on ...
Run`bundleinstall`toinstallmissing gems. このように表示されるので、まずはbundle installを行います。 ec2-user:~/environment/taskleaf(master)$bundleinstallThe dependency tzinfo-data(>=0)will be unused by any of the platforms Bundler is installingfor.Bundler is installingforruby but the dependency...
bundler initをしてGemfileを作成 Gemfileにrailsを記載(必要に応じてバージョン指定) bundle install --path vendor/bundle rails new(必要に応じてバージョン指定) 作成したrailsプロジェクト配下に新しくGemfileができるため、以降はこちらでgemを管理する。(railsを記載したgemファイルはもう編集しな...