Sha256: 276c3c315323380ced26a80ae49ed46aaf45b0a0c8221dfe3831c33428024ea0

Contents?: true

Size: 579 Bytes

Versions: 3

Compression:

Stored size: 579 Bytes

Contents

# encoding: UTF-8
#
# Copyright (c) 2010-2015 GoodData Corporation. All rights reserved.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.

require_relative 'object'

module GoodData
  module Rest
    # Base class for REST resources implementing (at least 'somehow') full CRUD
    #
    # IS responsible for wrapping full CRUD interface
    class Resource < Object
      # Default constructor passing all arguments to parent
      def initialize(opts = {})
        super
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gooddata-0.6.24 lib/gooddata/rest/resource.rb
gooddata-0.6.23 lib/gooddata/rest/resource.rb
gooddata-0.6.22 lib/gooddata/rest/resource.rb