flant/superhosting

View on GitHub
lib/superhosting/config_executor/site.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Superhosting
  module ConfigExecutor
    class Site < Container
      attr_accessor :site

      def initialize(site:, **kwargs)
        self.site = site
        super(**kwargs)
      end

      protected

      def base_mapper
        site
      end
    end
  end
end