jugyo-d 1.0.0

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.
Files changed (4) hide show
  1. data/README.markdown +51 -0
  2. data/Rakefile +28 -0
  3. data/lib/d.rb +1 -0
  4. metadata +64 -0
data/README.markdown ADDED
@@ -0,0 +1,51 @@
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 jugyo-d --source http://gems.github.com
15
+
16
+ Synopsis
17
+ --------
18
+
19
+ require 'd'
20
+ d
21
+
22
+ Requirements
23
+ --------
24
+
25
+ * ruby-debug
26
+
27
+ License
28
+ --------
29
+
30
+ (The MIT License)
31
+
32
+ Copyright (c) 2008-2009 jugyo
33
+
34
+ Permission is hereby granted, free of charge, to any person obtaining
35
+ a copy of this software and associated documentation files (the
36
+ 'Software'), to deal in the Software without restriction, including
37
+ without limitation the rights to use, copy, modify, merge, publish,
38
+ distribute, sublicense, and/or sell copies of the Software, and to
39
+ permit persons to whom the Software is furnished to do so, subject to
40
+ the following conditions:
41
+
42
+ The above copyright notice and this permission notice shall be
43
+ included in all copies or substantial portions of the Software.
44
+
45
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
46
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
47
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
48
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
49
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
50
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
51
+ 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,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jugyo-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-16 00:00:00 -07: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
+ post_install_message:
40
+ rdoc_options: []
41
+
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: "0"
49
+ version:
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: "0"
55
+ version:
56
+ requirements: []
57
+
58
+ rubyforge_project: kerneld
59
+ rubygems_version: 1.2.0
60
+ signing_key:
61
+ specification_version: 2
62
+ summary: Kernel.d
63
+ test_files: []
64
+