lib/zerg_xcode/plugins/import.rb in zerg_xcode-0.3.4 vs lib/zerg_xcode/plugins/import.rb in zerg_xcode-0.3.5
- old
+ new
@@ -1,9 +1,20 @@
+# Imports the contents of an Xcode project into another Xcode project.
+#
+# Author:: Victor Costan
+# Copyright:: Copyright (C) 2009 Zergling.Net
+# License:: MIT
+
require 'fileutils'
require 'pathname'
-class ZergXcode::Plugins::Import
+# :nodoc: namespace
+module ZergXcode::Plugins
+
+
+# Imports the contents of an Xcode project into another Xcode project.
+class Import
include ZergXcode::Objects
def help
{:short => 'imports the objects from a project into another project',
:long => <<"END" }
@@ -276,6 +287,8 @@
cross_reference source_value, value, strict, mappings
end
mappings
end
private :cross_reference_enumerables
-end
+end # class ZergXcode::Plugins::Import
+
+end # namespace ZergXcode::Plugins