Sha256: b153c6e5998b7f2066ea6425c6c9d4174ab38e190b14363401fd127fba7e1fb7
Contents?: true
Size: 663 Bytes
Versions: 7
Compression:
Stored size: 663 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 end Provisional::Project.new(options)
Version data entries
7 entries across 7 versions & 1 rubygems