Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
module ServiceMonster
  class Client
    module Orders

      def orders(options = {})
        response = get("orders", options)
      end

      def order(id, options = {})
        response = get("orders/#{id}", options)
      end

    end
  end
end