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

Version Path
travis-1.5.6.travis.312.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.307.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.306.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.304.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.303.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.301.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.299.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.297.4 lib/travis/cli/raw.rb
travis-1.5.6.travis.296.4 lib/travis/cli/raw.rb
travis-1.5.5 lib/travis/cli/raw.rb
travis-1.5.4 lib/travis/cli/raw.rb
travis-1.5.3 lib/travis/cli/raw.rb