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

📄 core_ext_hooks.rb

📁 A Hotel Management System based on Ruby on Rails.
💻 RB
字号:
# Hook up core extenstions (need to define them as main level, hence 
# the :: prefix)
class ::String # :nodoc: 
  include Globalize::CoreExtensions::String
end

class ::Symbol # :nodoc:  
  include Globalize::CoreExtensions::Symbol
end

class ::Object # :nodoc:  
  include Globalize::CoreExtensions::Object
end

class ::Fixnum # :nodoc:
  include Globalize::CoreExtensions::Integer 
end

class ::Bignum # :nodoc:
  include Globalize::CoreExtensions::Integer
end

class ::Float # :nodoc:
  include Globalize::CoreExtensions::Float  
end

class ::Time # :nodoc:
  include Globalize::CoreExtensions::Time
end

class ::Date # :nodoc:
  include Globalize::CoreExtensions::Date
end

⌨️ 快捷键说明

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