2008-03-02から1日間の記事一覧

ActiveRecord::Base というかモデルオブジェクトの拡張

ActiveRecord::Baseクラスというか、それを継承して作るモデルのオブジェクトを拡張したい。取敢えずメソッドの追加。 モデルのスペックファイルで追加したいメソッドへの respond to を記述 スペックは失敗する プロジェクト\app\helper\ ディレクトリにヘ…

RSpec on Rails。はじめる

まずは script/generate rspec_model。RSpec on Rails を入れる前にすでにひとつモデルは作っていたので --skip-migration をつけた方がよさそう。 一応 field:type field:type … … も付けといたけどどうなのかな。なくても良いのか、フィクスチャーの為にで…

RSpec on Rails。インストール

るびま には http://rubyforge.org/var/svn/rspec/tags/ 以下とあるんだけどどうなんだろう。svnリポジトリブラウザで見てもよく分からない。 http://agilewebdevelopment.com/plugins/rspec_on_railsより、こんな感じで ruby script/plugin install http://…

script\plugin の使い方

ruby script\plugin --help より COMMANDS discover Discover plugin repositories. プラグインを公開しているリポジトリを探してくる list List available plugins. 使用可能なプラグインのリスト install Install plugin(s) from known repositories or UR…