Sha256: a8cee8dadf256748c11758d06089db521488ab8d053239836ac0bd24397e1287

Contents?: true

Size: 837 Bytes

Versions: 2

Compression:

Stored size: 837 Bytes

Contents

$: << File.expand_path(File.dirname(__FILE__))
$: << File.expand_path(File.join(File.dirname(__FILE__), "albacore"))
$: << File.expand_path(File.join(File.dirname(__FILE__), "albacore", 'support'))
$: << File.expand_path(File.join(File.dirname(__FILE__), "rake"))

require 'logging'

runtime_is_ironruby = (!defined?(IRONRUBY_VERSION).nil?)

Dir.glob(File.join(File.expand_path(File.dirname(__FILE__)), 'rake/support/*.rb')).each {|f| require f }

Dir.glob(File.join(File.expand_path(File.dirname(__FILE__)), 'rake/*.rb')).reject{ |f|
  f if runtime_is_ironruby && (f.include?("ssh") || f.include?("sftp"))
}.each {|f| require f }

Dir.glob(File.join(File.expand_path(File.dirname(__FILE__)), 'albacore/*.rb')).reject{ |f|
  f if runtime_is_ironruby && (f.include?("ssh") || f.include?("sftp"))
}.each {|f| require f }

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
albacore-0.1.1 lib/albacore.rb
albacore-0.1.0 lib/albacore.rb