Sha256: 0885a9d3f4e2d006e73b087dd10efc84a3211b710ef6b78c2582f82597ef4706

Contents?: true

Size: 1.19 KB

Versions: 1

Compression:

Stored size: 1.19 KB

Contents

module Detest

  ##
  # Official name of this project.
  #
  PROJECT = 'Detest'

  ##
  # Short single-line description of this project.
  #
  TAGLINE = 'Assertion testing library for Ruby'

  ##
  # Address of this project's official home page.
  #
  WEBSITE = 'http://snk.tuxfamily.org/lib/detest/'

  ##
  # Number of this release of this project.
  #
  VERSION = '3.1.3'

  ##
  # Date of this release of this project.
  #
  RELDATE = '2011-04-22'

  ##
  # Description of this release of this project.
  #
  def self.inspect
    "#{PROJECT} #{VERSION} (#{RELDATE})"
  end

  ##
  # Location of this release of this project.
  #
  INSTDIR = File.expand_path('../../..', __FILE__)

  ##
  # RubyGems required by this project during runtime.
  #
  # @example
  #
  #   GEMDEPS = {
  #     # this project needs exactly version 1.2.3 of the "an_example" gem
  #     'an_example' => [ '1.2.3' ],
  #
  #     # this project needs at least version 1.2 (but not
  #     # version 1.2.4 or newer) of the "another_example" gem
  #     'another_example' => [ '>= 1.2' , '< 1.2.4' ],
  #
  #     # this project needs any version of the "yet_another_example" gem
  #     'yet_another_example' => [],
  #   }
  #
  GEMDEPS = {}

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
detest-3.1.3 lib/detest/inochi.rb