octicons 2.0.0 → 2.1.0
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 +5 -13
- data/LICENSE +18 -6
- data/README.md +20 -2
- data/lib/codepoints.json +1 -1
- data/lib/octicons/version.rb +1 -1
- data/lib/svg/italic.svg +1 -1
- data/lib/svg/organization.svg +1 -1
- data/lib/svg/person.svg +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
data.tar.gz: !binary |-
|
|
6
|
-
ZDA3NWUyMjA0MjRmY2E1ZjEzMWJhZGI1MTQ0MmMxMWYzNzRjOTU4OQ==
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 4b9d57023cee9eb500b39e73d61856a36186467d
|
|
4
|
+
data.tar.gz: 36a2f79a5dc3bf1bb313d7f13e47cc6c560c3fb6
|
|
7
5
|
SHA512:
|
|
8
|
-
metadata.gz:
|
|
9
|
-
|
|
10
|
-
ODg2M2YwNDI2OGNiYzg3MjgzOGVhMTBlNGE5NzgwZTc2NDA0ZTY2YmZjZWU1
|
|
11
|
-
YTRkY2EyYWEwYjQzNWM0MDg2MGExMmRkZDc1MTJjYThiZDY0MzE=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
YmY3NzRhZTQ0YjU2NjgyOGZlOGU2NGI0NTk3MzYwOTgyMjY5Nzk2YzVmZjAz
|
|
14
|
-
ZWM0MzIyNjc1Mzc2OGU3OTk4MGIwYWIxNWI4ODllYjE1NjBmMzk0OGVmNTgw
|
|
15
|
-
OTIzZDVlMmZjNWMyOTc5M2Q3ZTMxNDZhMzJkOTQxZGI0YmQ5YWU=
|
|
6
|
+
metadata.gz: ce90c722936f5ca65d27fcd8d4380c275fcb3be3a75a0b07f6067c8625fa38eea8bcdf54d650d835f5af8a605d4c5685fc7407598597a522a7466122ee750210
|
|
7
|
+
data.tar.gz: 2b0a7c3484cc36444578289a90df5016e8183269fd8ead4152e859737f5dcf6af7dc22cf578fe589a7547f34c3cb3607cf5aa81086ecf9fa110a994f4821a8b0
|
data/LICENSE
CHANGED
|
@@ -1,9 +1,21 @@
|
|
|
1
|
-
|
|
1
|
+
MIT License
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Copyright (c) 2012-2016 GitHub, Inc.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
7
11
|
|
|
8
|
-
|
|
9
|
-
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
|
@@ -133,11 +133,29 @@ icon.character
|
|
|
133
133
|
# ""
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
+
## Publishing
|
|
137
|
+
|
|
138
|
+
If you have access to publish this repository, these are the steps to publishing. If you need access, contact [#design-systems](https://github.slack.com/archives/design-systems).
|
|
139
|
+
|
|
140
|
+
**Before publishing** This repository relies on the data from [octicons][]. To update to the most recent version, you'll need to run `npm run update`
|
|
141
|
+
|
|
142
|
+
1. Update the [CHANGELOG.md](./CHANGELOG.md) with relevant version number and any updates made to the repository.
|
|
143
|
+
2. Update the version in [version.rb](https://github.com/primer/octicons_gem/blob/master/lib/octicons/version.rb) using the relevant version. The versioning is [semver](http://semver.org/), so version appropriately based on what has changed.
|
|
144
|
+
3. `npm version <newversion>` Use the same version that you added in step 2.
|
|
145
|
+
4. `npm run ship` This will build the gem and publish it to rubygems.
|
|
146
|
+
5. `git push && git push --tags` Push all these changes to origin.
|
|
147
|
+
|
|
136
148
|
## License
|
|
137
149
|
|
|
138
|
-
|
|
150
|
+
(c) 2012-2016 GitHub, Inc.
|
|
151
|
+
|
|
152
|
+
When using the GitHub logos, be sure to follow the [GitHub logo guidelines](https://github.com/logos).
|
|
153
|
+
|
|
154
|
+
_Font License:_ [SIL OFL 1.1](http://scripts.sil.org/OFL)
|
|
155
|
+
Applies to all font files and SVG files
|
|
139
156
|
|
|
140
|
-
|
|
157
|
+
_Code License:_ [MIT](./LICENSE)
|
|
158
|
+
Applies to all other files
|
|
141
159
|
|
|
142
160
|
[octicons]: https://github.com/primer/octicons
|
|
143
161
|
[octicons-docs]: https://octicons.github.com/
|
data/lib/codepoints.json
CHANGED
data/lib/octicons/version.rb
CHANGED
data/lib/svg/italic.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="16" viewBox="0 0 6 16"><path d="M2.81
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="6" height="16" viewBox="0 0 6 16"><path d="M2.81 5h1.98L3 14H1l1.81-9zm.36-2.7c0-.7.58-1.3 1.33-1.3.56 0 1.13.38 1.13 1.03 0 .75-.59 1.3-1.33 1.3-.58 0-1.13-.38-1.13-1.03z"/></svg>
|
data/lib/svg/organization.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M16 12.999c0 .439-.45 1-1 1H7.995c-.539 0-.994-.447-.995-.999H1c-.54 0-1-.561-1-1 0-2.634 3-4 3-4s.229-.409 0-1c-.841-.621-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.442.58 2.5 3c.058 2.41-.159 2.379-1 3-.229.59 0 1 0 1s1.549.711 2.42 2.088C9.196 9.369 10 8.999 10 8.999s.229-.409 0-1c-.841-.62-1.058-.59-1-3 .058-2.419 1.367-3 2.5-3s2.437.581 2.495 3c.059 2.41-.158 2.38-1 3-.229.59 0 1 0 1s3.005 1.366 3.005 4"/></svg>
|
data/lib/svg/person.svg
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="16" viewBox="0 0 12 16"><path d="M12 14.002a.998.998 0 0 1-.998.998H1.001A1 1 0 0 1 0 13.999V13c0-2.633 4-4 4-4s.229-.409 0-1c-.841-.62-.944-1.59-1-4 .173-2.413 1.867-3 3-3s2.827.586 3 3c-.056 2.41-.159 3.38-1 4-.229.59 0 1 0 1s4 1.367 4 4v1.002z"/></svg>
|
metadata
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: octicons
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitHub Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: 1.6.3.1
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
|
-
- -
|
|
24
|
+
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 1.6.3.1
|
|
27
27
|
description: A package that distributes Octicons in a gem
|
|
@@ -31,13 +31,11 @@ executables: []
|
|
|
31
31
|
extensions: []
|
|
32
32
|
extra_rdoc_files: []
|
|
33
33
|
files:
|
|
34
|
-
- LICENSE
|
|
35
|
-
- README.md
|
|
36
34
|
- lib/codepoints.json
|
|
37
35
|
- lib/keywords.json
|
|
38
|
-
- lib/octicons.rb
|
|
39
36
|
- lib/octicons/octicon.rb
|
|
40
37
|
- lib/octicons/version.rb
|
|
38
|
+
- lib/octicons.rb
|
|
41
39
|
- lib/svg/alert.svg
|
|
42
40
|
- lib/svg/arrow-down.svg
|
|
43
41
|
- lib/svg/arrow-left.svg
|
|
@@ -210,6 +208,8 @@ files:
|
|
|
210
208
|
- lib/svg/watch.svg
|
|
211
209
|
- lib/svg/x.svg
|
|
212
210
|
- lib/svg/zap.svg
|
|
211
|
+
- LICENSE
|
|
212
|
+
- README.md
|
|
213
213
|
homepage: https://github.com/primer/octicons_gem
|
|
214
214
|
licenses:
|
|
215
215
|
- MIT
|
|
@@ -220,17 +220,17 @@ require_paths:
|
|
|
220
220
|
- lib
|
|
221
221
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
222
222
|
requirements:
|
|
223
|
-
- -
|
|
223
|
+
- - ">="
|
|
224
224
|
- !ruby/object:Gem::Version
|
|
225
225
|
version: '0'
|
|
226
226
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
227
227
|
requirements:
|
|
228
|
-
- -
|
|
228
|
+
- - ">="
|
|
229
229
|
- !ruby/object:Gem::Version
|
|
230
230
|
version: '0'
|
|
231
231
|
requirements: []
|
|
232
232
|
rubyforge_project:
|
|
233
|
-
rubygems_version: 2.
|
|
233
|
+
rubygems_version: 2.0.14.1
|
|
234
234
|
signing_key:
|
|
235
235
|
specification_version: 4
|
|
236
236
|
summary: GitHub's octicons gem
|