Source: show | on GitHub
# File railties/lib/rails/commands/plugin.rb, line 427 def initialize(base_command) @base_command = base_command end
# File railties/lib/rails/commands/plugin.rb, line 431 def options OptionParser.new do |o| o.set_summary_indent(' ') o.banner = "Usage: #{@base_command.script_name} remove name [name]..." o.define_head "Remove plugins." end end
# File railties/lib/rails/commands/plugin.rb, line 439 def parse!(args) options.parse!(args) if args.blank? puts options exit 1 end root = @base_command.environment.root args.each do |name| ::Plugin.new(name).uninstall end end