Sha256: efaeadcdce2bdf4672b8332067a2571207cd3659a2f48c73fe1c28a195cc19c9

Contents?: true

Size: 1.2 KB

Versions: 14

Compression:

Stored size: 1.2 KB

Contents

module Contracts
  module MethodDecorators
    def self.extended(klass)
      Engine.apply(klass)
    end

    def inherited(subclass)
      Engine.fetch_from(subclass).set_eigenclass_owner
      super
    end

    def method_added(name)
      MethodHandler.new(name, false, self).handle
      super
    end

    def singleton_method_added(name)
      MethodHandler.new(name, true, self).handle
      super
    end
  end

  class Decorator
    # an attr_accessor for a class variable:
    class << self; attr_accessor :decorators; end

    def self.inherited(klass)
      name = klass.name.gsub(/^./) { |m| m.downcase }

      return if name =~ /^[^A-Za-z_]/ || name =~ /[^0-9A-Za-z_]/

      # the file and line parameters set the text for error messages
      # make a new method that is the name of your decorator.
      # that method accepts random args and a block.
      # inside, `decorate` is called with those params.
      MethodDecorators.module_eval <<-ruby_eval, __FILE__, __LINE__ + 1
        def #{klass}(*args, &blk)
          ::Contracts::Engine.fetch_from(self).decorate(#{klass}, *args, &blk)
        end
      ruby_eval
    end

    def initialize(klass, method)
      @method = method
    end
  end
end

Version data entries

14 entries across 14 versions & 5 rubygems

Version Path
entitlements-app-1.1.0 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-app-1.0.0 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-app-0.3.4 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-app-0.3.1 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-app-0.3.0 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-0.2.1 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-app-0.2.1 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-0.2.0 lib/contracts-ruby2/lib/contracts/decorators.rb
entitlements-app-0.2.0 lib/contracts-ruby2/lib/contracts/decorators.rb
contracts-0.16.1 lib/contracts/decorators.rb
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/contracts-0.16.0/lib/contracts/decorators.rb
contracts-0.16.0 lib/contracts/decorators.rb
contracts-0.15.0 lib/contracts/decorators.rb
contracts-lite-0.14.0 lib/contracts/decorators.rb