Sha256: 81ae2b06f6a7dcba3492af735afc6d79e7716fd9828b319b294c50edcca83d80

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

# encoding: UTF-8

libdir = File.join(File.dirname(__FILE__), 'lib')
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)

require "rbreadline/version"

spec = Gem::Specification.new do |s|
  # basic information
  s.name        = "rb-readline"
  s.version     = RbReadline::RB_READLINE_VERSION
  s.platform    = Gem::Platform::RUBY

  # description and details
  s.summary     = 'Pure-Ruby Readline Implementation'
  s.description = "The readline library provides a pure Ruby implementation of the GNU readline C library, as well as the Readline extension that ships as part of the standard library."

  # project information
  s.homepage          = 'http://github.com/ConnorAtherton/rb-readline'
  s.licenses          = ['BSD']

  # author and contributors
  s.authors     = ['Park Heesob', 'Daniel Berger', 'Luis Lavena', 'Connor Atherton']
  s.email       = ['phasis@gmail.com', 'djberg96@gmail.com', 'luislavena@gmail.com', 'c.liam.atherton@gmail.com']

  # requirements
  s.required_ruby_version = ">= 1.8.6"
  s.required_rubygems_version = ">= 1.3.5"

  # development dependencies
  s.add_development_dependency 'rake'
  s.add_development_dependency "minitest", "~> 5.2"

  # components, files and paths
  s.files = Dir[
    "{bench,examples,lib,test}/**/*.rb",
    "README.md",
    "LICENSE",
    "CHANGES",
    "Rakefile",
    "rb-readline.gemspec",
    "setup.rb"
  ]

  s.require_path = 'lib'

  # documentation
  s.rdoc_options << '--main'  << 'README.md' << '--title' << 'Rb-Readline - Documentation'

  s.extra_rdoc_files = %w(README.md LICENSE CHANGES)
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
chess_engine-0.0.2 vendor/bundle/gems/rb-readline-0.5.5/rb-readline.gemspec
chess_engine-0.0.1 vendor/bundle/gems/rb-readline-0.5.5/rb-readline.gemspec
rb-readline-0.5.5 rb-readline.gemspec
rb-readline-0.5.4 rb-readline.gemspec