Sha256: 2f3bb75aabeaded465d9213cad586a3b01ed29122677915fe12a00e99625512e
Contents?: true
Size: 1.6 KB
Versions: 1
Compression:
Stored size: 1.6 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 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('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 = '~> 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trepanning-2.15.33 | trepanning.gemspec |