Sha256: 54387c95188498dc429d1df5ed763db21f0ea4d76912bbc528a47ad3892790bf

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

module GoNative
  module Commands
    module Android
      class  Publish < Base
        desc 'Used to update one of the android internal dependencies'
        
        def call
          assert_build_file_exists!
          create_and_push_tag!
        end
        
        def assert_build_file_exists!
          return unless gradle_files.empty?

          raise Error, "No build.gradle file exists"
        end
        
        private
        
        def gradle_files
          @gradle_files ||= `find . -iname build.gradle`.split("\n")
        end

        def version
          @version if @version
          
          gradle_files.each do |gradle_file|
            str = IO.read(gradle_file)
            @version = str.match(/versionName\s+"(?<version>.+)"/)[:version]
            
            break if @version
          end
        end

        def create_and_push_tag!
          unless system("git tag | grep #{version} > /dev/null")
            system "git add -A && git commit -m \"Releases #{version}.\""
            system "git tag #{version}"
            system "git push && git push --tags"
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gonative-cli-1.0.4 lib/gonative/commands/android/publish.rb