jekyll-scholar 5.8.0 → 5.8.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: 59e9726fd29959f5065efcb1c1a6948128f20eb2
4
- data.tar.gz: 37a408bb19e1af81bb6884bc2a6abf37a4751f29
3
+ metadata.gz: 5580ad167dd318d827b12d25b568b01a8839f695
4
+ data.tar.gz: b222a4eacf852bbdcaccece79fafa83def744561
5
5
  SHA512:
6
- metadata.gz: 4d0b131b2bea9952706288b62796f0c0acf25916ee796b38245e4ea8452dedc7d4ef183588a45980dcf8cb7907bcd5c51516143e2d4a0b2f2a9acd09942cdf86
7
- data.tar.gz: 151bffaa573b6415f66e4ab6a9a092b3dbbf529b4f163dffdae8e4fb23d66451ba687031c4f29f59adc71d3ccdb6ad8a7c7164ba93beb47d2cb5c84fe6cb8976
6
+ metadata.gz: 170732689212bbde970ffb52030d545e1118f34ae49754fd34d43de7915c223db60e278a98d710f17b0f481165286dc9dd4d1acb204c9edf8df85700bba88e64
7
+ data.tar.gz: 607485599c35cff2aed70356ea1c114cd4e54d099cdc521e6d888bc2c4807de4ac91cd8c40e2c7e7a213580c2340e4543f66a34876b6b4ea1825a4f7a8484ce6
data/.travis.yml CHANGED
@@ -15,6 +15,6 @@ notifications:
15
15
  - sylvester@keil.or.at
16
16
  on_success: change
17
17
  on_failure: always
18
- #matrix:
19
- # allow_failures:
20
- # - rvm: rbx-2
18
+ matrix:
19
+ allow_failures:
20
+ - rvm: rbx-2
data/Gemfile CHANGED
@@ -7,6 +7,7 @@ group :development do
7
7
  gem 'test-unit'
8
8
  else
9
9
  gem 'minitest', '< 5.0'
10
+ gem 'listen', '~>3.0.0'
10
11
  end
11
12
 
12
13
  gem 'rake'
@@ -14,7 +15,6 @@ group :development do
14
15
  gem 'shoulda', '~> 3.5'
15
16
  gem 'cucumber', '1.3.11'
16
17
  gem 'redcarpet'
17
- gem 'launchy', '~> 2.3'
18
18
 
19
19
  gem 'unicode_utils'
20
20
 
@@ -11,6 +11,8 @@ module Jekyll
11
11
  'bibliography_group_tag' => 'h2,h3,h4,h5',
12
12
  'bibliography_list_tag' => 'ol',
13
13
  'bibliography_item_tag' => 'li',
14
+ 'bibliography_list_attributes' => {},
15
+ 'bibliography_item_attributes' => {},
14
16
 
15
17
  'source' => './_bibliography',
16
18
  'bibliography' => 'references.bib',
@@ -89,10 +89,12 @@ module Jekyll
89
89
  config['details_link'], :class => config['details_link_class'])
90
90
  end
91
91
 
92
- content_tag config['bibliography_item_tag'], reference
92
+ content_tag config['bibliography_item_tag'], reference, config['bibliography_item_attributes']
93
93
  }.join("\n")
94
94
 
95
- content_tag config['bibliography_list_tag'], bibliography, :class => config['bibliography_class']
95
+ content_tag config['bibliography_list_tag'], bibliography,
96
+ { :class => config['bibliography_class'] }.merge(config['bibliography_list_attributes'])
97
+
96
98
  end
97
99
 
98
100
  end
@@ -1,5 +1,5 @@
1
1
  module Jekyll
2
2
  class Scholar
3
- VERSION = '5.8.0'.freeze
3
+ VERSION = '5.8.1'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-scholar
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.8.0
4
+ version: 5.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sylvester Keil
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-25 00:00:00.000000000 Z
11
+ date: 2016-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll