simple_command:在Ruby中构建和使用服务对象(又称为命令)的一种简单,标准化的方法

时间:2024-02-22 22:17:48
【文件属性】:

文件名称:simple_command:在Ruby中构建和使用服务对象(又称为命令)的一种简单,标准化的方法

文件大小:9KB

文件格式:ZIP

更新时间:2024-02-22 22:17:48

ruby service-object RubyRuby

简单命令 在Ruby中构建和使用服务对象(又称为Commands )的一种简单,标准化的方法 要求 Ruby 2.0以上 安装 将此行添加到您的应用程序的Gemfile中: gem 'simple_command' 然后执行: $ bundle 或自己安装为: $ gem install simple_command 用法 这是验证用户身份的命令的基本示例 # define a command class class AuthenticateUser # put SimpleCommand before the class' ancestors chain prepend SimpleCommand include ActiveModel :: Validations # optional, initialize the command with some arguments def initialize ( email , password ) @email = email @password = password end # ma


【文件预览】:
simple_command-master
----simple_command.gemspec(989B)
----LICENSE.txt(1KB)
----lib()
--------simple_command()
--------simple_command.rb(668B)
----Gemfile(160B)
----spec()
--------simple_command()
--------spec_helper.rb(256B)
--------factories()
--------simple_command_spec.rb(2KB)
----Rakefile(114B)
----.travis.yml(40B)
----README.md(3KB)
----.rubocop.yml(273B)
----.rspec(8B)
----.gitignore(118B)

网友评论