obbistrano 1.1.166 → 1.1.167
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/obbistrano_tasks.rb +2 -0
- data/obbistrano.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 29f8575711a475dcb74f79f61375c9221f3137ce
|
4
|
+
data.tar.gz: 1d5d36bca492aa45e9c536c05f9dd3a4e21c293a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8385652b0a8f1745557bf1c0de4f80ae527fb07bcd317e0b85cf90eb04ff1f64d57dcc67f9a5ab057cf4a05108a17eb48a96fb09b08115cae7bd33db97aa4be
|
7
|
+
data.tar.gz: 99b0f013b2bf05dfedb3279f43fdab6c3094e417dda74748ec95bc1cf0eb12138138988c73f5edaf3a754a68bc66b43089acc818d2bdfde4d444e775cdcd78c6
|
data/lib/obbistrano_tasks.rb
CHANGED
@@ -513,6 +513,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
513
513
|
|
514
514
|
Dir.mkdir("#{build_to}/public/stylesheets/build") rescue ""
|
515
515
|
paths.each do |bundle_directory|
|
516
|
+
next if !File.directory?(bundle_directory)
|
516
517
|
bundle_name = bundle_directory.gsub("#{build_to}/", "").gsub("plugins/", "").gsub("/resources/public/stylesheets", "").gsub("public/stylesheets/", "")
|
517
518
|
next if bundle_name.empty?
|
518
519
|
files = recursive_file_list(bundle_directory, ".css")
|
@@ -560,6 +561,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
560
561
|
|
561
562
|
Dir.mkdir("#{build_to}/public/javascripts/build") rescue ""
|
562
563
|
paths.each do |bundle_directory|
|
564
|
+
next if !File.directory?(bundle_directory)
|
563
565
|
bundle_name = bundle_directory.gsub("#{build_to}/", "").gsub("plugins/", "").gsub("/resources/public/javascripts", "").gsub("public/javascripts/", "")
|
564
566
|
next if bundle_name.empty?
|
565
567
|
files = recursive_file_list(bundle_directory, ".js")
|
data/obbistrano.gemspec
CHANGED