Sha256: 0c9bc8574b7493fe811cf51493be49e532d110841e8e412746169c4ea4ec59a3

Contents?: true

Size: 1.16 KB

Versions: 11

Compression:

Stored size: 1.16 KB

Contents

# -*- encoding: utf-8 -*-
#
# Author:: Fletcher Nichol (<fnichol@nichol.ca>)
#
# Copyright (C) 2013, Fletcher Nichol
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'delegate'

module Kitchen

  # A delegator for Instance which adds Celluloid actor support, boom.
  #
  # @author Fletcher Nichol <fnichol@nichol.ca>
  class InstanceActor < SimpleDelegator

    include Celluloid

    # @!method actor_name()
    #   Returns the name of the Celluloid actor.
    #   @return [String] the actor name
    alias_method :actor_name, :name

    # Returns the name of the underlying instance.
    #
    # @return [String] the instance name
    def name
      __getobj__.name
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
test-kitchen-1.0.0.beta.3 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.beta.2 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.beta.1 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.7 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.6 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.5 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.4 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.3 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.2 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.1 lib/kitchen/instance_actor.rb
test-kitchen-1.0.0.alpha.0 lib/kitchen/instance_actor.rb