Sha256: 14b8d21397ca56c7e5c31569550080d9fa8ccba358c2b7f2d5a4f0c193da361e

Contents?: true

Size: 550 Bytes

Versions: 3

Compression:

Stored size: 550 Bytes

Contents

class Brief::Apps::Blueprint::Feature
  include Brief::Model

  defined_in Pathname(__FILE__)

  meta do
    title
    project
    owner
    status :in => %w(draft published)
    persona
    goal
    behavior
    epic_title
    remote_id
  end

  template :file => "feature.md.erb"

  content do
    persona "p strong:first-child"
    behavior "p strong:second-child"
    goal "p strong:third-child"
    settings "pre[lang='yaml'] code:first-of-type", :serialize => :yaml, :hide => true
  end

  actions do
    def sync_with_github
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
brief-1.12.7 apps/blueprint/models/feature.rb
brief-1.12.6 apps/blueprint/models/feature.rb
brief-1.12.5 apps/blueprint/models/feature.rb