• 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

Ohm を使っていると色々と不満な点が見えてきます

  • @attributes を得る手段がない (#attributes が column_names を返す)
  • create!, save! がない
  • first, all がない
  • ...

これは AR 脳というよりも、ARの洗練されたAPIと比べてしまうと、 Ohm の未成熟さが浮き彫りになってしまうためだと思います。

ohm-arfreaks

そこで、ARのメソッドをOhm上で使えるようにしたラッパーを作成しました。

http://github.com/maiha/ohm-arfreaks

インストール

   1  % gem install ohm-arfreaks

   1  require 'ohm'
   2  require 'ohm-arfreaks'   # これを追加
   3  
   4  class Video < Ohm::Model
   5    attribute :url
   6    set       :tags
   7  end
   8  
   9  Video.create!(:url=>"a")
  10  Video.first.attributes
  11  => {:url=>"a", :tags=>[]}

以下のメソッドが利用可能です (0.1.0 現在)

  • self.primary_key
  • self.columns
  • self.column_names
  • self.content_columns
  • self.columns_hash
  • self.create!
  • save!
  • self.first
  • self.last
  • self.count
  • self.delete_all
  • new_record?
  • attributes

ARと比べると使えるメソッドは少ないですが、 これだけでも随分Ohmが快適になると思います。

backup

例えば、redis はどこに DB を作っているかわかり辛いので 時々バックアップが欲しくなるのですが、 昔懐かしのar_fixtures plugin 相当のことは以下のコードでできるようになります。

   1  File.open("videos.yml", "w+") do |f|
   2    hash = Video.all.inject({}){|h,v| h[v.id]=v.attributes;h}
   3    f.print hash.to_yaml
   4  end

posted by Png maiha on Tue 16 Mar 2010 at 19:16

Comments:

or Preview
Social Bookmarks
  • Delicious
  • B_entry1734
  • Clip_16_12_w
Services from s21g
twpro(ツイプロ)
Twitterプロフィールを快適検索
地価2009
土地の値段を調べてみよう
MyRestaurant
自分だけのレストラン手帳
Formula
ブログに数式を埋め込める数式コミュニティ