开发者

ActiveModel without rails

开发者 https://www.devze.com 2023-01-29 04:21 出处:网络
开发者_如何学PythonIs possible use ActiveModel without rails?. Is possible use ActiveModel in desktop application?With Rails 3 you can! Check out this post on Rubyinside.com Yes, for example using th
开发者_如何学Python

Is possible use ActiveModel without rails?. Is possible use ActiveModel in desktop application?


With Rails 3 you can! Check out this post on Rubyinside.com


Yes, for example using the validations:

require 'active_model'

class Cat
  include ActiveModel::Validations

  attr_accessor :id, :name

  validates_presence_of :name
  puts "meow!"

end

Testing out the class above:

$ irb -r ./cat.rb
meow!
irb(main):002:0> cat = Cat.new
=> #<Cat:0xb99e44>
irb(main):003:0> cat.valid?
[deprecated] I18n.enforce_available_locales will default to true in the future. If you really want to skip validation of your locale you can set I18n.enforce_available_locales = false to avoid this message.
=> false
irb(main):004:0> cat.name = "puss"
=> "puss"
irb(main):005:0> cat.valid?
=> true
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号