module Postman

Constants

FILTER_KEYS

Public Class Methods

parse(json) click to toggle source
# File lib/postman-ruby.rb, line 242
def self.parse(json)
  Collection.new(JSON.parse(json))
end
parse_file(name) click to toggle source
# File lib/postman-ruby.rb, line 246
def self.parse_file(name)
  Postman.parse(File.read(name))
end