⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 published.rb

📁 用ruby on rails写的一个博客程序,还不错..ruby on rails的确是个好框架
💻 RB
字号:
module ContentState  class Published < Base    include Singleton    def published?(content)      true    end    def enter_hook(content)      super      content[:published] = true      content[:published_at] ||= Time.now    end    def change_published_state(content, boolean)      if ! boolean        content[:published] = false        content[:published_at] = nil        content.state = Factory.new(:just_withdrawn)      end    end    def withdraw(content)      content.state = Factory.new(:just_withdrawn)    end    def set_published_at(content, new_time)      content[:published_at] = new_time      return if new_time.nil?      if new_time > Time.now        content.state = PublicationPending.instance      end    end  endend

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -