bin/produce in produce-0.1.6 vs bin/produce in produce-0.2.0
- old
+ new
@@ -7,11 +7,11 @@
require 'credentials_manager/password_manager'
require 'credentials_manager/appfile_config'
HighLine.track_eof = false
-class FastlaneApplication
+class ProduceApplication
include Commander::Methods
def run
program :version, Produce::VERSION
program :description, 'CLI for \'produce\''
@@ -46,6 +46,11 @@
run!
end
end
-FastlaneApplication.new.run
+begin
+ FastlaneCore::UpdateChecker.start_looking_for_update('produce')
+ ProduceApplication.new.run
+ensure
+ FastlaneCore::UpdateChecker.show_update_status('produce', Produce::VERSION)
+end