Sha256: d475c56a5002781d53a407760f372bb578e5ca9ce99772836b216113562f36de

Contents?: true

Size: 590 Bytes

Versions: 4

Compression:

Stored size: 590 Bytes

Contents

require 'yaml'                   # expensive to load
require 'thread'

# Apply version-specific patches
case RUBY_VERSION
when /^1.9/
  $: << File.expand_path(File.dirname(__FILE__) + "/tap/patches/ruby19")
end

$:.unshift File.expand_path(File.dirname(__FILE__))

require 'tap/constants'

# require in order...
require 'tap/env'
require 'tap/app'
require 'tap/task'
require 'tap/file_task'
require 'tap/workflow'

require 'tap/support/declarations'
Tap.extend Tap::Support::Declarations

# Apply platform-specific patches
# case RUBY_PLATFORM
# when 'java' 
# end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
bahuvrihi-tap-0.10.1 lib/tap.rb
bahuvrihi-tap-0.10.2 lib/tap.rb
bahuvrihi-tap-0.10.3 lib/tap.rb
tap-0.10.1 lib/tap.rb