Sha256: ca41ea88b8b9d0a0fcaf290200f0b36b7c4164ae2cf5143f0e00332eaa91a2e2
Contents?: true
Size: 479 Bytes
Versions: 15
Compression:
Stored size: 479 Bytes
Contents
require 'rest-client' require 'trackman' namespace :trackman do desc "Syncs your assets with the server, this is what gets executed when you deploy to heroku." task :sync => :environment do Trackman::Assets::Asset.sync end desc "Sets up the heroku configs required by Trackman" task :setup, :app do |t, args| heroku_version = Gem.loaded_specs["heroku"].version.to_s Trackman::Utility::Configuration.new(heroku_version, :app => args[:app]).setup end end
Version data entries
15 entries across 15 versions & 1 rubygems