-
Notifications
You must be signed in to change notification settings - Fork 4
/
trepanning.gemspec
46 lines (41 loc) · 1.61 KB
/
trepanning.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# -*- 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 2.1.5 runtime.
This version works only with a patched version of Ruby 2.1.5
For a version that works with Ruby 1.9.3 look install a version
starting with 1.93.
EOF
spec.add_dependency('redcarpet', '~> 3.2')
spec.add_dependency('columnize', '~> 0.9')
spec.add_dependency('rb-threadframe', '~> 0.50')
spec.add_dependency('linecache-tf', '~> 1.2')
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 = '~> 2.1.5'
spec.require_path = 'lib'
spec.summary = 'Enhanced Ruby 2.1 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