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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 06dc1ef20fabc95c223244abe3754d9fd74e6749
4
- data.tar.gz: bc922486f53a44508973d19ee642c1a93ea5b7c8
3
+ metadata.gz: 29f8575711a475dcb74f79f61375c9221f3137ce
4
+ data.tar.gz: 1d5d36bca492aa45e9c536c05f9dd3a4e21c293a
5
5
  SHA512:
6
- metadata.gz: b34bc5bca93fca3a8175479dfbc45fe56ff54dee012f84e0faa8eb0c8b6e339b431d1858e02b8ee3ae7e4c351ccc962cf66a5ac76b0522b59035d03ef85ad837
7
- data.tar.gz: 628966956eaaa4889abaa8ade1738869e0aee5bf9aebcd96e08c2e10991c31f9f62b7f85d05f2e03b0a71106cd5312f0102c4e06b80d34b3f91e535f8eb9404b
6
+ metadata.gz: a8385652b0a8f1745557bf1c0de4f80ae527fb07bcd317e0b85cf90eb04ff1f64d57dcc67f9a5ab057cf4a05108a17eb48a96fb09b08115cae7bd33db97aa4be
7
+ data.tar.gz: 99b0f013b2bf05dfedb3279f43fdab6c3094e417dda74748ec95bc1cf0eb12138138988c73f5edaf3a754a68bc66b43089acc818d2bdfde4d444e775cdcd78c6
@@ -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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{obbistrano}
5
- s.version = "1.1.166"
5
+ s.version = "1.1.167"
6
6
  s.authors = ["Ross Riley", "One Black Bear"]
7
7
  s.license = 'MIT'
8
8
  s.date = Time.now
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: obbistrano
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.166
4
+ version: 1.1.167
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ross Riley