brief 1.12.7 → 1.12.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/apps/blueprint/models/concept.rb +1 -0
- data/apps/blueprint/models/diagram.rb +2 -0
- data/apps/blueprint/models/epic.rb +1 -0
- data/apps/blueprint/models/feature.rb +1 -0
- data/apps/blueprint/models/milestone.rb +1 -0
- data/apps/blueprint/models/mockup.rb +1 -0
- data/apps/blueprint/models/outline.rb +2 -6
- data/apps/blueprint/models/persona.rb +2 -1
- data/apps/blueprint/models/project.rb +16 -0
- data/apps/blueprint/models/release.rb +4 -2
- data/apps/blueprint/models/roadmap.rb +1 -0
- data/apps/blueprint/models/sitemap.rb +1 -0
- data/apps/blueprint/models/wireframe.rb +1 -1
- data/lib/brief/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de2ce387bf6609e710984d9a699105bd1e40918b
|
4
|
+
data.tar.gz: 9a1342f1999a64141a8e95241b946a5bce845f0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eaa30f46a16638e27aa70b5ad85125ddd28ff3176e5cf5c43c00a2b9a8478aa6e2b8761a8cc167d84e81bb0ecd96f070deb67b1d968ebc27b0a2b3ce5ec0f9d1
|
7
|
+
data.tar.gz: 3294b98266fff5a9743e97f466270fa27f96e6ca3300ee874cade9082cbfe020c1bbb8c42f8130f21dbdbe9e7f70623980e199fd6c825ef8ad9ac1799d2d4fbe
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
brief (1.12.
|
4
|
+
brief (1.12.8)
|
5
5
|
activesupport (> 3.2)
|
6
6
|
commander (~> 4.3)
|
7
7
|
em-websocket (~> 0.5)
|
@@ -19,7 +19,7 @@ PATH
|
|
19
19
|
GEM
|
20
20
|
remote: https://rubygems.org/
|
21
21
|
specs:
|
22
|
-
activesupport (4.2.
|
22
|
+
activesupport (4.2.2)
|
23
23
|
i18n (~> 0.7)
|
24
24
|
json (~> 1.7, >= 1.7.7)
|
25
25
|
minitest (~> 5.1)
|
@@ -5,15 +5,11 @@ class Brief::Apps::Blueprint::Outline
|
|
5
5
|
|
6
6
|
meta do
|
7
7
|
type
|
8
|
+
title
|
9
|
+
tags Array
|
8
10
|
end
|
9
11
|
|
10
12
|
content do
|
11
|
-
h1 "h1"
|
12
|
-
h2 "h2"
|
13
|
-
h3 "h3"
|
14
|
-
h4 "h4"
|
15
|
-
h5 "h5"
|
16
|
-
h6 "h6"
|
17
13
|
headings "h1,h2,h3,h4,h5,h6"
|
18
14
|
settings "code.yaml:first-of-type", :serialize => :yaml, :hide => true
|
19
15
|
|
@@ -6,6 +6,7 @@ class Brief::Apps::Blueprint::Persona
|
|
6
6
|
meta do
|
7
7
|
title
|
8
8
|
icon
|
9
|
+
tags Array
|
9
10
|
end
|
10
11
|
|
11
12
|
content do
|
@@ -13,7 +14,7 @@ class Brief::Apps::Blueprint::Persona
|
|
13
14
|
summary "p:first-of-type"
|
14
15
|
|
15
16
|
define_section("Requirements") do
|
16
|
-
each("li").has(:content => "
|
17
|
+
each("li").has(:content => "li")
|
17
18
|
end
|
18
19
|
end
|
19
20
|
end
|
@@ -15,4 +15,20 @@ class Brief::Apps::Blueprint::Project
|
|
15
15
|
tagline "h2:first-of-type", :hide => true
|
16
16
|
yaml_data "code.yaml:first-of-type", :serialize => :yaml, :hide => true
|
17
17
|
end
|
18
|
+
|
19
|
+
def epics
|
20
|
+
briefcase.epics(project: title)
|
21
|
+
end
|
22
|
+
|
23
|
+
def sitemaps
|
24
|
+
briefcase.sitemaps(project: title)
|
25
|
+
end
|
26
|
+
|
27
|
+
def features
|
28
|
+
briefcase.features(project: title)
|
29
|
+
end
|
30
|
+
|
31
|
+
def releases
|
32
|
+
briefcase.releases(project: title)
|
33
|
+
end
|
18
34
|
end
|
@@ -6,14 +6,16 @@ class Brief::Apps::Blueprint::Release
|
|
6
6
|
meta do
|
7
7
|
title
|
8
8
|
status
|
9
|
-
projects
|
10
9
|
personas
|
10
|
+
project
|
11
11
|
tags Array
|
12
|
+
projects Array
|
12
13
|
end
|
13
14
|
|
14
15
|
content do
|
15
16
|
paragraph "p:first-of-type"
|
16
|
-
|
17
|
+
paragraphs "p"
|
18
|
+
|
17
19
|
title "h1:first-of-type", :hide => true
|
18
20
|
tagline "h2:first-of-type", :hide => true
|
19
21
|
yaml_data "code.yaml:first-of-type", :serialize => :yaml, :hide => true
|
data/lib/brief/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: brief
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.12.
|
4
|
+
version: 1.12.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonathan Soeder
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hashie
|