obbistrano 1.1.54 → 1.1.55
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 +9 -2
- data/obbistrano.gemspec +1 -1
- metadata +3 -3
data/lib/obbistrano_tasks.rb
CHANGED
@@ -351,7 +351,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
351
351
|
puts "*** Operating System could not be detected or is not supported" if !defined? "#{os_ver}"
|
352
352
|
exit if !defined? "#{os_ver}"
|
353
353
|
end
|
354
|
-
"#{os_ver}".
|
354
|
+
"#{os_ver}".testos
|
355
355
|
end
|
356
356
|
|
357
357
|
|
@@ -425,13 +425,20 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
425
425
|
end
|
426
426
|
end
|
427
427
|
|
428
|
-
task :
|
428
|
+
task :ostest, :roles => [:host] do
|
429
429
|
puts "#{os_ver}"
|
430
430
|
exit
|
431
431
|
end
|
432
432
|
|
433
433
|
end
|
434
434
|
|
435
|
+
namespace :ubuntu do
|
436
|
+
task :ostest, :roles => [:host] do
|
437
|
+
puts "#{os_ver}"
|
438
|
+
exit
|
439
|
+
end
|
440
|
+
end
|
441
|
+
|
435
442
|
task :mirror do
|
436
443
|
print "==== Which server would you like to copy #{application} to? [Full Domain Name] "
|
437
444
|
new_server = STDIN.gets.strip
|
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.55"
|
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=
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: obbistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 125
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 55
|
10
|
+
version: 1.1.55
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ross Riley
|