diff --git a/Rakefile b/Rakefile index 9d10dba..f72e228 100644 --- a/Rakefile +++ b/Rakefile @@ -9,6 +9,7 @@ end desc "Release the gem into the wild" task :release => :build do system "git tag v#{SVT::Recorder::VERSION}" + system 'git push origin' system 'git push origin --tags' system "gem push svt-recorder-#{SVT::Recorder::VERSION}.gem" end diff --git a/bin/svt-recorder b/bin/svt-recorder index 82883b4..1ed4a94 100755 --- a/bin/svt-recorder +++ b/bin/svt-recorder @@ -19,6 +19,7 @@ if ARGV.empty? or ARGV[0].match(/\A(-h)|((--)?help)\Z/i) puts "\tAll parts of the video at SVT Play URL will be recorded." puts "\tIf you've supplied an output name that will be used, otherwise you'll be asked." puts '' + puts "Library version: #{SVT::Recorder::VERSION}" exit 0 elsif not ARGV[0].match(/(svtplay|svt\.se)/) puts "No valid SVT Play or Play Rapport URL supplied"