Sha256: 6a2524563ada6a4d873b8db6d539e4701f0f08e5d692402bfba9cc82ff197789

Contents?: true

Size: 1.23 KB

Versions: 4

Compression:

Stored size: 1.23 KB

Contents

module #{library_name}

  ##
  # Official name of this project.
  #
  PROJECT = '#{project_name}'

  ##
  # Short single-line description of this project.
  #
  TAGLINE = 'TODO: the tagline of this project'

  ##
  # Address of this project's official home page.
  #
  WEBSITE = 'http://#{package_name}.rubyforge.org'

  ##
  # Number of this release of this project.
  #
  VERSION = '#{project_version}'

  ##
  # Date of this release of this project.
  #
  RELDATE = '#{project_release}'

  ##
  # 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

4 entries across 4 versions & 1 rubygems

Version Path
inochi-6.1.0 lib/inochi/templates/inochi.rb.rbs
inochi-6.0.2 lib/inochi/templates/inochi.rb.rbs
inochi-6.0.1 lib/inochi/templates/inochi.rb.rbs
inochi-6.0.0 lib/inochi/templates/inochi.rb.rbs