ruby-debug-wrapper 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +49 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/ruby-debug-wrapper.rb +92 -0
- data/ruby-debug-wrapper.gemspec +51 -0
- data/test/helper.rb +9 -0
- data/test/test_ruby-debug-wrapper.rb +7 -0
- metadata +78 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 Pavel Chipiga
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
= ruby-debug-wrapper
|
2
|
+
|
3
|
+
When you debuging Rails 3 application (which uses Bundler) and trying different ruby versions with RVM you have following problem: you should switch your Gemfile between ruby-debug and ruby-debug19 gems to work with 1.8 and 1.9 Rubies. This gem solves the problem.
|
4
|
+
|
5
|
+
Follow this steps:
|
6
|
+
|
7
|
+
1. Install ruby-debug gem for each ruby version you will use. For example:
|
8
|
+
# rvm use system
|
9
|
+
# gem install ruby-debug
|
10
|
+
# rvm use ree@rails3
|
11
|
+
# gem install ruby-debug -- --with-ruby-include=$rvm_path/src/ree-1.8.7-2010.02/
|
12
|
+
# rvm use ruby-1.9.2-head@rails3
|
13
|
+
# gem install ruby-debug19 -- --with-ruby-include=$rvm_path/src/ruby-1.9.2-head/
|
14
|
+
|
15
|
+
2. Add to Gemfile this line
|
16
|
+
# gem 'ruby-debug-wrapper', :group => :development
|
17
|
+
|
18
|
+
3. Run bundler
|
19
|
+
# bundle install
|
20
|
+
|
21
|
+
4. Now you can run server with debugger and switch ruby version without changing Gemfile each time:
|
22
|
+
# rvm use system
|
23
|
+
# script/rails s -u
|
24
|
+
# rvm use ree@rails3
|
25
|
+
# script/rails s -u
|
26
|
+
# rvm use ruby-1.9.2-head@rails3
|
27
|
+
# script/rails s -u
|
28
|
+
|
29
|
+
Tested with Rails 3.0.0.beta4 and MacOSX 10.6.4 only.
|
30
|
+
|
31
|
+
== TODO
|
32
|
+
|
33
|
+
* Tests.
|
34
|
+
* Improve Bundler/RVM detection.
|
35
|
+
* Automatically install ruby-debug or ruby-debug19 gem if missing.
|
36
|
+
|
37
|
+
== Note on Patches/Pull Requests
|
38
|
+
|
39
|
+
* Fork the project.
|
40
|
+
* Make your feature addition or bug fix.
|
41
|
+
* Add tests for it. This is important so I don't break it in a
|
42
|
+
future version unintentionally.
|
43
|
+
* Commit, do not mess with rakefile, version, or history.
|
44
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
45
|
+
* Send me a pull request. Bonus points for topic branches.
|
46
|
+
|
47
|
+
== Copyright
|
48
|
+
|
49
|
+
Copyright (c) 2010 Pavel Chipiga. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "ruby-debug-wrapper"
|
8
|
+
gem.summary = %Q{Wrapper which simplify debugging across different Ruby versions}
|
9
|
+
gem.description = %Q{Just wrapper which simplify debugging with ruby-debug over Bundler + RVM with different Ruby versions}
|
10
|
+
gem.email = "pavel.chipiga@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/chipiga/ruby-debug-wrapper"
|
12
|
+
gem.authors = ["Pavel Chipiga"]
|
13
|
+
# gem.add_development_dependency "ruby-debug", ">= 0"
|
14
|
+
# gem.add_development_dependency "ruby-debug19", ">= 0"
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
task :test => :check_dependencies
|
42
|
+
|
43
|
+
task :default => :test
|
44
|
+
|
45
|
+
require 'rake/rdoctask'
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
48
|
+
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
50
|
+
rdoc.title = "ruby-debug-wrapper #{version}"
|
51
|
+
rdoc.rdoc_files.include('README*')
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
53
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
@@ -0,0 +1,92 @@
|
|
1
|
+
class RubyDebugWrapper
|
2
|
+
def initialize
|
3
|
+
@gems = %w{ruby-debug ruby-debug-base columnize}
|
4
|
+
@gems << (RUBY_VERSION > '1.9' ? 'linecache19' : 'linecache')
|
5
|
+
if (Gem.all_load_paths - $LOAD_PATH).empty? # TODO improve bundler check
|
6
|
+
@path = Gem.default_path
|
7
|
+
@dir = Gem.default_dir
|
8
|
+
else
|
9
|
+
@path = Gem.path
|
10
|
+
@dir = Gem.dir
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def prepare
|
15
|
+
@gems.each do |gem|
|
16
|
+
if file = find_files(gem).first
|
17
|
+
dir = File.dirname(file)
|
18
|
+
$LOAD_PATH << dir unless $LOAD_PATH.include?(dir)
|
19
|
+
else # giveup
|
20
|
+
# abort(gem)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.prepare
|
26
|
+
self.new.prepare
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
def find_files(path)
|
32
|
+
load_path_files = all_load_paths.map do |load_path|
|
33
|
+
files = Dir["#{File.expand_path path, load_path}#{Gem.suffix_pattern}"]
|
34
|
+
|
35
|
+
files.select do |load_path_file|
|
36
|
+
File.file? load_path_file.untaint
|
37
|
+
end
|
38
|
+
end.flatten
|
39
|
+
|
40
|
+
specs = searcher.find_all path
|
41
|
+
|
42
|
+
specs_files = specs.map do |spec|
|
43
|
+
searcher.matching_files spec, path
|
44
|
+
end.flatten
|
45
|
+
|
46
|
+
(load_path_files + specs_files).flatten.uniq
|
47
|
+
end
|
48
|
+
|
49
|
+
def searcher
|
50
|
+
Gem.searcher
|
51
|
+
end
|
52
|
+
|
53
|
+
def all_load_paths
|
54
|
+
result = []
|
55
|
+
|
56
|
+
@path.each do |gemdir|
|
57
|
+
each_load_path all_partials(gemdir) do |load_path|
|
58
|
+
result << load_path
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
result
|
63
|
+
end
|
64
|
+
|
65
|
+
def all_partials(gemdir)
|
66
|
+
Dir[File.join(gemdir, 'gems/*')]
|
67
|
+
end
|
68
|
+
|
69
|
+
def each_load_path(partials)
|
70
|
+
partials.each do |gp|
|
71
|
+
base = File.basename(gp)
|
72
|
+
specfn = File.join(@dir, "specifications", base + ".gemspec")
|
73
|
+
if File.exist?(specfn)
|
74
|
+
spec = eval(File.read(specfn))
|
75
|
+
spec.require_paths.each do |rp|
|
76
|
+
yield(File.join(gp, rp))
|
77
|
+
end
|
78
|
+
else
|
79
|
+
filename = File.join(gp, 'lib')
|
80
|
+
yield(filename) if File.exist?(filename)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
# abort "#{Gem.path.inspect}\n#{Gem.default_path.inspect}"
|
87
|
+
# abort "#{Gem.dir.inspect}\n#{Gem.default_dir.inspect}"
|
88
|
+
# before = $LOAD_PATH.dup
|
89
|
+
RubyDebugWrapper.prepare
|
90
|
+
# abort "Diff: #{($LOAD_PATH - before).inspect}"
|
91
|
+
|
92
|
+
require 'ruby-debug'
|
@@ -0,0 +1,51 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{ruby-debug-wrapper}
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Pavel Chipiga"]
|
12
|
+
s.date = %q{2010-06-23}
|
13
|
+
s.description = %q{Just wrapper which simplify debugging with ruby-debug over Bundler + RVM with different Ruby versions}
|
14
|
+
s.email = %q{pavel.chipiga@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/ruby-debug-wrapper.rb",
|
27
|
+
"ruby-debug-wrapper.gemspec",
|
28
|
+
"test/helper.rb",
|
29
|
+
"test/test_ruby-debug-wrapper.rb"
|
30
|
+
]
|
31
|
+
s.homepage = %q{http://github.com/chipiga/ruby-debug-wrapper}
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
+
s.require_paths = ["lib"]
|
34
|
+
s.rubygems_version = %q{1.3.7}
|
35
|
+
s.summary = %q{Wrapper which simplify debugging across different Ruby versions}
|
36
|
+
s.test_files = [
|
37
|
+
"test/helper.rb",
|
38
|
+
"test/test_ruby-debug-wrapper.rb"
|
39
|
+
]
|
40
|
+
|
41
|
+
if s.respond_to? :specification_version then
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
|
+
s.specification_version = 3
|
44
|
+
|
45
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
46
|
+
else
|
47
|
+
end
|
48
|
+
else
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ruby-debug-wrapper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Pavel Chipiga
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-06-23 00:00:00 +03:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: Just wrapper which simplify debugging with ruby-debug over Bundler + RVM with different Ruby versions
|
23
|
+
email: pavel.chipiga@gmail.com
|
24
|
+
executables: []
|
25
|
+
|
26
|
+
extensions: []
|
27
|
+
|
28
|
+
extra_rdoc_files:
|
29
|
+
- LICENSE
|
30
|
+
- README.rdoc
|
31
|
+
files:
|
32
|
+
- .document
|
33
|
+
- .gitignore
|
34
|
+
- LICENSE
|
35
|
+
- README.rdoc
|
36
|
+
- Rakefile
|
37
|
+
- VERSION
|
38
|
+
- lib/ruby-debug-wrapper.rb
|
39
|
+
- ruby-debug-wrapper.gemspec
|
40
|
+
- test/helper.rb
|
41
|
+
- test/test_ruby-debug-wrapper.rb
|
42
|
+
has_rdoc: true
|
43
|
+
homepage: http://github.com/chipiga/ruby-debug-wrapper
|
44
|
+
licenses: []
|
45
|
+
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options:
|
48
|
+
- --charset=UTF-8
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
hash: 3
|
57
|
+
segments:
|
58
|
+
- 0
|
59
|
+
version: "0"
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
hash: 3
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.3.7
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: Wrapper which simplify debugging across different Ruby versions
|
76
|
+
test_files:
|
77
|
+
- test/helper.rb
|
78
|
+
- test/test_ruby-debug-wrapper.rb
|