forked from ruby-debug/ruby-debug-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-debug-ide.gemspec
51 lines (42 loc) · 1.35 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
48
49
50
51
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 = ['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/ruby-debug/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.
EOF
spec.version = RUBY_DEBUG_IDE_VERSION
spec.author = "Markus Barchfeld, Martin Krauskopf, Mark Moseley, JetBrains RubyMine Team"
spec.email = "rubymine-feedback@jetbrains.com"
spec.license = "MIT"
spec.platform = Gem::Platform::RUBY
spec.require_path = "lib"
spec.bindir = "bin"
spec.executables = ["rdebug-ide", "gdb_wrapper"]
spec.files = FILES
spec.extensions << "ext/mkrf_conf.rb" unless ENV['NO_EXT']
spec.add_dependency("rake", ">= 0.8.1")
spec.required_ruby_version = '>= 1.8.2'
spec.date = DateTime.now
spec.rubyforge_project = 'debug-commons'
# rdoc
spec.has_rdoc = false
end