Sha256: 09a88124611b6d9e70c2059d022a29835bb0b2b5294847dfa70fb7e2ac98e44a

Contents?: true

Size: 671 Bytes

Versions: 2

Compression:

Stored size: 671 Bytes

Contents

Zen::Package.add do |p|
  # The name of the package
  p.name        = '' 

  # The person/company that made the package
  p.author      = ''

  # A URL to a page about the package
  p.url         = ''

  # Describe what your theme or extension does.
  p.about       = ''

  ## 
  # An identifier is a unique string for your package in the following format: 
  # 
  #     com.VENDOR.NAME
  #
  p.identifier  = 'com.vendor.module'

  ##
  # Path to the directory containing the controllers, models, etc.
  #
  p.directory   = __DIR__('package')
  
  # Note that themes can not have menu items (they'll be ignored).
  p.menu = [{
    :title => "",
    :url   => ""
  }]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zen-0.2.4.1 proto/package/lib/package.rb
zen-0.2.4 proto/package/lib/package.rb