Sha256: 747250555173f24626a5b564b8ebcfa380b82b0f4a299f661c1dbc2f4e9969bc

Contents?: true

Size: 258 Bytes

Versions: 14

Compression:

Stored size: 258 Bytes

Contents

require 'forwardable'

module Restfully
  class Sandbox
    extend Forwardable

    def_delegators :@session, :head, :get, :post, :put, :delete, :root, :logger

    attr_reader :session

    def initialize(session)
      @session = session
    end

  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
restfully-1.3.0 lib/restfully/sandbox.rb
restfully-1.2.0 lib/restfully/sandbox.rb
restfully-1.1.1 lib/restfully/sandbox.rb
restfully-1.1.0 lib/restfully/sandbox.rb
restfully-1.0.8 lib/restfully/sandbox.rb
restfully-1.0.7 lib/restfully/sandbox.rb
restfully-1.0.6 lib/restfully/sandbox.rb
restfully-1.0.5 lib/restfully/sandbox.rb
restfully-1.0.4 lib/restfully/sandbox.rb
restfully-1.0.3 lib/restfully/sandbox.rb
restfully-1.0.2 lib/restfully/sandbox.rb
restfully-1.0.1 lib/restfully/sandbox.rb
restfully-1.0.0 lib/restfully/sandbox.rb
restfully-1.0.0.rc2 lib/restfully/sandbox.rb