mirror of https://github.com/rails/rails
Make use of silence_stderr in script/lighttpd, script/plugin, and Rails::Info
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2903 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
parent
5feb3124d4
commit
5c1eb899de
|
@ -1,5 +1,7 @@
|
||||||
*SVN*
|
*SVN*
|
||||||
|
|
||||||
|
* Make use of silence_stderr in script/lighttpd, script/plugin, and Rails::Info [Sam Stephenson]
|
||||||
|
|
||||||
* Enable HTTP installation of plugins when svn isn't avaialable. Closes #2661. [Chad Fowler]
|
* Enable HTTP installation of plugins when svn isn't avaialable. Closes #2661. [Chad Fowler]
|
||||||
|
|
||||||
* Load Rails::Info after initialization [Sam Stephenson]
|
* Load Rails::Info after initialization [Sam Stephenson]
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
unless RUBY_PLATFORM !~ /mswin/ && `lighttpd -version 2>/dev/null`.size > 0
|
require 'active_support'
|
||||||
|
|
||||||
|
unless RUBY_PLATFORM !~ /mswin/ && !silence_stderr { `lighttpd -version` }.blank?
|
||||||
puts "lighttpd is not available on your system (or not in your path)"
|
puts "lighttpd is not available on your system (or not in your path)"
|
||||||
exit 1
|
exit 1
|
||||||
end
|
end
|
||||||
|
|
|
@ -119,7 +119,7 @@ class RailsEnvironment
|
||||||
|
|
||||||
def externals
|
def externals
|
||||||
return [] unless use_externals?
|
return [] unless use_externals?
|
||||||
ext = `svn propget svn:externals #{root}/vendor/plugins 2> /dev/null`
|
ext = silence_stderr { `svn propget svn:externals #{root}/vendor/plugins` }
|
||||||
ext.reject{ |line| line.strip == '' }.map do |line|
|
ext.reject{ |line| line.strip == '' }.map do |line|
|
||||||
line.strip.split(/\s+/, 2)
|
line.strip.split(/\s+/, 2)
|
||||||
end
|
end
|
||||||
|
|
|
@ -29,8 +29,8 @@ module Rails
|
||||||
"#{component.classify}::Version::STRING".constantize
|
"#{component.classify}::Version::STRING".constantize
|
||||||
end
|
end
|
||||||
|
|
||||||
def edge_rails_revision
|
def edge_rails_revision(info = svn_info)
|
||||||
svn_info[/^Revision: (\d+)/, 1] || 'unknown'
|
info[/^Revision: (\d+)/, 1]
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_s
|
def to_s
|
||||||
|
@ -45,7 +45,7 @@ module Rails
|
||||||
protected
|
protected
|
||||||
def svn_info
|
def svn_info
|
||||||
Dir.chdir("#{RAILS_ROOT}/vendor/rails") do
|
Dir.chdir("#{RAILS_ROOT}/vendor/rails") do
|
||||||
IO.popen('svn info') { |f| f.read }
|
silence_stderr { `svn info` }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,10 +5,22 @@ require 'test/unit'
|
||||||
require 'active_support'
|
require 'active_support'
|
||||||
require 'rails_info'
|
require 'rails_info'
|
||||||
|
|
||||||
class << Rails::Info
|
class InfoTest < Test::Unit::TestCase
|
||||||
protected
|
def setup
|
||||||
def svn_info
|
Rails.send :remove_const, :Info
|
||||||
<<-EOS
|
silence_warnings { load 'rails_info.rb' }
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_edge_rails_revision_not_set_when_svn_info_is_empty
|
||||||
|
Rails::Info.property 'Test that this will not be defined' do
|
||||||
|
Rails::Info.edge_rails_revision ''
|
||||||
|
end
|
||||||
|
assert !property_defined?('Test that this will not be defined')
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_edge_rails_revision_extracted_from_svn_info
|
||||||
|
Rails::Info.property 'Test Edge Rails revision' do
|
||||||
|
Rails::Info.edge_rails_revision <<-EOS
|
||||||
Path: .
|
Path: .
|
||||||
URL: http://www.rubyonrails.com/svn/rails/trunk
|
URL: http://www.rubyonrails.com/svn/rails/trunk
|
||||||
Repository UUID: 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
|
Repository UUID: 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
|
||||||
|
@ -20,13 +32,10 @@ Last Changed Rev: 2881
|
||||||
Last Changed Date: 2005-11-04 21:04:41 -0600 (Fri, 04 Nov 2005)
|
Last Changed Date: 2005-11-04 21:04:41 -0600 (Fri, 04 Nov 2005)
|
||||||
Properties Last Updated: 2005-10-28 19:30:00 -0500 (Fri, 28 Oct 2005)
|
Properties Last Updated: 2005-10-28 19:30:00 -0500 (Fri, 28 Oct 2005)
|
||||||
|
|
||||||
EOS
|
EOS
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
assert_property 'Test Edge Rails revision', '2881'
|
||||||
class InfoTest < Test::Unit::TestCase
|
|
||||||
def test_edge_rails_revision_extracted_from_svn_info
|
|
||||||
assert_equal '2881', Rails::Info.edge_rails_revision
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_property_with_block_swallows_exceptions_and_ignores_property
|
def test_property_with_block_swallows_exceptions_and_ignores_property
|
||||||
|
@ -57,6 +66,16 @@ class InfoTest < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
protected
|
protected
|
||||||
|
def svn_info=(info)
|
||||||
|
Rails::Info.module_eval do
|
||||||
|
class << self
|
||||||
|
def svn_info
|
||||||
|
info
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def properties
|
def properties
|
||||||
Rails::Info.properties
|
Rails::Info.properties
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue