SpontaneousCMS/spontaneous

View on GitHub
lib/spontaneous/collections/style_set.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: UTF-8

module Spontaneous::Collections
  class StyleSet < PrototypeSet

    attr_reader :owner

    def initialize(owner)
      super(owner.supertype, :style_prototypes)
      @owner = owner
    end
  end # StyleSet
end # Spontaneous::Collections