Sha256: a868028c717b60aa4298d27f5753102a7382c30a5882ea64dc6dc39fb48a2475
Contents?: true
Size: 858 Bytes
Versions: 2
Compression:
Stored size: 858 Bytes
Contents
class Brief::Apps::Blueprint::Project include Brief::Model defined_in Pathname(__FILE__) meta do title category tags Array end content do paragraph "p:first-of-type" title "h1:first-of-type", :hide => true tagline "h2:first-of-type", :hide => true yaml_data "code.yaml:first-of-type", :serialize => :yaml, :hide => true end actions do def publish BlueprintProjectPublisher.publish(self, via: briefcase.settings.try(:tracking_system)) end def sync BlueprintProjectPublisher.sync(self, via: briefcase.settings.try(:tracking_system)) end end def epics briefcase.epics(project: title) end def sitemaps briefcase.sitemaps(project: title) end def features briefcase.features(project: title) end def releases briefcase.releases(project: title) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
brief-1.17.2 | apps/blueprint/models/project.rb |
brief-1.17.1 | apps/blueprint/models/project.rb |