obbistrano 1.1.98 → 1.1.99
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.
- data/lib/obbistrano_tasks.rb +3 -2
- data/obbistrano.gemspec +1 -1
- metadata +2 -2
data/lib/obbistrano_tasks.rb
CHANGED
|
@@ -543,6 +543,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
543
543
|
end
|
|
544
544
|
end
|
|
545
545
|
upload "#{build_to}/public/stylesheets/build", "#{deploy_to}/public/stylesheets/", :via => :scp, :recursive=>true
|
|
546
|
+
puts_ok
|
|
546
547
|
end
|
|
547
548
|
task :js , :roles => [:web] do
|
|
548
549
|
paths = get_top_level_directories("#{build_to}/public/javascripts")
|
|
@@ -553,9 +554,8 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
553
554
|
paths << "#{build_to}/plugins/#{plugin}/resources/public/javascripts"
|
|
554
555
|
end
|
|
555
556
|
end
|
|
556
|
-
puts "--"
|
|
557
557
|
paths.each do |path|
|
|
558
|
-
|
|
558
|
+
pretty_print "folders: #{path}\n".green
|
|
559
559
|
end
|
|
560
560
|
Dir.mkdir("#{build_to}/public/javascripts/build") rescue ""
|
|
561
561
|
paths.each do |bundle_directory|
|
|
@@ -591,6 +591,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
|
591
591
|
end
|
|
592
592
|
end
|
|
593
593
|
upload "#{build_to}/public/javascripts/build", "#{deploy_to}/public/javascripts/", :via => :scp, :recursive=>true
|
|
594
|
+
puts_ok
|
|
594
595
|
end
|
|
595
596
|
|
|
596
597
|
|
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.
|
|
5
|
+
s.version = "1.1.99"
|
|
6
6
|
s.authors = ["Ross Riley", "One Black Bear"]
|
|
7
7
|
s.date = Time.now
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|