Sha256: 97b1b1a3bc940b5c8c5cd66e2f7cd31e448fb883c8e23744a810dcddf24f9c39

Contents?: true

Size: 394 Bytes

Versions: 2

Compression:

Stored size: 394 Bytes

Contents

module Maven

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

  def self.bin
    path( 'bin' )
  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

2 entries across 2 versions & 1 rubygems

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