Sha256: e2294de22d1e9ba55146496f627b60f8749a07566fb9d92c9f43d78f91eb35c3
Contents?: true
Size: 523 Bytes
Versions: 2
Compression:
Stored size: 523 Bytes
Contents
class ZergXcode::Plugins::Import def help {:short => 'imports the objects from a project into another project', :long => <<"END" } Usage: import source_path [target_path] Imports the objects (build targets, files) from a source project into another target project. Useful when the source project wraps code that can be used as a library. END end def run(args) source = ZergXcode.load args.shift target = ZergXcode.load(args.shift || '.') print "Import is not yet implemented." end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
costan-zerg_xcode-0.1 | lib/zerg_xcode/plugins/import.rb |
zerg_xcode-0.1 | lib/zerg_xcode/plugins/import.rb |