Sha256: a322c49a995fe4916a77fe0ea02e864452ad90ce27ffa1801e470c5eba6c010e
Contents?: true
Size: 1.94 KB
Versions: 12
Compression:
Stored size: 1.94 KB
Contents
module Pantograph class SetupGeneric < Setup # attr_accessor :package_name def setup_generic # self.platform = :generic welcome_to_pantograph self.pantfile_content = pantfile_template_content fetch_information PantographCore::PantographFolder.create_folder! self.append_lane([ "desc 'Runs all the tests'", "lane :test do", " # Add command to execute your tests", " sh('$shell_command_replace_me')", "end" ]) self.append_lane([ "desc 'Publish new version to Artifactory'", "lane :build do", " # Add command to build your application", " sh('$shell_command_replace_me')", "end" ]) self.append_lane([ "desc 'Deploy a new version to Artifactory'", "lane :publish do", " # Add command to deploy your application", " sh('$shell_command_replace_me')", "end" ]) self.lane_to_mention = "test" finish_up end def fetch_information # UI.message('') # UI.message("To avoid re-entering your package name and issuer every time you run pantograph, we'll store those in a so-called Appfile.") # self.package_name = UI.input("Package Name (com.krausefx.app): ") # puts("") # puts("To automatically upload builds and metadata to Google Play, pantograph needs a service account json secret file".yellow) # puts("Feel free to press Enter at any time in order to skip providing pieces of information when asked") end def finish_up # self.pantfile_content.gsub!(":generic", ":generic") super end end end
Version data entries
12 entries across 12 versions & 1 rubygems