Sha256: b2e109aedc1a260ae40cd9789d316beab9f6fa0e7ae2f71cf35edbb4c0c80d85
Contents?: true
Size: 553 Bytes
Versions: 13
Compression:
Stored size: 553 Bytes
Contents
require "bundler/gem_tasks" # put the current packaged version of the gem in dropbox desc "copies the current packaged .gem file to dropbox and prints the URL" task :dropbox do path=File.dirname(__FILE__)+"/pkg/scout_realtime-#{Scout::Realtime::VERSION}.gem" if !File.exists?(path) puts "Doesn't exist: #{path}. Try rake build" exit(0) end FileUtils.copy(path, "/Users/andre/Dropbox/Public/") puts "wget https://dl.dropboxusercontent.com/u/18554/scout_realtime-#{Scout::Realtime::VERSION}.gem; sudo gem install scout_realtime" end
Version data entries
13 entries across 13 versions & 1 rubygems