octopress-ink 1.0.0.rc.26 → 1.0.0.rc.27

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: da6eedb67bd7bea12356c1ad828e9bf405ebf946
4
- data.tar.gz: d3c731a93e4b32fdbf05477b6c493b7955cbb652
3
+ metadata.gz: 32a5b7a5dac5a077da12cd01694826f391404f5a
4
+ data.tar.gz: f4c9c08daa85688d2c11b75bbecf5ff781b3ffd4
5
5
  SHA512:
6
- metadata.gz: 465053f2459450fea646c0efdab7a403cc97aac3cce150c592c93f401ba81a49373b15996d967af1ae4270a2ae28f9a2db313d1d2b0f3695682106bf9590d6e6
7
- data.tar.gz: 9caff2dc61f1c438af25c08bcaff0b32bba676eab2b064b2af2800d875b80f52bb0877a36f8440ddf1b98bea2f7ca813de23b000b80158b19874a01254810cdf
6
+ metadata.gz: 654770c57b1eea96fb851dcb9233ec91e19edd814e8a352e64b3260e313a3ec4cae820daa4477a052cc1d9ab13987cdd2dfd7d442883453480d7464e49f02a95
7
+ data.tar.gz: d9483ec25050ae5c4a956b98149eba15e817570823e92ecaa9dbc43e97834cbaa610b569a93691dfbfe67107423e376f98007226e6ec49d83c58ac95632d8493
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ### 1.0.0 RC26 - 2015-01-12
4
+
5
+ - Fixed: Invisible "dot" files are now ignored as plugin assets. [#32](https://github.com/octopress/ink/issues/32)
6
+
3
7
  ### 1.0.0 RC26 - 2015-01-09
4
8
 
5
9
  - Fixed: Issue where setting destination config would break Jekyll cleaner.
data/README.md CHANGED
@@ -25,11 +25,6 @@ Or install it yourself as:
25
25
 
26
26
  $ gem install octopress-ink
27
27
 
28
- ## Usage
29
-
30
- This is still evolving quite a bit. If you want to use it, you
31
- should probably talk to me directly.
32
-
33
28
  ## Contributing
34
29
 
35
30
  For right now. Talk to me directly. I'd love help thinking
@@ -378,7 +378,9 @@ module Octopress
378
378
 
379
379
  def glob_assets(dir)
380
380
  return [] unless Dir.exist? dir
381
- Find.find(dir).to_a.reject {|f| File.directory? f }
381
+ Find.find(dir).to_a.reject do |file|
382
+ File.directory?(file) || File.basename(file) =~ /^\./
383
+ end
382
384
  end
383
385
 
384
386
  def css
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Ink
3
- VERSION = "1.0.0.rc.26"
3
+ VERSION = "1.0.0.rc.27"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-ink
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc.26
4
+ version: 1.0.0.rc.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-09 00:00:00.000000000 Z
11
+ date: 2015-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll