obbistrano 1.1.165 → 1.1.166
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 -4
- 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: 06dc1ef20fabc95c223244abe3754d9fd74e6749
|
4
|
+
data.tar.gz: bc922486f53a44508973d19ee642c1a93ea5b7c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b34bc5bca93fca3a8175479dfbc45fe56ff54dee012f84e0faa8eb0c8b6e339b431d1858e02b8ee3ae7e4c351ccc962cf66a5ac76b0522b59035d03ef85ad837
|
7
|
+
data.tar.gz: 628966956eaaa4889abaa8ade1738869e0aee5bf9aebcd96e08c2e10991c31f9f62b7f85d05f2e03b0a71106cd5312f0102c4e06b80d34b3f91e535f8eb9404b
|
data/lib/obbistrano_tasks.rb
CHANGED
@@ -15,12 +15,10 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
15
15
|
|
16
16
|
def puts_ok
|
17
17
|
puts '✔'.green
|
18
|
-
puts
|
19
18
|
end
|
20
19
|
|
21
20
|
def puts_fail
|
22
21
|
puts '✘'.red
|
23
|
-
puts
|
24
22
|
end
|
25
23
|
|
26
24
|
|
@@ -506,7 +504,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
506
504
|
|
507
505
|
task :css, :roles => [:web] do
|
508
506
|
paths = get_top_level_directories("#{build_to}/public/stylesheets")
|
509
|
-
if
|
507
|
+
if newdeploy=='yes' then
|
510
508
|
plugins.each do |plugin|
|
511
509
|
pretty_print "--> Adding Plugin: #{plugin}"
|
512
510
|
puts_ok
|
@@ -553,7 +551,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
553
551
|
end
|
554
552
|
task :js , :roles => [:web] do
|
555
553
|
paths = get_top_level_directories("#{build_to}/public/javascripts")
|
556
|
-
if
|
554
|
+
if newdeploy=='yes' then
|
557
555
|
plugins.each do |plugin|
|
558
556
|
pretty_print "--> Adding plugin: #{plugin}"
|
559
557
|
puts_ok
|
data/obbistrano.gemspec
CHANGED