lib/xcode/install/update.rb in xcode-install-0.3.0 vs lib/xcode/install/update.rb in xcode-install-0.3.1
- old
+ new
@@ -1,14 +1,14 @@
module XcodeInstall
- class Command
- class Update < Command
- self.command = 'update'
- self.summary = 'Update cached list of available Xcodes.'
+ class Command
+ class Update < Command
+ self.command = 'update'
+ self.summary = 'Update cached list of available Xcodes.'
- def run
- installer = XcodeInstall::Installer.new
- installer.rm_list_cache
- installer.list
- end
- end
- end
+ def run
+ installer = XcodeInstall::Installer.new
+ installer.rm_list_cache
+ installer.list
+ end
+ end
+ end
end