fastlane-plugin-easy_deploy 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 5172d6b6a0d011caa0d187afd646fc3783c27dad07833cfa9f5acae26572c8e2
         | 
| 4 | 
            +
              data.tar.gz: f8a6ea4ca13268d11269ff241fe60fb017aebdd5bdc113daeb405047e633dfc6
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: '008325e6b8fb1aeb8a61b19e4da1a25183b14f6afdc136b1fcef342403817ed85b5cd82e392e0e1a7788a41f0637572e648c1a74515a5944cb2eb33440ae0f81'
         | 
| 7 | 
            +
              data.tar.gz: 441c238f746b562e193bc8101c0d7051e9f7acb3d6b7af470cc4df943d85f5ddf06b75149a02052910656a2a83295897ebd880451c43d7364c0b747fbb5055b9
         | 
| @@ -0,0 +1,43 @@ | |
| 1 | 
            +
            require 'fastlane/action'
         | 
| 2 | 
            +
            require_relative '../helpers/env'
         | 
| 3 | 
            +
            require_relative '../helpers/helpers'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            module Fastlane
         | 
| 6 | 
            +
              module Actions
         | 
| 7 | 
            +
                class FirebasePrerequisitesAction < Action
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  def self.run
         | 
| 10 | 
            +
                    get_credentials()
         | 
| 11 | 
            +
                    set_env(env: "STAGING")
         | 
| 12 | 
            +
                  end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
                  def self.description
         | 
| 15 | 
            +
                    "Prepare environment for firebase build"
         | 
| 16 | 
            +
                  end
         | 
| 17 | 
            +
             | 
| 18 | 
            +
                  def self.authors
         | 
| 19 | 
            +
                    ["Lukas Baranauskas Github: lukebars"]
         | 
| 20 | 
            +
                  end
         | 
| 21 | 
            +
             | 
| 22 | 
            +
                  def self.details
         | 
| 23 | 
            +
                    "Gets credentials and sets environment"
         | 
| 24 | 
            +
                  end
         | 
| 25 | 
            +
             | 
| 26 | 
            +
                  def self.is_supported?(platform)
         | 
| 27 | 
            +
                    # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
         | 
| 28 | 
            +
                    # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
         | 
| 29 | 
            +
                    #
         | 
| 30 | 
            +
                    # [:ios, :mac, :android].include?(platform)
         | 
| 31 | 
            +
                    true
         | 
| 32 | 
            +
                  end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
                  def self.example_code
         | 
| 35 | 
            +
                    [
         | 
| 36 | 
            +
                      <<-CODE
         | 
| 37 | 
            +
                        firebase_prerequisites()
         | 
| 38 | 
            +
                      CODE
         | 
| 39 | 
            +
                    ]
         | 
| 40 | 
            +
                  end
         | 
| 41 | 
            +
                end
         | 
| 42 | 
            +
              end
         | 
| 43 | 
            +
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: fastlane-plugin-easy_deploy
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.1. | 
| 4 | 
            +
              version: 0.1.2
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Lukas Baranauskas
         | 
| @@ -160,6 +160,7 @@ files: | |
| 160 160 | 
             
            - README.md
         | 
| 161 161 | 
             
            - lib/fastlane/plugin/easy_deploy.rb
         | 
| 162 162 | 
             
            - lib/fastlane/plugin/easy_deploy/actions/easy_deploy_action.rb
         | 
| 163 | 
            +
            - lib/fastlane/plugin/easy_deploy/actions/prerequisites_action.rb
         | 
| 163 164 | 
             
            - lib/fastlane/plugin/easy_deploy/helper/easy_deploy_helper.rb
         | 
| 164 165 | 
             
            - lib/fastlane/plugin/easy_deploy/version.rb
         | 
| 165 166 | 
             
            homepage: https://github.com/kilohealth/fastlane-plugin-easy_deploy
         |