whimsy-asf 0.0.66 → 0.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/asf.version +1 -1
- data/lib/whimsy/asf/committee.rb +6 -2
- data/lib/whimsy/asf/site.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57dc1262bf53be65fda95ab15262c98616ca8c4b
|
4
|
+
data.tar.gz: 7aea455fcbc0f3645a6b6eed2743e041b7003666
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e822f49de94b3ef2be866f77e9f029061f1bcf100fa9ad1a2810beb5857f8e1ac733734a081752b7e10b438dd50ffb783664d76af7c60879bcacf60f9a7f1a3
|
7
|
+
data.tar.gz: e2d534c3e13151d6f1eae25f4432103a0282f9595cd0e6e20490e4da9f8eeaea2c2214c0834937a398ea4d8c63b3902c304f850884bbb2481e5f6d528fc1bada
|
data/asf.version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.67
|
data/lib/whimsy/asf/committee.rb
CHANGED
@@ -57,12 +57,16 @@ module ASF
|
|
57
57
|
|
58
58
|
info = File.read(file).split(/^\* /)
|
59
59
|
head, report = info.shift.split(/^\d\./)[1..2]
|
60
|
-
head.
|
60
|
+
head.gsub! /^\s+NAME\s+CHAIR\s*$/,'' # otherwise could match an entry with no e-mail
|
61
|
+
|
62
|
+
# extract the committee chairs (e-mail address is required here)
|
63
|
+
head.scan(/^[ \t]+(\w.*?)[ \t][ \t]+(.*)[ \t]+<(.*?)@apache\.org>/).
|
61
64
|
each do |committee, name, id|
|
62
65
|
find(committee).chairs << {name: name, id: id}
|
63
66
|
end
|
67
|
+
# Extract the non-PMC committees (e-mail address may be absent)
|
64
68
|
@nonpmcs = head.sub(/.*?also has/m,'').
|
65
|
-
scan(
|
69
|
+
scan(/^[ \t]+(\w.*?)(?:[ \t][ \t]|[ \t]?$)/).flatten.uniq.
|
66
70
|
map {|name| find(name)}
|
67
71
|
|
68
72
|
info.each do |roster|
|
data/lib/whimsy/asf/site.rb
CHANGED
@@ -11,7 +11,7 @@ module ASF
|
|
11
11
|
text: "define how Apache projects should refer to trademarks and display their brand"
|
12
12
|
},
|
13
13
|
"comdev" => {
|
14
|
-
link: "
|
14
|
+
link: "http://community.apache.org/",
|
15
15
|
text: "Resources to help people become involved with Apache projects"
|
16
16
|
},
|
17
17
|
"executive assistant" => {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: whimsy-asf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.67
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Ruby
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-10-
|
11
|
+
date: 2015-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -104,6 +104,8 @@ extra_rdoc_files: []
|
|
104
104
|
files:
|
105
105
|
- asf.gemspec
|
106
106
|
- asf.version
|
107
|
+
- lib/whimsy/asf.rb
|
108
|
+
- lib/whimsy/asf/agenda.rb
|
107
109
|
- lib/whimsy/asf/agenda/attachments.rb
|
108
110
|
- lib/whimsy/asf/agenda/back.rb
|
109
111
|
- lib/whimsy/asf/agenda/committee.rb
|
@@ -111,7 +113,6 @@ files:
|
|
111
113
|
- lib/whimsy/asf/agenda/front.rb
|
112
114
|
- lib/whimsy/asf/agenda/minutes.rb
|
113
115
|
- lib/whimsy/asf/agenda/special.rb
|
114
|
-
- lib/whimsy/asf/agenda.rb
|
115
116
|
- lib/whimsy/asf/auth.rb
|
116
117
|
- lib/whimsy/asf/committee.rb
|
117
118
|
- lib/whimsy/asf/config.rb
|
@@ -125,7 +126,6 @@ files:
|
|
125
126
|
- lib/whimsy/asf/site.rb
|
126
127
|
- lib/whimsy/asf/svn.rb
|
127
128
|
- lib/whimsy/asf/watch.rb
|
128
|
-
- lib/whimsy/asf.rb
|
129
129
|
homepage: https://whimsy.apache.org/
|
130
130
|
licenses:
|
131
131
|
- Apache License, Version 2.0
|
@@ -146,7 +146,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
148
|
rubyforge_project:
|
149
|
-
rubygems_version: 2.
|
149
|
+
rubygems_version: 2.4.5.1
|
150
150
|
signing_key:
|
151
151
|
specification_version: 4
|
152
152
|
summary: Whimsy 'model' of the ASF
|