2011年4月18日月曜日

[Ruby] Rubyでtwitter bot作成 1. rubygemのインストール

Rubyの勉強もかねて、Windows 7上でRubyを使ってTwitter botを作ってみる。

最終的にはどこかのサーバ上で自動実行させるようにしたいけど、どんな方法が一番簡単なのかまだわかってないから(Google Appsが良さそう?)、とりあえずPCを起動している間だけ動くようなbotから始めてみる。環境はCygwin/Windows 7。

まずはrubyのパッケージ管理システムrubygemをインストール。

rubygem
http://rubyforge.org/projects/rubygems/

からrubygem-*.zipをダウンロード、解凍。

以下インストール方法とログ。

 
$ ruby setup.rb
cygwin warning:
  MS-DOS style path detected: C:\ProgramData/gemrc
  Preferred POSIX equivalent is: /cygdrive/c/ProgramData/gemrc
  CYGWIN environment variable option "nodosfilewarning" turns off this warning.
  Consult the user's guide for more details about POSIX paths:
    http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
RubyGems 1.6.2 installed

=== 1.6.2 / 2011-03-08
$
Bug Fixes:

* require of an activated gem could cause activation conflicts.  Fixes
  Bug #29056 by Dave Verwer.
* `gem outdated` now works with up-to-date prerelease gems.




------------------------------------------------------------------------------



RubyGems installed the following executables:

        /usr/bin/gem

これでrubygemがインストールされたことに

 
$ which gem
/usr/bin/gem
 
$ gem -v
1.6.2

今日はとりあえずここまで。次回は多分twitter APIのインストールから。

0 件のコメント:

コメントを投稿