Sha256: 2683ff791f93c723ef2b66d5d4f8929703192085e62f0003b5f807b8b8b7ad15

Contents?: true

Size: 478 Bytes

Versions: 1

Compression:

Stored size: 478 Bytes

Contents

module Maven

  VERSION = '3.1.1'.freeze
  
  def self.home
    File.expand_path( File.join( File.dirname( File.expand_path( __FILE__ ) ), '..' ) )
  end

  def self.bin( file = nil )
    if file
      File.join( path( 'bin' ), file )
    else
      path( 'bin' )
    end
  end

  def self.lib
    path( 'lib' )
  end

  def self.conf
    path( 'conf' )
  end

  def self.boot
    path( 'boot' )
  end
  
  private

  def self.path( name )
    File.join( home, name )
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby-maven-libs-3.1.1 ruby/maven.rb