Sha256: 1d6a817b3e99587d22688e15065bdda8ce898dfa8f7778209e3a66d7d75a20a9

Contents?: true

Size: 1.58 KB

Versions: 1

Compression:

Stored size: 1.58 KB

Contents

# -*- Ruby -*-
# -*- encoding: utf-8 -*-
require 'rake'
require 'rubygems' unless
  Object.const_defined?(:Gem)
require File.dirname(__FILE__) + "/app/options" unless
  Object.const_defined?(:'Trepan')

Gem::Specification.new do |spec|
  spec.authors      = ['R. Bernstein']
  spec.date         = Time.now
  spec.description = <<-EOF
A Ruby debugger with both high and low-level debugging support.

To provide the advanced features this version works only with a
patched MRI Ruby 1.9.3 runtime.

For a version that works with Ruby 2.1.5, install a version
starting with 2.15.
EOF
  spec.add_dependency('rb-trace', '~> 0.5')
  spec.add_dependency('columnize', '~> 0.9')
  spec.add_dependency('redcarpet', '~> 3.2')
  spec.add_dependency('coderay', '~> 1.1')
  spec.add_dependency('term-ansicolor', '~> 1.3')
  spec.add_development_dependency('diff-lcs', '~> 0') # For testing only
  spec.author       = 'R. Bernstein'
  spec.bindir       = 'bin'
  spec.email        = 'rockyb@rubyforge.net'
  spec.executables = ['trepan']
  spec.files        = `git ls-files`.split("\n")
  spec.has_rdoc     = true
  spec.homepage     = 'http://wiki.github.com/rocky/rb-trepanning'
  spec.name         = 'trepanning'
  spec.license      = 'MIT'
  spec.platform     = Gem::Platform::RUBY
  spec.required_ruby_version = '~> 1.9.3'
  spec.require_path = 'lib'
  spec.summary      = 'Enhanced Ruby 1.9.3 Debugger'
  spec.version      = Trepan::VERSION

  # Make the readme file the start page for the generated html
  spec.rdoc_options += %w(--main README)
  spec.rdoc_options += ['--title', "Trepan #{Trepan::VERSION} Documentation"]

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
trepanning-1.93.32 trepanning.gemspec