yass 0.2.0 → 0.2.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/lib/yass/cli/runner.rb +1 -1
- data/lib/yass/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4660b4c1e315a8dfca13d59ebc7dc2df7927cc267662c008591d1eab2dc7aecc
|
4
|
+
data.tar.gz: 19e7865fa6f842204a35b75c741eafafaaadab9c47b33dfd1da19906c607e6f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 18c222a12583757264009d42ce31aa6445066099e55c88cfb87c88a07af4e407cfdaea444a46a6c214a1f6d4ab16d30f572d01d8c9bfa87acb08bef702f42ff7
|
7
|
+
data.tar.gz: 1df53ed9bcbaaf438db53316a2d8f1e4487b912b96726ba622c42d8e3b257bd8038368857b5b00c54f5c2698e44f0a25bc5f087a8885223c36ec3ba9ed1f4f3b
|
data/lib/yass/cli/runner.rb
CHANGED
@@ -39,7 +39,7 @@ module Yass
|
|
39
39
|
watcher = Filewatcher.new([config.src_dir, config.layout_dir, config.template_dir].map(&:to_s))
|
40
40
|
yield watcher if block_given?
|
41
41
|
watcher.watch do |changes|
|
42
|
-
files = changes.map { |f, _| Pathname.new(f).relative_path_from(config.root).to_s }
|
42
|
+
files = changes.map { |f, _| Pathname.new(f).relative_path_from(config.root).to_s }.reject { |f| Dir.exist? f }
|
43
43
|
config.stdout.puts "Building #{files.join ", "}"
|
44
44
|
config.clear_cache!
|
45
45
|
Yass::CLI::Runner.build(config, argv: argv)
|
data/lib/yass/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jordan Hollinger
|
@@ -78,10 +78,12 @@ files:
|
|
78
78
|
- site-template/site/index.default.html.liquid
|
79
79
|
- site-template/templates/css_links.liquid
|
80
80
|
- site-template/templates/js_scripts.liquid
|
81
|
-
homepage: https://github.com/jhollinger/yass
|
81
|
+
homepage: https://github.com/jhollinger/yass/
|
82
82
|
licenses:
|
83
83
|
- MIT
|
84
|
-
metadata:
|
84
|
+
metadata:
|
85
|
+
homepage_uri: https://github.com/jhollinger/yass/
|
86
|
+
source_code_uri: https://github.com/jhollinger/yass/
|
85
87
|
post_install_message:
|
86
88
|
rdoc_options: []
|
87
89
|
require_paths:
|