nanoc-sprockets 0.1.0alpha2 → 0.1.0alpha3

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6ed331b2eac6877eaceebd6ee3837b2819a62a76
4
- data.tar.gz: eb8d220e931b1b618e1fda1a00bbe935a1ef9d11
3
+ metadata.gz: 42201656e059aa8d69999c0e4986c0d0ed446315
4
+ data.tar.gz: 466bc4a7cd67bbc482e476e5ac1b9962e5021767
5
5
  SHA512:
6
- metadata.gz: 0dc48a699cdf1a9332a9bbdc05069e0327e88a41dfdc44aad7e8be484812837b9a6837f4e9d815b0aace42817293c40ac00a9f949fe746b0c7936573babae733
7
- data.tar.gz: d8bd50e001a62136474c84aa4f5e56daae9b1bdd187f169726638d3f3ffdc304ae9c355af820e2d01077283194a91d22591b15609788fb6066acab39665ed14b
6
+ metadata.gz: 3a21c6557202379f52d7254b51083a3bbe6082016ea38a0bb47b75376b9d79380fe88b8a1a3a7867f5bd2bc7a167abaa7fb3f1754cc0e8c1d0d8b3ec315a3594
7
+ data.tar.gz: eb4437742a7fcb05b691caba4228c6aefa05c3823e0758f4ef10bdc9dc38c0d77dd435d2053d419e5186785d05c82e6509805f5983d9f577b3432df10664ff10
@@ -27,8 +27,8 @@ module Nanoc::DataSources
27
27
  is_binary = !!(asset.pathname && !@site_config[:text_extensions].include?(File.extname(asset.pathname)[1..-1]))
28
28
 
29
29
  content_of_filename = is_binary ? asset.pathname : asset.to_s
30
- attributes = {filename: identifier, binary: is_binary, mtime: asset.mtime}
31
- new_item(content_of_filename, attributes, identifier, attributes)
30
+ attributes = {filename: identifier, mtime: asset.mtime}
31
+ new_item(content_of_filename, attributes, identifier, binary: is_binary)
32
32
  end
33
33
  end
34
34
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'nanoc-sprockets'
5
- s.version = '0.1.0alpha2'
5
+ s.version = '0.1.0alpha3'
6
6
  s.summary = 'Use sprockets as a datasource for nanoc.'
7
7
  s.description = 'Use sprockets as a datasource for nanoc.'
8
8
  s.homepage = 'https://github.com/stormz/nanoc-sprockets'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nanoc-sprockets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0alpha2
4
+ version: 0.1.0alpha3
5
5
  platform: ruby
6
6
  authors:
7
7
  - François de Metz