Bundlerでインストールしたライブラリを使う小さなメモ
前提
- 環境は以下記事と同じ
- Bundlerでgemライブラリをインストール・アンインストールする小さなメモ - Qiita https://qiita.com/kure/items/6fe0ebcd1fe3a361fc65
- コマンドラインの確認用のライブラリで
whenever
を使用
Bundlerでインストールしたライブラリの使い方
コマンドラインの場合
インストール
% vim Gemfile
gem "whenever" ★ 追記
% bundle install
% bundle list ★ Bundlerでインストールしたライブラリを確認可能
使い方
- Bundlerでgemライブラリをインストール・アンインストールする小さなメモ - Qiita https://qiita.com/kure/items/6fe0ebcd1fe3a361fc65
whenever
を使用コマンドラインの場合
インストール
% vim Gemfile
gem "whenever" ★ 追記
% bundle install
% bundle list ★ Bundlerでインストールしたライブラリを確認可能
使い方
bundle exec [コマンド]
とする
% whenever
zsh: command not found: whenever ★普通のコマンドラインからは参照できない
% bundle exec whenever
[fail] Can't find file: config/schedule.rb
Rubyプログラムの場合
require "bundler"
Bundler.require
を記載する。
Gemfileから記載されているgemパッケージを自動でrequireする
参考
Author And Source
この問題について(Bundlerでインストールしたライブラリを使う小さなメモ), 我々は、より多くの情報をここで見つけました https://qiita.com/kure/items/9b749324e13508f2edf6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .