Sha256: 1854b7a2c4d506d564b01f9cb03c73c002229a504c0e0b4ce5b1a8cb0a909f5b
Contents?: true
Size: 567 Bytes
Versions: 1
Compression:
Stored size: 567 Bytes
Contents
#!/usr/bin/env ruby require 'bundler/setup' require 'awesome_print' require 'deliv/deploy' puts "Releasing deliv-deploy #{Deliv::Deploy::VERSION}.".white system('git pull origin master') system('git add --all') system(%(git commit --all --message='Releasing #{Deliv::Deploy::VERSION}')) system('git push origin master') system('gem build deliv-deploy.gemspec') system("gem install deliv-deploy-#{Deliv::Deploy::VERSION}.gem") system("gem push deliv-deploy-#{Deliv::Deploy::VERSION}.gem") puts "Done. deliv-deploy #{Deliv::Deploy::VERSION} has been released.".green
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
deliv-deploy-0.0.1 | bin/release |