Sha256: 6f055507ec87ec9825446640a68805cbf17f33e60122745ef52432ade4c19ef4

Contents?: true

Size: 328 Bytes

Versions: 6

Compression:

Stored size: 328 Bytes

Contents

require "active_support/lazy_load_hooks"

module Lono
  module Layering
    def layers
      pre_layers + main_layers + post_layers
    end

    def main_layers
      super
    end

    def pre_layers
      []
    end

    def post_layers
      []
    end
  end
end

ActiveSupport.run_load_hooks(:lono_layering, Lono::Layering)

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
lono-8.0.0.pre.rc6 lib/lono/layering.rb
lono-8.0.0.pre.rc5 lib/lono/layering.rb
lono-8.0.0.pre.rc4 lib/lono/layering.rb
lono-8.0.0.pre.rc3 lib/lono/layering.rb
lono-8.0.0.pre.rc2 lib/lono/layering.rb
lono-8.0.0.pre.rc1 lib/lono/layering.rb