fastlane/lib/fastlane/actions/appstore.rb in fastlane-2.68.0.beta.20171129010003 vs fastlane/lib/fastlane/actions/appstore.rb in fastlane-2.68.0.beta.20171130010004
- old
+ new
@@ -1,43 +1,14 @@
module Fastlane
module Actions
- class AppstoreAction < Action
- def self.run(params)
- Actions::DeliverAction.run(params)
- end
-
+ require 'fastlane/actions/upload_to_app_store'
+ class AppstoreAction < UploadToAppStoreAction
#####################################################
# @!group Documentation
#####################################################
def self.description
- "Alias for the deliver action"
- end
-
- def self.available_options
- require "deliver"
- require "deliver/options"
- FastlaneCore::CommanderGenerator.new.generate(Deliver::Options.available_options)
- end
-
- def self.output
- []
- end
-
- def self.author
- 'KrauseFx'
- end
-
- def self.is_supported?(platform)
- Actions::DeliverAction.is_supported?(platform)
- end
-
- def self.category
- Actions::DeliverAction.category
- end
-
- def self.example_code
- Actions::DeliverAction.example_code
+ "Alias for the `upload_to_app_store` action"
end
end
end
end