about_yml 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -1
- data/lib/about_yml/schema.json +1 -1
- data/lib/about_yml/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f9b2e75f68ce3cc2997bc8a1f317a4c5b0f8c46
|
4
|
+
data.tar.gz: c7517db21a8cb58ed77ceac452701a078d5e3480
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2352467181d29da1a49a2bbca122ce2776a1406191c625cb1a93573296993b28b32053c66468554911f5713a14770548d80c5f2db376cc686e6c1e6a7d82f4c
|
7
|
+
data.tar.gz: 2e9fe6e9d4c221567477dffc98994f22b5c1a5792e51429cf37c262bc539fa1684cc762d5128df15568ee7c855cbdfede4cf32956059282b24c2c467c33a90f3
|
data/README.md
CHANGED
@@ -22,6 +22,13 @@ web site, cultivation of `.about.yml` files will help make our activity more
|
|
22
22
|
easily transparent to our teammates, and to anyone outside our team who wishes
|
23
23
|
to discover what we're working on (and how we work).
|
24
24
|
|
25
|
+
## Quick start
|
26
|
+
|
27
|
+
Copy the [`template.yml`](./template.yml) file from this repository into the
|
28
|
+
root directory of your project's repository as `.about.yml`. Then refer to the
|
29
|
+
[cheat sheet](#cheat-sheet) for instructions regarding how to fill in the
|
30
|
+
data.
|
31
|
+
|
25
32
|
## Installation
|
26
33
|
|
27
34
|
Run `gem install about_yml` on the command line. You can also add `gem
|
@@ -117,7 +124,7 @@ script: bundle exec rake run_about_yml_check
|
|
117
124
|
```
|
118
125
|
|
119
126
|
|
120
|
-
##
|
127
|
+
## <a name="cheat-sheet"></a>`.about.yml` cheat sheet
|
121
128
|
The following attributes are currently stored in the `.about.yml` file and are used in one or more of the locations referenced above. Required attributes are marked with an asterisk, and field descriptions and examples follow each attribute. Take a look at [Every Kid in a Park](https://github.com/18F/ekip-api/blob/master/.about.yml) or [Open Opportunities](https://github.com/18F/openopps-platform/blob/dev/.about.yml) for living examples of `.about.yml` in action.
|
122
129
|
|
123
130
|
|
@@ -202,6 +209,13 @@ team:
|
|
202
209
|
id: khandelwal
|
203
210
|
```
|
204
211
|
|
212
|
+
`milestones` - What are the key milestones you've achieved recently?
|
213
|
+
>
|
214
|
+
```yml
|
215
|
+
milestones:
|
216
|
+
- "December 2015: Discovery completed"
|
217
|
+
```
|
218
|
+
|
205
219
|
`type` - What kind of content is contained in the project repository? *Accepted values: app, docs, policy*
|
206
220
|
>
|
207
221
|
```yml
|
data/lib/about_yml/schema.json
CHANGED
data/lib/about_yml/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: about_yml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Bland
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-02-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: safe_yaml
|
@@ -186,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
186
186
|
version: '0'
|
187
187
|
requirements: []
|
188
188
|
rubyforge_project:
|
189
|
-
rubygems_version: 2.
|
189
|
+
rubygems_version: 2.5.1
|
190
190
|
signing_key:
|
191
191
|
specification_version: 4
|
192
192
|
summary: ".about.yml project metadata schema and tools"
|