Skip to content

Commit fb4ed4a

Browse files
committed
fix bundle exec
1 parent 27b96a8 commit fb4ed4a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ source "http://rubygems.org"
22

33
gem "ruby-debug-base", :platforms => [:jruby, :ruby_18, :mingw_18]
44
gem "ruby-debug-base19x", :platforms => [:ruby_19, :mingw_19]
5-
gem "rake", "~> 0.8.7"
65

76
gemspec
87

ruby-debug-ide.gemspec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
require File.dirname(__FILE__) + '/lib/ruby-debug/version'
2-
require "rake"
32
require "date"
43

54
# ------- Default Package ----------
65
RUBY_DEBUG_IDE_VERSION = Debugger::IDE_VERSION unless defined? RUBY_DEBUG_IDE_VERSION
76

8-
FILES = Rake::FileList[
9-
'CHANGES',
7+
unless defined? FILES
8+
FILES = ['CHANGES',
109
'ChangeLog',
1110
'ChangeLog.archive',
1211
'MIT-LICENSE',
1312
'Rakefile',
14-
'bin/*',
15-
'lib/**/*',
16-
# 'test/**/*',
1713
'ext/mkrf_conf.rb'
18-
] unless defined? FILES
14+
]
15+
FILES.push(*Dir['bin/*'])
16+
FILES.push(*Dir['lib/**/*'])
17+
# 'test/**/*',
18+
end
1919

2020
Gem::Specification.new do |spec|
2121
spec.name = "ruby-debug-ide"
@@ -34,7 +34,7 @@ EOF
3434
spec.require_path = "lib"
3535
spec.bindir = "bin"
3636
spec.executables = ["rdebug-ide"]
37-
spec.files = FILES.to_a
37+
spec.files = FILES
3838

3939
spec.extensions << "ext/mkrf_conf.rb" unless ENV['NO_EXT']
4040
spec.add_dependency("rake", ">= 0.8.1")

0 commit comments

Comments
 (0)