Sha256: b3b0283fb68bd9b359e2f8a4f8288d2e5f5c7d1d07649e3442f645a4a92ee883
Contents?: true
Size: 1.64 KB
Versions: 1
Compression:
Stored size: 1.64 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 modular, testable, Ruby debugger using some of the best ideas from ruby-debug, other debuggers, and Ruby Rails. Some of the core debugger concepts have been rethought. As a result, some of this may be experimental. This version works only with a patched version of Ruby 1.9.2 and rb-threadframe. See also rbx-trepanning for a version that works with Rubinius. EOF spec.add_dependency('rb-threadframe', '>= 0.38') spec.add_dependency('rb-trace', '>= 0.5') spec.add_dependency('linecache-tf', '>= 1.0') spec.add_dependency('columnize') spec.add_dependency('diff-lcs') # 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.require_path = 'lib' spec.required_ruby_version = '~> 1.9.2frame' spec.summary = 'Modular Ruby 1.9.2 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-0.1.3 | trepanning.gemspec |