jekyll-avatar 0.1.0 → 0.1.1
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/README.md +4 -2
- data/jekyll-avatar.gemspec +1 -1
- data/lib/{jekyll/avatar.rb → jekyll-avatar.rb} +1 -1
- data/lib/{jekyll/avatar → jekyll-avatar}/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c625eae696c0c6441b3bb2479ffe36ec9e3b8176
|
|
4
|
+
data.tar.gz: 936109a68aca7f568c8a0574adba533b1b9ed71c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 75ab6463eeb44f06927d398cbe5ddb159d8ac40975e2b17c4ea7773b943434db4b3f432ab8abe1a6eabeb8a7b6681af53dbffcc103bccbbf78b4da4b1732db09
|
|
7
|
+
data.tar.gz: cb1978e814f972b17f30c6abb9197596b237929db067c7c97a21c9314ec4a49958440bbf3dd79f12dca73b56fe46a9df4463e7d3d9c5f2dfa079226c0f971836
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
*A Jekyll plugin for rendering GitHub avatars*
|
|
4
4
|
|
|
5
|
+
[](https://travis-ci.org/benbalter/jekyll-avatar)
|
|
6
|
+
|
|
5
7
|
Jekyll Avatar makes it easy to add GitHub avatars to your Jekyll site by specifying a username. If performance is a concern, Jekyll Avatar is deeply integrated with the GitHub avatar API, ensuring avatars are cached and load in parallel.
|
|
6
8
|
|
|
7
9
|
## Installation
|
|
@@ -44,11 +46,11 @@ That will output:
|
|
|
44
46
|
You can customize the size of the resulting avatar by passing the size arugment:
|
|
45
47
|
|
|
46
48
|
```
|
|
47
|
-
{% avatar hubot size=
|
|
49
|
+
{% avatar hubot size=50 %}
|
|
48
50
|
```
|
|
49
51
|
|
|
50
52
|
That will output:
|
|
51
53
|
|
|
52
54
|
```html
|
|
53
|
-
<img class="avatar
|
|
55
|
+
<img class="avatar" src="https://avatars3.githubusercontent.com/hubot?v=3&s=50" alt="hubot" width="50" height="50" />
|
|
54
56
|
```
|
data/jekyll-avatar.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-avatar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Balter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -97,8 +97,8 @@ files:
|
|
|
97
97
|
- README.md
|
|
98
98
|
- Rakefile
|
|
99
99
|
- jekyll-avatar.gemspec
|
|
100
|
-
- lib/jekyll
|
|
101
|
-
- lib/jekyll
|
|
100
|
+
- lib/jekyll-avatar.rb
|
|
101
|
+
- lib/jekyll-avatar/version.rb
|
|
102
102
|
- script/bootstrap
|
|
103
103
|
- script/cibuild
|
|
104
104
|
homepage: https://github.com/benbalter/jekyll-avatar
|