Bundler로 설치한 라이브러리를 사용하는 작은 메모
전제
whenever
사용 Bundler로 설치한 라이브러리 사용법
명령줄의 경우
설치
% 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
참고
개정 2판 퍼펙트 Ruby
Ruby Supporters 기술 평론사 판매 순위 : 105,511
Amazon.co.jp에서 자세히 보기
Reference
이 문제에 관하여(Bundler로 설치한 라이브러리를 사용하는 작은 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/kure/items/9b749324e13508f2edf6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
% vim Gemfile
gem "whenever" ★ 追記
% bundle install
% bundle list ★ Bundlerでインストールしたライブラリを確認可能
% whenever
zsh: command not found: whenever ★普通のコマンドラインからは参照できない
% bundle exec whenever
[fail] Can't find file: config/schedule.rb
require "bundler"
Bundler.require
개정 2판 퍼펙트 Ruby
Ruby Supporters 기술 평론사 판매 순위 : 105,511
Amazon.co.jp에서 자세히 보기
Reference
이 문제에 관하여(Bundler로 설치한 라이브러리를 사용하는 작은 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/kure/items/9b749324e13508f2edf6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)