forked from corgibytes/ruby-debug-ide
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruby-debug-ide.gemspec
47 lines (38 loc) · 1.45 KB
/
ruby-debug-ide.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
47
require File.dirname(__FILE__) + "/lib/ruby-debug-ide/version"
require "date"
# ------- Default Package ----------
RUBY_DEBUG_IDE_VERSION = Debugger::IDE_VERSION unless defined? RUBY_DEBUG_IDE_VERSION
unless defined? FILES
FILES = %w[CHANGES ChangeLog.md ChangeLog.archive MIT-LICENSE Rakefile ext/mkrf_conf.rb Gemfile ruby-debug-ide.gemspec]
FILES.push(*Dir["bin/*"])
FILES.push(*Dir["lib/**/*"])
# 'test/**/*',
end
Gem::Specification.new do |spec|
spec.name = "ruby-debug-ide"
spec.homepage = "https://github.com/lemonade-hq/ruby-debug-ide"
spec.summary = "IDE interface for ruby-debug."
spec.description = <<-EOF
An interface which glues ruby-debug to IDEs like Eclipse (RDT), NetBeans and RubyMine. Forked to add support for Docker.
EOF
spec.version = RUBY_DEBUG_IDE_VERSION
spec.authors = ["Markus Barchfeld", "Martin Krauskopf", "Mark Moseley", "Alexandr Evstigneev", "Corgibytes", "lemonade-hq"]
spec.license = "MIT"
spec.platform = Gem::Platform::RUBY
spec.require_path = "lib"
spec.bindir = "bin"
spec.executables = %w[rdebug-ide gdb_wrapper]
spec.files = FILES
if RUBY_VERSION < "2.0"
spec.add_dependency("rake", "< 12.3")
elsif RUBY_VERSION < "2.1"
spec.add_dependency("rake", "< 13.0")
else
spec.add_dependency("rake", ">= 0.8.1")
end
# REXML needs to be installed vai a gem for Ruby 3.0+.
if RUBY_VERSION >= "3.0"
spec.add_dependency("rexml")
end
spec.required_ruby_version = ">= 1.8.2"
end