文件名称:ar-orderable:用于简单订购的 Rails 3 插件
文件大小:8KB
文件格式:ZIP
更新时间:2024-08-03 00:55:20
Ruby
Activerecord::可订购 用于简单订购的 Rails 3 插件。 安装 插入您的Gemfile : gem "ar-orderable" 然后bundle install 设置 添加订单字段,如order_nr为整数 在模型中添加行acts_as_orderable并根据需要添加选项 column: "my_custom_order_field" # default it's order_nr scope: :locale # to order in some scope, you can add also as array [:locale, :some_type] 如果您的表已经有一些数据行,则在添加新列后调用YourModel.order_unordered 。 示例迁移: add_column :categories, :order_nr, :integer
【文件预览】:
ar-orderable-master
----.gitignore(167B)
----.document(55B)
----.rspec(20B)
----spec()
--------spec.opts(30B)
--------spec_helper.rb(1KB)
--------ar-orderable_spec.rb(5KB)
----README.md(1KB)
----lib()
--------ar-orderable.rb(5KB)
----ar-orderable.gemspec(692B)
----Gemfile(213B)
----MIT-LICENSE(1KB)
----Rakefile(158B)
----Gemfile.lock(2KB)