Sha256: 923f3656e8118ad4ad751f9ec7cf21a8f889978a9937ea272eebc4c58fc1980f

Contents?: true

Size: 918 Bytes

Versions: 1

Compression:

Stored size: 918 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__), "albacore", 'config'))
$: << 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__)), 'albacore/*.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__)), '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 }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
albacore-0.2.0.preview1 lib/albacore.rb