slideshow-models 2.4.0 → 2.5.0
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/slideshow/manifest_helpers.rb +7 -1
- data/lib/slideshow/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0410851655f8b99345b952432a375cc8061fb22f
|
|
4
|
+
data.tar.gz: 4580e4340a62000f9bd0bb196516dd850a5c4c7d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 846cca595221a0dd9298238f2627f89bb381df10d408033eab4f3fdb0b22692693d7631c3879c8305ab7ca0ba97c0d925aceec78200c944764b21baa2e42d3c5
|
|
7
|
+
data.tar.gz: b19adf9a7a3e0c1da89087970e565c1c47c6209b560c553a616b62d777cb4a381f1503bbd7bad00cc69d9076f5b2d6274a80dc2245eff31c9fea517c5ae2acd4
|
|
@@ -45,7 +45,8 @@ module ManifestHelper
|
|
|
45
45
|
]
|
|
46
46
|
current_patterns = [
|
|
47
47
|
"templates/*.txt",
|
|
48
|
-
"templates/*/*.txt" # todo: use all in one line? {*.txt,*/*.txt} does it work?
|
|
48
|
+
"templates/*/*.txt", # todo: use all in one line? {*.txt,*/*.txt} does it work?
|
|
49
|
+
"node_modules/*/*.txt", # note: add support for npm installs - use/make slideshow required in name? for namespace in the future???
|
|
49
50
|
]
|
|
50
51
|
|
|
51
52
|
patterns = []
|
|
@@ -85,7 +86,12 @@ module ManifestHelper
|
|
|
85
86
|
"#{config.config_dir}/templates/*/*.{txt.quick,quick.txt}"
|
|
86
87
|
]
|
|
87
88
|
|
|
89
|
+
current_patterns = [
|
|
90
|
+
"node_modules/*/*.{txt.quick,quick.txt}", # note: add support for npm installs - use/make slideshow required in name? for namespace in the future???
|
|
91
|
+
]
|
|
92
|
+
|
|
88
93
|
patterns = []
|
|
94
|
+
patterns += current_patterns
|
|
89
95
|
patterns += config_patterns
|
|
90
96
|
patterns += builtin_patterns
|
|
91
97
|
end
|
data/lib/slideshow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: slideshow-models
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gerald Bauer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-12-
|
|
11
|
+
date: 2014-12-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: props
|