Sha256: 4c35a63f1032e25ef9c407bc4934c0e1ed2b41d8fddab09da36c26c4fdf1feb4

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

require "docks_theme_base"

Dir[File.expand_path("../helpers/*.rb", __FILE__)].each do |helper|
  require helper
end

module Docks
  module Themes
    class API < Base
      def initialize
        project_root = Pathname.new(File.expand_path("../../../", __FILE__))
        @assets = Assets.new(root: project_root + "assets", source_root: project_root + "source")
        @helpers = [Helpers]
      end

      def configure(config)
        config.paginate = "pattern"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
docks_theme_api-1.0.3 lib/docks_theme_api/theme.rb