The module nams "Rails"
基本都是一些类方法,本来也是作为服务类的。源码如下:
class << self def application @@application ||= nil end def application=(application) @@application = application end # The Configuration instance used to configure the Rails environment def configuration application.config end def initialize! application.initialize! end def initialized? @@initialized || false end def initialized=(initialized) @@initialized ||= initialized end def logger @@logger ||= nil end def logger=(logger) @@logger = logger end def backtrace_cleaner @@backtrace_cleaner ||= begin # Relies on Active Support, so we have to lazy load to postpone definition until AS has been loaded require 'rails/backtrace_cleaner' Rails::BacktraceCleaner.new end end def root application && application.config.root end def env @_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development") end def env=(environment) @_env = ActiveSupport::StringInquirer.new(environment) end def cache RAILS_CACHE end # Returns all rails groups for loading based on: # # * The Rails environment; # * The environment variable RAILS_GROUPS; # * The optional envs given as argument and the hash with group dependencies; # # == Examples # # groups :assets => [:development, :test] # # # Returns # # => [:default, :development, :assets] for Rails.env == "development" # # => [:default, :production] for Rails.env == "production" # def groups(*groups) hash = groups.extract_options! env = Rails.env groups.unshift(:default, env) groups.concat ENV["RAILS_GROUPS"].to_s.split(",") groups.concat hash.map { |k,v| k if v.map(&:to_s).include?(env) } groups.compact! groups.uniq! groups end def version VERSION::STRING end def public_path application && application.paths["public"].first end end这里面的很多方法是服务的,比如查看配置,查看版本,等等。
重点说几个常用的:
* application
1.9.3p194 :001 > Rails.application.class
=> AppName::Application
* 查看Rails的配置
# The Configuration instance used to configure the Rails environment def configuration application.config end
1.9.3p194 :006 > Rails.configuration.class
=> Rails::Application::Configuration
1.9.3p194 :008 > Rails.configuration.session_store
=> ActionDispatch::Session::CookieStore
还有很多配置,随时补充吧,在这里查看配置很方便。
*cache 查看cache类型和配置
1.9.3p194 :010 > Rails.cache
=> #<ActiveSupport::Cache::FileStore:0x000000032fa898 @options={}, @cache_path="/mnt/ubuntu-64-disk-2/home
def cache RAILS_CACHE end
这里的cache居然还是个常量。
Rails::Info
autoload :Info, 'rails/info'
这个类显示了很多Rails的基本信息,很多Rails模块的很多用法,可以参考这个类是怎么使用的。
1.9.3p194 :001 > Rails::Info
(3.1ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
=> About your application's environment
Ruby version 1.9.3 (x86_64-linux)
RubyGems version 1.8.24
Rack version 1.4
Rails version 3.2.13
JavaScript Runtime therubyracer (V8)
Active Record version 3.2.13
Action Pack version 3.2.13
Active Resource version 3.2.13
Action Mailer version 3.2.13
Active Support version 3.2.13
Database schema version 20140613094339
autoload :InfoController, 'rails/info_controller'
rails模块中引入的这个类,代码很简单:
class Rails::InfoController < ActionController::Base def properties if consider_all_requests_local? || request.local? render :inline => Rails::Info.to_html else render :text => '<p>For security purposes, this information is only available to local requests.</p>', :status => :forbidden end end protected def consider_all_requests_local? Rails.application.config.consider_all_requests_local end end
就是把Rails的Info信息在浏览器显示一下。
可以看出这里是用了ActionController,那么我们认为,配置了路由,就可以访问了,不知rails自带的默认生成的代码是不是配置了此项。
我们来配置一下路由:
get 'rails/info/properties' => 'rails::info#properties' #testing rails info
好了在浏览器访问一下:
http://nihao.com:3000/rails/info/properties
果然是可以看到一个比较友好的表格,显示rails的详细信息。
+
+
+
0
-
-
-
相关推荐
Ruby支持单继承,但可以通过模块(`Module`)实现多重继承的效果。 - 构造器与初始化:Ruby中的构造器通常是`initialize`方法,用于在创建新对象时设置初始状态。 - 方法定义:Ruby允许在类定义内部以及类外部定义...
2. **对象和类**:Ruby是面向对象的语言,会讲解类的定义、对象的创建、继承、模块(Module)的作用以及混合(Mix-in)机制。 3. **方法**:学习如何定义和调用方法,包括块(Block)、Proc和Lambda的区别,以及...
8. **模块(Module)**:模块是命名空间管理工具,可以包含常量、方法和混合(mix-in)到类中,实现代码复用。 9. **类(Class)和对象初始化**:Ruby中的类定义了对象的类型和行为,通过`initialize`方法进行对象...
Ruby还支持模块(Module),可以用于封装方法和常量,以及实现多重继承的效果。 3. **块和闭包** Ruby中的块是代码的逻辑单元,可以嵌套在方法内部,用`do..end`或花括号`{}`包裹。块可以与方法结合,通过`yield`...
- **模块** (`module`) 用于封装代码,可以实现多重继承的效果。 - **方法重写** 通过 `super` 调用父类方法。 - **属性** 通常用 `attr_accessor`,`attr_reader` 或 `attr_writer` 自动创建 getter 和 setter ...
"Ruby Mind Map"的思维导图可能涵盖了以上这些核心概念,并进一步细化到如闭包、块参数、块传参、方法定义、常量、变量作用域、模块的使用等细节。通过这样的视觉化工具,开发者可以直观地了解Ruby的全貌,快速定位...
6. Mixins:Ruby的模块(Module)可以用来实现代码复用,通过`include`关键字,一个类可以"混合"(Mix-in)另一个模块的特性。 7. Duck Typing:“如果它走起来像鸭子,叫起来也像鸭子,那么它就是鸭子。”这是Ruby...