d 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +55 -0
- data/Rakefile +28 -0
- data/lib/d.rb +1 -0
- metadata +66 -0
data/README.markdown
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
d
|
2
|
+
========
|
3
|
+
|
4
|
+
[http://github.com/jugyo/d/tree/master](http://github.com/jugyo/d/tree/master)
|
5
|
+
|
6
|
+
Description
|
7
|
+
--------
|
8
|
+
|
9
|
+
The Kernel.d starts a debugger of 'ruby-debug'.
|
10
|
+
|
11
|
+
Install
|
12
|
+
--------
|
13
|
+
|
14
|
+
sudo gem install d
|
15
|
+
|
16
|
+
or
|
17
|
+
|
18
|
+
sudo gem install jugyo-d --source http://gems.github.com
|
19
|
+
|
20
|
+
Synopsis
|
21
|
+
--------
|
22
|
+
|
23
|
+
require 'd'
|
24
|
+
d
|
25
|
+
|
26
|
+
Requirements
|
27
|
+
--------
|
28
|
+
|
29
|
+
* ruby-debug
|
30
|
+
|
31
|
+
License
|
32
|
+
--------
|
33
|
+
|
34
|
+
(The MIT License)
|
35
|
+
|
36
|
+
Copyright (c) 2008-2009 jugyo
|
37
|
+
|
38
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
39
|
+
a copy of this software and associated documentation files (the
|
40
|
+
'Software'), to deal in the Software without restriction, including
|
41
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
42
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
43
|
+
permit persons to whom the Software is furnished to do so, subject to
|
44
|
+
the following conditions:
|
45
|
+
|
46
|
+
The above copyright notice and this permission notice shall be
|
47
|
+
included in all copies or substantial portions of the Software.
|
48
|
+
|
49
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
50
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
51
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
52
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
53
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
54
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
55
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/Rakefile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
$:.unshift File.dirname(__FILE__) + '/lib/'
|
2
|
+
|
3
|
+
desc 'Generate gemspec'
|
4
|
+
task :gemspec do |t|
|
5
|
+
open('d.gemspec', "wb" ) do |file|
|
6
|
+
file << <<-EOS
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = 'd'
|
9
|
+
s.version = '1.0.0'
|
10
|
+
s.summary = "Kernel.d"
|
11
|
+
s.description = "module Kernel; def d; require 'ruby-debug'; debugger; end; end"
|
12
|
+
s.files = %w( lib/d.rb README.markdown Rakefile )
|
13
|
+
s.add_dependency("ruby-debug", ">= 0.10.3")
|
14
|
+
s.author = 'jugyo'
|
15
|
+
s.email = 'jugyo.org@gmail.com'
|
16
|
+
s.homepage = 'http://github.com/jugyo/d'
|
17
|
+
s.rubyforge_project = 'kernelg'
|
18
|
+
s.has_rdoc = false
|
19
|
+
end
|
20
|
+
EOS
|
21
|
+
end
|
22
|
+
puts "Generate gemspec"
|
23
|
+
end
|
24
|
+
|
25
|
+
desc 'Generate gem'
|
26
|
+
task :gem => :gemspec do |t|
|
27
|
+
system 'gem', 'build', 'd.gemspec'
|
28
|
+
end
|
data/lib/d.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
module Kernel; def d; require 'ruby-debug'; debugger; end; end
|
metadata
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: d
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- jugyo
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-05-22 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: ruby-debug
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.10.3
|
24
|
+
version:
|
25
|
+
description: module Kernel; def d; require 'ruby-debug'; debugger; end; end
|
26
|
+
email: jugyo.org@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- lib/d.rb
|
35
|
+
- README.markdown
|
36
|
+
- Rakefile
|
37
|
+
has_rdoc: false
|
38
|
+
homepage: http://github.com/jugyo/d
|
39
|
+
licenses: []
|
40
|
+
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: "0"
|
51
|
+
version:
|
52
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
version:
|
58
|
+
requirements: []
|
59
|
+
|
60
|
+
rubyforge_project: kernelg
|
61
|
+
rubygems_version: 1.3.2
|
62
|
+
signing_key:
|
63
|
+
specification_version: 3
|
64
|
+
summary: Kernel.d
|
65
|
+
test_files: []
|
66
|
+
|