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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5a613da7d81282c4511156e391573a3213878211
4
- data.tar.gz: 79883782922317a022432806afe370b764c8acf7
3
+ metadata.gz: de2ce387bf6609e710984d9a699105bd1e40918b
4
+ data.tar.gz: 9a1342f1999a64141a8e95241b946a5bce845f0c
5
5
  SHA512:
6
- metadata.gz: 6325bfd4508438ef7f4bc0cc7b55d91634b1361902d31b53091b3fbfa533c770f7cde77919c970f76201565fc40970ac28abb15c4e427f925a3ce07631d7791b
7
- data.tar.gz: 9c59972e16f846cb2cc1b63ea7819b941ccb032ca38c34de1d3e008913ad9068822cf3ec36eb87b9bdf02cd34b31f1125cc1c56fdab1458ece44e8e79de4d17b
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.7)
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.1)
22
+ activesupport (4.2.2)
23
23
  i18n (~> 0.7)
24
24
  json (~> 1.7, >= 1.7.7)
25
25
  minitest (~> 5.1)
@@ -7,6 +7,7 @@ class Brief::Apps::Blueprint::Concept
7
7
  title
8
8
  projects
9
9
  personas
10
+ tags Array
10
11
  end
11
12
 
12
13
  content do
@@ -6,9 +6,11 @@ class Brief::Apps::Blueprint::Diagram
6
6
  meta do
7
7
  title
8
8
  subheading
9
+ project
9
10
  projects
10
11
  personas
11
12
  status String, :in => "draft published"
13
+ tags Array
12
14
  end
13
15
 
14
16
  content do
@@ -9,6 +9,7 @@ class Brief::Apps::Blueprint::Epic
9
9
  project
10
10
  owner
11
11
  status String, :in => %w(draft published)
12
+ tags Array
12
13
  end
13
14
 
14
15
  example <<-EOF
@@ -13,6 +13,7 @@ class Brief::Apps::Blueprint::Feature
13
13
  behavior
14
14
  epic_title
15
15
  remote_id
16
+ tags Array
16
17
  end
17
18
 
18
19
  template :file => "feature.md.erb"
@@ -9,6 +9,7 @@ class Brief::Apps::Blueprint::Milestone
9
9
  projects
10
10
  personas
11
11
  due_date
12
+ tags Array
12
13
  end
13
14
 
14
15
  content do
@@ -11,5 +11,6 @@ class Brief::Apps::Blueprint::Mockup
11
11
  category
12
12
  tags
13
13
  annotations Hash
14
+ tags Array
14
15
  end
15
16
  end
@@ -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 => "p")
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
- paragraps "p"
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
@@ -6,6 +6,7 @@ class Brief::Apps::Blueprint::Roadmap
6
6
  meta do
7
7
  title
8
8
  subheading
9
+ tags Array
9
10
  end
10
11
 
11
12
  content do
@@ -9,6 +9,7 @@ class Brief::Apps::Blueprint::Sitemap
9
9
  revision
10
10
  project
11
11
  personas
12
+ tags Array
12
13
  end
13
14
 
14
15
  content do
@@ -10,7 +10,7 @@ class Brief::Apps::Blueprint::Wireframe
10
10
  project
11
11
  features
12
12
  category
13
- tags
13
+ tags Array
14
14
  annotations Hash
15
15
  end
16
16
 
data/lib/brief/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Brief
2
- VERSION = '1.12.7'
2
+ VERSION = '1.12.8'
3
3
  end
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.7
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-16 00:00:00.000000000 Z
11
+ date: 2015-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hashie