sshaw/itunes_store_transporter

View on GitHub
lib/itunes/store/transporter/command/status_all.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "itunes/store/transporter/command/status"

module ITunes
  module Store
    module Transporter
      module Command            # :nodoc:

        ##
        # Retrieve the full status history of previously uploaded packages
        #
        class StatusAll < Status
          protected

          def mode
            "statusAll"
          end
        end
      end
    end
  end
end