Sha256: 1a62a77bebf4d80fd8036208e5ac62fb057be31a01ea3e3d5e3ee1453489a40a

Contents?: true

Size: 230 Bytes

Versions: 5

Compression:

Stored size: 230 Bytes

Contents

module Restfulie
  module Client
    module Feature
      class FakeResponse
        attr_reader :code, :body
        def initialize(code, body)
          @code = code
          @body = body
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
restfulie-nosqlite-1.0.4 lib/restfulie/client/feature/fake_response.rb
restfulie-1.1.1 lib/restfulie/client/feature/fake_response.rb
restfulie-1.1.0 lib/restfulie/client/feature/fake_response.rb
restfulie-nosqlite-1.0.3 lib/restfulie/client/feature/fake_response.rb
restfulie-1.0.3 lib/restfulie/client/feature/fake_response.rb