Sha256: 62ecd786d7ab796c66235b907e80a039e1ea1aa835377a19c9d54b6ac8e8b1ac
Contents?: true
Size: 735 Bytes
Versions: 5
Compression:
Stored size: 735 Bytes
Contents
#!/usr/bin/env ruby require 'rubygems' require 'provisional' require 'trollop' options = Trollop::options do opt :name, "Name of the project", :type => String opt :scm, "SCM to use", :type => String opt :template, "Rails template to use", :type => String opt :domain, "Domain (for some SCMs, see documentation)", :type => String opt :username, "Username (for some SCMs, see documentation)", :type => String opt :password, "Password (for some SCMs, see documentation)", :type => String opt :id, "Id (for some SCMs, see documentation)", :type => String opt :config, "Config file (optional)", :type => String opt :private, "Private repository (for some SCMs, see documentation)" end Provisional::Project.new(options)
Version data entries
5 entries across 5 versions & 1 rubygems