lib/zerg_xcode/plugins/retarget.rb in zerg_xcode-0.3.4 vs lib/zerg_xcode/plugins/retarget.rb in zerg_xcode-0.3.5

- old
+ new

@@ -1,6 +1,17 @@ -class ZergXcode::Plugins::Retarget +# Adds files to a build target, and removes them from all the other targets. +# +# Author:: Victor Costan +# Copyright:: Copyright (C) 2009 Zergling.Net +# License:: MIT + +# :nodoc: namespace +module ZergXcode::Plugins + + +# Adds files to a build target, and removes them from all the other targets. +class Retarget include ZergXcode::Objects def help {:short => 'reassign files to a target or set of targets', :long => <<"END" } @@ -81,6 +92,8 @@ end phase['files'] << build_files[file] end end end -end +end # class ZergXcode::Plugins::Retarget + +end # namespace ZergXcode::Plugins