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 CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- MDQ3MTQ3MmZlNzIwMGJkODVkMjdhNGZjODhkOTVmNjMzZjdkY2ViNA==
5
- data.tar.gz: !binary |-
6
- ZDA3NWUyMjA0MjRmY2E1ZjEzMWJhZGI1MTQ0MmMxMWYzNzRjOTU4OQ==
2
+ SHA1:
3
+ metadata.gz: 4b9d57023cee9eb500b39e73d61856a36186467d
4
+ data.tar.gz: 36a2f79a5dc3bf1bb313d7f13e47cc6c560c3fb6
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- M2VhNDg2MTAzYjNjZDRkYzQ3OTRkMGI2NzY5OGIxMGUxNjlkZDEwZjlkNGZh
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
- (c) 2012-2016 GitHub
1
+ MIT License
2
2
 
3
- When using the GitHub logos, be sure to follow the GitHub logo guidelines (https://github.com/logos)
3
+ Copyright (c) 2012-2016 GitHub, Inc.
4
4
 
5
- Font License: SIL OFL 1.1 (http://scripts.sil.org/OFL)
6
- Applies to all font files and SVG files
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
- Code License: MIT (http://choosealicense.com/licenses/mit/)
9
- Applies to all other files
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
- _Code License:_ [MIT](./LICENSE) &copy; [GitHub](https://github.com/)
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
- _Font License:_ [SIL OFL 1.1](./LICENSE) &copy; [GitHub](https://github.com/)
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
@@ -171,4 +171,4 @@
171
171
  "grabber": 61699,
172
172
  "plus-small": 61700,
173
173
  "reply": 61701
174
- }
174
+ }
@@ -1,3 +1,3 @@
1
1
  module Octicons
2
- VERSION = "2.0.0"
2
+ VERSION = "2.1.0"
3
3
  end
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 6h1.98L3 15H1l1.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>
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>
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16"><path d="M4.75 4.95C5.3 5.59 6.09 6 7 6c.91 0 1.7-.41 2.25-1.05A1.993 1.993 0 0 0 13 4c0-1.11-.89-2-2-2-.41 0-.77.13-1.08.33A3.01 3.01 0 0 0 7 0C5.58 0 4.39 1 4.08 2.33 3.77 2.13 3.41 2 3 2c-1.11 0-2 .89-2 2a1.993 1.993 0 0 0 3.75.95zm5.2-1.52c.2-.38.59-.64 1.05-.64.66 0 1.2.55 1.2 1.2 0 .65-.55 1.2-1.2 1.2-.65 0-1.17-.53-1.19-1.17.06-.19.11-.39.14-.59zM7 .98c1.11 0 2.02.91 2.02 2.02 0 1.11-.91 2.02-2.02 2.02-1.11 0-2.02-.91-2.02-2.02C4.98 1.89 5.89.98 7 .98zM3 5.2c-.66 0-1.2-.55-1.2-1.2 0-.65.55-1.2 1.2-1.2.45 0 .84.27 1.05.64.03.2.08.41.14.59C4.17 4.67 3.66 5.2 3 5.2zM13 6H1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1v2c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1h1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-3h1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-2c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM3 13H2v-3H1V7h2v6zm7-2H9V9H8v6H6V9H5v2H4V7h6v4zm3-1h-1v3h-1V7h2v3z"/></svg>
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="8" height="16" viewBox="0 0 8 16"><path d="M7 6H1c-.55 0-1 .45-1 1v5h2v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-3h2V7c0-.55-.45-1-1-1zm0 5H6V9H5v6H3V9H2v2H1V7h6v4zm0-8c0-1.66-1.34-3-3-3S1 1.34 1 3s1.34 3 3 3 3-1.34 3-3zM4 5c-1.11 0-2-.89-2-2 0-1.11.89-2 2-2 1.11 0 2 .89 2 2 0 1.11-.89 2-2 2z"/></svg>
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.0.0
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-06-17 00:00:00.000000000 Z
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.4.5
233
+ rubygems_version: 2.0.14.1
234
234
  signing_key:
235
235
  specification_version: 4
236
236
  summary: GitHub's octicons gem