instance method
externals
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v3.2.22.5Signature
externals()
No documentation comment.
Source
# File railties/lib/commands/plugin.rb, line 134
def externals
return [] unless use_externals?
ext = `svn propget svn:externals "#{root}/vendor/plugins"`
ext.reject{ |line| line.strip == '' }.map do |line|
line.strip.split(/\s+/, 2)
end
end
Defined in railties/lib/commands/plugin.rb line 134
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in RailsEnvironment