sky-debug 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/Manifest +1 -1
  2. data/README.markdown +25 -0
  3. data/Rakefile +1 -1
  4. data/sky-debug.gemspec +4 -4
  5. metadata +6 -6
  6. data/README +0 -7
data/Manifest CHANGED
@@ -1,5 +1,5 @@
1
1
  CHANGELOG
2
2
  Manifest
3
- README
3
+ README.markdown
4
4
  Rakefile
5
5
  lib/sky-debug.rb
@@ -0,0 +1,25 @@
1
+ Trivial Debugger
2
+ ================
3
+
4
+ Synopsis
5
+ --------
6
+
7
+ With this gem you can easily invoke IRB prompt anywhere in your application.
8
+
9
+ You are required to do just two things:
10
+
11
+ 1. Include 'sky-debug' gem:
12
+
13
+ require 'rubygems'
14
+ require 'sky-debug'
15
+
16
+ 2. Call it anywhere you like to get an IRB prompt:
17
+
18
+ breakpoint binding
19
+
20
+ And you'll get an IRB prompt anywhere in your program with all the environment context.
21
+
22
+ Gem
23
+ ---
24
+
25
+ As I've said it is a gem. It is published on rubygems.org for your convenience. You can rake it yourself if you like. It depends on 'echoe' gem as a framework.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('sky-debug', '0.1.1') do |p|
5
+ Echoe.new('sky-debug', '0.1.2') do |p|
6
6
  p.description = "Sky Trivial Debugger"
7
7
  p.url = "http://uniqsys.ru/"
8
8
  p.author = "Uniq Systems"
@@ -2,17 +2,17 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sky-debug}
5
- s.version = "0.1.1"
5
+ s.version = "0.1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Uniq Systems"]
9
9
  s.date = %q{2010-10-24}
10
10
  s.description = %q{Sky Trivial Debugger}
11
11
  s.email = %q{ivan@uniqsystems.ru}
12
- s.extra_rdoc_files = ["CHANGELOG", "README", "lib/sky-debug.rb"]
13
- s.files = ["CHANGELOG", "Manifest", "README", "Rakefile", "lib/sky-debug.rb", "sky-debug.gemspec"]
12
+ s.extra_rdoc_files = ["CHANGELOG", "README.markdown", "lib/sky-debug.rb"]
13
+ s.files = ["CHANGELOG", "Manifest", "README.markdown", "Rakefile", "lib/sky-debug.rb", "sky-debug.gemspec"]
14
14
  s.homepage = %q{http://uniqsys.ru/}
15
- s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sky-debug", "--main", "README"]
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sky-debug", "--main", "README.markdown"]
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = %q{sky-debug}
18
18
  s.rubygems_version = %q{1.3.7}
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sky-debug
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Uniq Systems
@@ -27,12 +27,12 @@ extensions: []
27
27
 
28
28
  extra_rdoc_files:
29
29
  - CHANGELOG
30
- - README
30
+ - README.markdown
31
31
  - lib/sky-debug.rb
32
32
  files:
33
33
  - CHANGELOG
34
34
  - Manifest
35
- - README
35
+ - README.markdown
36
36
  - Rakefile
37
37
  - lib/sky-debug.rb
38
38
  - sky-debug.gemspec
@@ -47,7 +47,7 @@ rdoc_options:
47
47
  - --title
48
48
  - Sky-debug
49
49
  - --main
50
- - README
50
+ - README.markdown
51
51
  require_paths:
52
52
  - lib
53
53
  required_ruby_version: !ruby/object:Gem::Requirement
data/README DELETED
@@ -1,7 +0,0 @@
1
- Trivial debugger.
2
-
3
- Just call it anywhere you like like this:
4
-
5
- breakpoint binding
6
-
7
- And you'll get IRB prompt anywhere in your program with all the context.