Sha256: 5f0b3e4aa2c449af6be8e546b59fce2376a7196c553577ed6668eb7d3d0a2e3f

Contents?: true

Size: 400 Bytes

Versions: 4

Compression:

Stored size: 400 Bytes

Contents

module Decorum
  module Spec
    module Decorations
      class ClassSpecifiedDecoratorOne < Decorum::Decorator
        attr_accessor :passed_option
        
        def one
          "one"
        end
      end

      class ClassSpecifiedDecoratorTwo < ClassSpecifiedDecoratorOne
        attr_accessor :passed_option
        
        def two 
          "two"
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
decorum-0.5.1 spec/support/decorations/class_specified_decorator_one.rb
decorum-0.5.0 spec/support/decorations/class_specified_decorator_one.rb
decorum-0.4.1 spec/support/decorations/class_specified_decorator_one.rb
decorum-0.4.0 spec/support/decorations/class_specified_decorator_one.rb