Sha256: 5f08291986c18c6bed12648bb1f89353fca3954f6c1683e6a6897320f7b87f0d

Contents?: true

Size: 415 Bytes

Versions: 6

Compression:

Stored size: 415 Bytes

Contents

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

  defined_in Pathname(__FILE__)

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

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

  content do
    persona "p strong:first-child"
    behavior "p strong:second-child"
    goal "p strong:third-child"
  end

  actions do
    def sync_with_github
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
brief-1.12.4 apps/blueprint/models/feature.rb
brief-1.12.3 apps/blueprint/models/feature.rb
brief-1.12.2 apps/blueprint/models/feature.rb
brief-1.12.1 apps/blueprint/models/feature.rb
brief-1.12.0 apps/blueprint/models/feature.rb
brief-1.11.10 apps/blueprint/models/feature.rb