lib/run_loop/cli/cli.rb in run_loop-1.3.1 vs lib/run_loop/cli/cli.rb in run_loop-1.3.2
- old
+ new
@@ -1,9 +1,10 @@
require 'thor'
require 'run_loop'
require 'run_loop/cli/errors'
require 'run_loop/cli/instruments'
+require 'run_loop/cli/simctl'
trap 'SIGINT' do
puts 'Trapped SIGINT - exiting'
exit 10
end
@@ -24,9 +25,12 @@
puts RunLoop::VERSION
end
desc 'instruments', "Interact with Xcode's command-line instruments"
subcommand 'instruments', RunLoop::CLI::Instruments
+
+ desc 'simctl', "Interact with Xcode's command-line simctl"
+ subcommand 'simctl', RunLoop::CLI::Simctl
end
end
end