Skip to content

配布されているスタンザを自分のプロバイダで使う

Keita Urashima edited this page Jan 10, 2014 · 1 revision

他のスタンザプロバイダが提供しているスタンザを、自分のプロバイダから提供することができます。例としてスタンザの作り方で作成したプロバイダに外部のスタンザを追加してみましょう。

Gemfile に使いたいスタンザの指定を追加し、bundle install を実行します。

$ cd my_provider
# Gemfile

source 'https://rubygems.org'

gem 'togostanza'
gem 'unicorn'

gem 'sample_stanza', github: 'ursm/sample_provider'
$ bundle install
Fetching git://github.com/ursm/sample_provider.git
Cloning into bare repository '/home/ursm/.rbenv/versions/2.0.0-p353/lib/ruby/gems/2.0.0/cache/bundler/git/sample_provider-5178544e3a39a1e1c11d43fabbdbc44d26762
73b'...
(snip)
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.

bundle exec rackup コマンドでサーバを起動して、スタンザが追加されていることを確認してください。