lib/pact/provider/pact_source.rb in pact-1.10.0 vs lib/pact/provider/pact_source.rb in pact-1.11.0
- old
+ new
@@ -1,8 +1,8 @@
require 'pact/consumer_contract/pact_file'
-module PactBroker
+module Pact
module Provider
class PactSource
attr_reader :uri
@@ -12,8 +12,11 @@
def pact_json
@pact_json ||= Pact::PactFile.read(uri.uri, uri.options)
end
+ def pact_hash
+ @pact_hash ||= JSON.load(pact_json, nil, { max_nesting: 50 })
+ end
end
end
end