jqr/heroku_san

View on GitHub
lib/heroku_san/deploy/noop.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'heroku_san/deploy/base'

module HerokuSan
  module Deploy
    class Noop < Base
      def deploy
        # do nothing
      end        
    end
  end
end