Sha256: 4ca6ffb1b70c4ff46bc3ecaa103494514e1bdf153e47bdeae1b20a79f74b8456
Contents?: true
Size: 380 Bytes
Versions: 152
Compression:
Stored size: 380 Bytes
Contents
require 'travis/cli' require 'pp' module Travis module CLI class Raw < ApiCommand description "makes an (authenticated) API call and prints out the result" skip :authenticate on('--[no-]json', 'display as json') def run(resource) reply = session.get_raw(resource) json? ? say(reply.to_json) : pp(reply) end end end end
Version data entries
152 entries across 152 versions & 1 rubygems