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

📄 application.rb

📁 FusionCharts 是一个免费的图形显示组件
💻 RB
字号:
# Filters added to this controller apply to all controllers in the application.# Likewise, all the methods added will be available for all controllers.class ApplicationController < ActionController::Base  helper :all # include all helpers, all the time  # See ActionController::RequestForgeryProtection for details  # Uncomment the :secret if you're not using the cookie session store  protect_from_forgery # :secret => 'e7ce10757c59806280c459a85d20c43b'
   
   # Formats the date to dd/mm without leading zeroes
  def format_date_remove_zeroes(date_to_format)  
        date_num= date_to_format.strftime('%d').to_i
        month_num = date_to_format.strftime('%m').to_i
        formatted_date=date_num.to_s+"/"+month_num.to_s         
  endend

⌨️ 快捷键说明

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