talk 2.3.8 → 2.3.9

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: 59c0dc88aa697bea2a670754aea278c75a038bb7
4
- data.tar.gz: c3ae23d06ef4b82391f14d0f9bbc165ca269c8ea
3
+ metadata.gz: 743d84c915509673b2f3d7576e97ece5623fa2a9
4
+ data.tar.gz: 42ee0ae3bebfecfe41366ef0c74504e51b2c01f1
5
5
  SHA512:
6
- metadata.gz: efdaf71aeb85743d40399d5650ff112765c14569f88c9ac7bb70feb23e85f42faff39e1706f27404fbdd430def2c4232ff295ad7797374d683d6281a248e7c27
7
- data.tar.gz: 7cb6e82cc2fd4687b92a66a9594c5dcf9afa17c6f258b7a3b5ac18e6ce8d4708d438aed5d0efe370a572ba0097ab68df2322fbd97a26f7a396b54d1ea87fdef7
6
+ metadata.gz: b0691d6b85118a7f75464412e048080c6899546ad16a83a51d7d605d8870350d6847a550ed2b4c99b2e072ca2aa493d79bb8a3a278d840576cdb7c9a7f615932
7
+ data.tar.gz: a0c58c249fbf2b2e6616cd4ae64740e830d3d1c1e1d6001163dcaaacc5ff57dbd01fade79dc78fda9c01bc90fbea46f8accf7a489c481889d6e587b9956e3f9b
@@ -4,3 +4,4 @@ tag :protocol, :multi => true
4
4
  tag :target, :multi => true
5
5
  tag :glossary, :multi => true
6
6
  tag :method, :multi => true
7
+ tag :extra, :multi => true, :unique => :name
@@ -8,4 +8,5 @@ tag :version, :default => "0", :class => :string
8
8
  tag :field, :multi => true, :unique => :name
9
9
  tag :implement, :class => :boolean, :default => true
10
10
  tag :inherits, :class => :string
11
+ tag :extra, :multi => true, :unique => :name
11
12
  tag_end
@@ -2,4 +2,5 @@ property :name
2
2
  property :value, :transform => lambda { |c,v| eval(v.to_s).to_f }, :length => [0,nil]
3
3
 
4
4
  tag_description :required => false, :bridge => false
5
+ tag :extra, :multi => true, :unique => :name
5
6
  tag_end
@@ -3,6 +3,7 @@ property :name
3
3
 
4
4
  tag_description
5
5
  tag :constant, :multi => true, :unique => :name
6
+ tag :extra, :multi => true, :unique => :name
6
7
  tag_end
7
8
 
8
9
  postprocess lambda { |ctx|
@@ -0,0 +1,2 @@
1
+ property :name
2
+ property :value, :length => [1,nil]
@@ -29,6 +29,7 @@ tag :version, :class => :string
29
29
  tag :caveat, :class => :string, :multi => true
30
30
  tag :deprecated, :class => :string
31
31
  tag :see, :class => :reference, :multi => true
32
+ tag :extra, :multi => true, :unique => :name
32
33
  tag_end
33
34
 
34
35
  postprocess(lambda do |ctx|
@@ -4,4 +4,5 @@ property :name
4
4
 
5
5
  tag_description
6
6
  tag :term, :multi => true, :unique => :name
7
+ tag :extra, :multi => true, :unique => :name
7
8
  tag_end
@@ -11,4 +11,5 @@ tag :requirements, :class => :string
11
11
  tag :followup, :class => :string
12
12
  tag :origin, :class => :string, :allowed => [ "client", "server", "both" ]
13
13
  tag :needs, :class => :string, :allowed => [ "nothing", "connection", "both" ]
14
+ tag :extra, :multi => true, :unique => :name
14
15
  tag_end
@@ -6,4 +6,5 @@ tag_description
6
6
  tag :scheme, :multi => true
7
7
  tag :method, :required => true, :multi => true
8
8
  tag :source, :class => :string
9
+ tag :extra, :multi => true, :unique => :name
9
10
  tag_end
@@ -8,4 +8,5 @@ tag :meta, :multi => true, :unique => :name
8
8
  tag :rootclass, :class => :string
9
9
  tag :template, :class => :string
10
10
  tag :prune, :class => :boolean
11
+ tag :extra, :multi => true, :unique => :name
11
12
  tag_end
@@ -2,6 +2,7 @@ property :name
2
2
  property :value, :length => [0,nil]
3
3
 
4
4
  tag_description :bridge => false, :required => false
5
+ tag :extra, :multi => true, :unique => :name
5
6
  tag_end
6
7
 
7
8
  postprocess lambda { |ctx|
@@ -1,3 +1,3 @@
1
1
  module Talk
2
- VERSION = "2.3.8"
2
+ VERSION = "2.3.9"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.8
4
+ version: 2.3.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Acres
@@ -88,6 +88,7 @@ files:
88
88
  - lib/contexts/class.rb
89
89
  - lib/contexts/constant.rb
90
90
  - lib/contexts/enumeration.rb
91
+ - lib/contexts/extra.rb
91
92
  - lib/contexts/field.rb
92
93
  - lib/contexts/glossary.rb
93
94
  - lib/contexts/inherits.rb