Class: Commands::Update
Instance Method Summary collapse
-
#initialize(base_command) ⇒ Update
constructor
A new instance of Update.
- #options ⇒ Object
- #parse!(args) ⇒ Object
Constructor Details
#initialize(base_command) ⇒ Update
Returns a new instance of Update.
775 776 777 |
# File 'lib/commands/plugin.rb', line 775 def initialize(base_command) @base_command = base_command end |
Instance Method Details
#options ⇒ Object
779 780 781 782 783 784 785 786 787 788 |
# File 'lib/commands/plugin.rb', line 779 def OptionParser.new do |o| o.set_summary_indent(' ') o. = "Usage: #{@base_command.script_name} update [name [name]...]" o.on( "-r REVISION", "--revision REVISION", "Checks out the given revision from subversion.", "Ignored if subversion is not used.") { |v| @revision = v } o.define_head "Update plugins." end end |
#parse!(args) ⇒ Object
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 |
# File 'lib/commands/plugin.rb', line 790 def parse!(args) .parse!(args) root = @base_command.environment.root cd root args = Dir["vendor/plugins/*"].map do |f| File.directory?("#{f}/.svn") ? File.basename(f) : nil end.compact if args.empty? cd "vendor/plugins" args.each do |name| if File.directory?(name) puts "Updating plugin: #{name}" system("svn #{$verbose ? '' : '-q'} up \"#{name}\" #{@revision ? "-r #{@revision}" : ''}") else puts "Plugin doesn't exist: #{name}" end end end |