Sha256: bd11de0cad5f057b9f4192d2467479e7011346b63ec88b6473db919345c0cfc9

Contents?: true

Size: 245 Bytes

Versions: 6

Compression:

Stored size: 245 Bytes

Contents

require 'fileutils'

module Tasks
   def tag_gem_version(version)
      puts "Tagging #{version}..."
      system "git tag -a #{version} -m 'Tagging #{version}'"
      puts "Pushing #{version} to git..."
      system "git push --tags"
   end
end

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
acpc_poker_player_proxy-0.0.2 tasks.rb
acpc_poker_match_state-0.0.3 tasks.rb
acpc_poker_match_state-0.0.2 tasks.rb
acpc_poker_player_proxy-0.0.1 tasks.rb
acpc_poker_match_state-0.0.1 tasks.rb
acpc_poker_types-0.0.2 tasks.rb