Sha256: 16b6e3b0b3ef52cb5caad2c8196d30cdda2834e696f560a7ecb8131bc7069029
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 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 return @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 @version 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gonative-cli-1.2.1 | lib/gonative/commands/android/publish.rb |
gonative-cli-1.2.0 | lib/gonative/commands/android/publish.rb |