obbistrano 1.1.45 → 1.1.46

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.
@@ -4,6 +4,7 @@ Capistrano::Configuration.instance(:must_exist).load do
4
4
  task :config_setup do
5
5
  set :root_pass, root rescue nil
6
6
  set :environment, environment rescue set :environment, "production"
7
+ set :build_to, build_to rescue set :build_to, deploy_to
7
8
  end
8
9
 
9
10
 
@@ -480,7 +481,6 @@ Capistrano::Configuration.instance(:must_exist).load do
480
481
  end
481
482
 
482
483
  def get_top_level_directories(base_path)
483
- base_path = File.readlink(base_path) if(File.symlink?(base_path))
484
484
  Dir.entries(base_path).collect do |path|
485
485
  path = "#{base_path}/#{path}"
486
486
  File.basename(path)[0] == ?. || !File.directory?(path) || File.basename(path)=="build" ? nil : path # not dot directories or files
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{obbistrano}
5
- s.version = "1.1.45"
5
+ s.version = "1.1.46"
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: 73
4
+ hash: 79
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 45
10
- version: 1.1.45
9
+ - 46
10
+ version: 1.1.46
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ross Riley