mirror of
https://github.com/github/rails.git
synced 2026-01-30 00:38:00 -05:00
Fix script/plugin about so it uses about.yml and not meta.yml. [James Adam]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4612 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Fix script/plugin about so it uses about.yml and not meta.yml. [James Adam]
|
||||
|
||||
* Dispatcher processes rescued actions with the same controller that processed the request. #4625 [sd@notso.net]
|
||||
|
||||
* rails -d frontbase to create a new project with a frontbase database.yml. #4945 [mlaster@metavillage.com]
|
||||
|
||||
@@ -197,15 +197,15 @@ class Plugin
|
||||
end
|
||||
|
||||
def info
|
||||
tmp = "#{rails_env.root}/_tmp_meta.yml"
|
||||
tmp = "#{rails_env.root}/_tmp_about.yml"
|
||||
if svn_url?
|
||||
cmd = "svn export #{@uri} \"#{rails_env.root}/#{tmp}\""
|
||||
puts cmd if $verbose
|
||||
system(cmd)
|
||||
end
|
||||
open(svn_url? ? tmp : File.join(@uri, 'meta.yml')) do |stream|
|
||||
open(svn_url? ? tmp : File.join(@uri, 'about.yml')) do |stream|
|
||||
stream.read
|
||||
end rescue "No meta.yml found in #{uri}"
|
||||
end rescue "No about.yml found in #{uri}"
|
||||
ensure
|
||||
FileUtils.rm_rf tmp if svn_url?
|
||||
end
|
||||
@@ -836,7 +836,7 @@ module Commands
|
||||
OptionParser.new do |o|
|
||||
o.set_summary_indent(' ')
|
||||
o.banner = "Usage: #{@base_command.script_name} info name [name]..."
|
||||
o.define_head "Shows plugin info at {url}/meta.yml."
|
||||
o.define_head "Shows plugin info at {url}/about.yml."
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user