jekyll-avatar 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b1ffaa6227e8d8af1956bd5fa211db46c0c9e18b
4
- data.tar.gz: 6a27c7b962f4c7b9ab42020f74c7c2cb28bc13e0
3
+ metadata.gz: c625eae696c0c6441b3bb2479ffe36ec9e3b8176
4
+ data.tar.gz: 936109a68aca7f568c8a0574adba533b1b9ed71c
5
5
  SHA512:
6
- metadata.gz: e6b4b4b1b792cd6f0652531769e075d66f7aa281e155812f125260d7afff0e3521babd17ffe67dc986d3630784bce13e75cb08aebe1a2998c08d9460f299d2cf
7
- data.tar.gz: ce5472feed3584cc3df9041728c1d9f9ea911ed8d14cec2deadf89f8bf3319d132838ba0946b6a8d1734af63cc22a1834008de2fc1a36a188b35360cd3c011fc
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
+ [![Build Status](https://travis-ci.org/benbalter/jekyll-avatar.svg)](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=25 %}
49
+ {% avatar hubot size=50 %}
48
50
  ```
49
51
 
50
52
  That will output:
51
53
 
52
54
  ```html
53
- <img class="avatar avatar-small" src="https://avatars3.githubusercontent.com/hubot?v=3&amp;s=25" alt="hubot" width="25" height="25" />
55
+ <img class="avatar" src="https://avatars3.githubusercontent.com/hubot?v=3&amp;s=50" alt="hubot" width="50" height="50" />
54
56
  ```
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'jekyll/avatar/version'
4
+ require 'jekyll-avatar/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'jekyll-avatar'
@@ -1,4 +1,4 @@
1
- require 'jekyll/avatar/version'
1
+ require 'jekyll-avatar/version'
2
2
 
3
3
  module Jekyll
4
4
  class Avatar < Liquid::Tag
@@ -1,6 +1,6 @@
1
1
  module Liquid; class Tag; end; end
2
2
  module Jekyll
3
3
  class Avatar < Liquid::Tag
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
6
6
  end
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.0
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-10 00:00:00.000000000 Z
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/avatar.rb
101
- - lib/jekyll/avatar/version.rb
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