lib/percy/cli.rb in percy-cli-0.0.2 vs lib/percy/cli.rb in percy-cli-0.1.0
- old
+ new
@@ -6,10 +6,13 @@
module Percy
class Cli
include Commander::Methods
include Percy::Cli::Snapshot
+ DEFAULT_NUM_THREADS = 10
+ MAX_NUM_THREADS = 50
+
def say(*args)
$terminal.say(*args)
end
def say_error(*args)
@@ -37,15 +40,27 @@
c.option \
'--snapshots_regex REGEX',
String,
'Regular expression for matching the files to snapshot. Defaults to: "\.(html|htm)$"'
c.option \
+ '--snapshot_limit NUM',
+ Integer,
+ "Max number of snapshots to upload, useful for testing. Default is unlimited."
+ c.option \
'--autoload_remote_resources',
'Attempts to parse HTML and CSS for remote resources, fetch them, and include in ' +
'snapshots. This can be very useful if your static website relies on remote resources.'
+ c.option \
+ '--threads NUM',
+ Integer,
+ "Number of threads in pools for snapshot and resource uploads. " +
+ "Defaults to #{DEFAULT_NUM_THREADS}, max #{MAX_NUM_THREADS}."
c.action do |args, options|
options.default autoload_remote_resources: false
+ options.default threads: DEFAULT_NUM_THREADS
+ options.threads = MAX_NUM_THREADS if options.threads > MAX_NUM_THREADS
+
raise OptionParser::MissingArgument, 'root folder path is required' if args.empty?
if args.length > 1
raise OptionParser::MissingArgument, 'only a single root folder path can be given'
end
root_dir = args.first