2013-05-03

Gemfile に github の URL を書く方法

Gemfile で gem を取得する時、git を使うなら次の書き方ができる。

gem 'rubygems-format-dummy', :git => 'git://github.com/ataka/rubygems-format-dummy.git'

けれど、もし git のソースコードを github でホスティングしているなら、もっと簡単に書くことができる。

gem 'rubygems-format-dummy', :github => 'ataka/rubygems-format-dummy'

この書式のお蔭で chef 用の Gemfile が更にスッキリした。

$ cat /etc/chef/Gemfile
source 'https://rubygems.org'
gem 'chef'
gem 'rubygems-format-dummy', :github => 'ataka/rubygems-format-dummy'

イイナ。これ。

No comments:

Post a Comment