Sha256: 457ffe4b5990921e08b3e940cef94a15ebb469893eddcc35d1540ee7c1afff70

Contents?: true

Size: 297 Bytes

Versions: 1

Compression:

Stored size: 297 Bytes

Contents

desc "Create/Update the APP VERSION and create the git tag. USAGE: rake autotag TAG=0.0.0"
task :autotag do
  if !defined?(Rails)
    puts "Rails app not found!"
  elsif ENV["TAG"].blank?
    puts "TAG not found! USAGE: rake autotag TAG=0.0.0"
  else
    AutoTagVersion.tag!(ENV["TAG"])
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
auto_tag_version-1.0.0 lib/tasks/autotag.rake