diff options
author | francis <francis> | 2008-01-23 01:48:14 +0000 |
---|---|---|
committer | francis <francis> | 2008-01-23 01:48:14 +0000 |
commit | 60eaae4f7df1f1dae91defb87d3707451c359cf4 (patch) | |
tree | e74835c37779a2f094e810960cda07b99a75330e /vendor/rails-2.0.2/railties/builtin/rails_info | |
parent | 71d22c740302e1f83bbbd89b229734ea9c67493c (diff) |
Freeze in rails 2.0.2 (Am I going to regret having this beast in CVS?)
Diffstat (limited to 'vendor/rails-2.0.2/railties/builtin/rails_info')
4 files changed, 136 insertions, 0 deletions
diff --git a/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info.rb b/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info.rb new file mode 100644 index 000000000..b73cc1340 --- /dev/null +++ b/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info.rb @@ -0,0 +1,123 @@ +module Rails + module Info + mattr_accessor :properties + class << (@@properties = []) + def names + map {|(name, )| name} + end + + def value_for(property_name) + find {|(name, )| name == property_name}.last rescue nil + end + end + + class << self #:nodoc: + def property(name, value = nil) + value ||= yield + properties << [name, value] if value + rescue Exception + end + + def components + %w( active_record action_pack active_resource action_mailer active_support ) + end + + def component_version(component) + require "#{component}/version" + "#{component.classify}::VERSION::STRING".constantize + end + + def edge_rails_revision(info = svn_info) + info[/^Revision: (\d+)/, 1] || freeze_edge_version + end + + def freeze_edge_version + if File.exist?(rails_vendor_root) + begin + Dir[File.join(rails_vendor_root, 'REVISION_*')].first.scan(/_(\d+)$/).first.first + rescue + Dir[File.join(rails_vendor_root, 'TAG_*')].first.scan(/_(.+)$/).first.first rescue 'unknown' + end + end + end + + def to_s + column_width = properties.names.map {|name| name.length}.max + ["About your application's environment", *properties.map do |property| + "%-#{column_width}s %s" % property + end] * "\n" + end + + alias inspect to_s + + def to_html + returning table = '<table>' do + properties.each do |(name, value)| + table << %(<tr><td class="name">#{CGI.escapeHTML(name.to_s)}</td>) + table << %(<td class="value">#{CGI.escapeHTML(value.to_s)}</td></tr>) + end + table << '</table>' + end + end + + protected + def rails_vendor_root + @rails_vendor_root ||= "#{RAILS_ROOT}/vendor/rails" + end + + def svn_info + env_lang, ENV['LC_ALL'] = ENV['LC_ALL'], 'C' + Dir.chdir(rails_vendor_root) do + silence_stderr { `svn info` } + end + ensure + ENV['LC_ALL'] = env_lang + end + end + + # The Ruby version and platform, e.g. "1.8.2 (powerpc-darwin8.2.0)". + property 'Ruby version', "#{RUBY_VERSION} (#{RUBY_PLATFORM})" + + # The RubyGems version, if it's installed. + property 'RubyGems version' do + Gem::RubyGemsVersion + end + + # The Rails version. + property 'Rails version' do + Rails::VERSION::STRING + end + + # Versions of each Rails component (Active Record, Action Pack, + # Active Resource, Action Mailer, and Active Support). + components.each do |component| + property "#{component.titlecase} version" do + component_version(component) + end + end + + # The Rails SVN revision, if it's checked out into vendor/rails. + property 'Edge Rails revision' do + edge_rails_revision + end + + # The application's location on the filesystem. + property 'Application root' do + File.expand_path(RAILS_ROOT) + end + + # The current Rails environment (development, test, or production). + property 'Environment' do + RAILS_ENV + end + + # The name of the database adapter for the current environment. + property 'Database adapter' do + ActiveRecord::Base.configurations[RAILS_ENV]['adapter'] + end + + property 'Database schema version' do + ActiveRecord::Migrator.current_version rescue nil + end + end +end diff --git a/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info_controller.rb b/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info_controller.rb new file mode 100644 index 000000000..39f8b1f12 --- /dev/null +++ b/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info_controller.rb @@ -0,0 +1,9 @@ +class Rails::InfoController < ActionController::Base + def properties + if local_request? + render :inline => Rails::Info.to_html + else + render :text => '<p>For security purposes, this information is only available to local requests.</p>', :status => 500 + end + end +end diff --git a/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info_helper.rb b/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info_helper.rb new file mode 100644 index 000000000..e5605a8d9 --- /dev/null +++ b/vendor/rails-2.0.2/railties/builtin/rails_info/rails/info_helper.rb @@ -0,0 +1,2 @@ +module Rails::InfoHelper +end diff --git a/vendor/rails-2.0.2/railties/builtin/rails_info/rails_info_controller.rb b/vendor/rails-2.0.2/railties/builtin/rails_info/rails_info_controller.rb new file mode 100644 index 000000000..2009eb3a9 --- /dev/null +++ b/vendor/rails-2.0.2/railties/builtin/rails_info/rails_info_controller.rb @@ -0,0 +1,2 @@ +# Alias to ensure old public.html still works. +RailsInfoController = Rails::InfoController |