pdb 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/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in pdb.gemspec
4
+ gemspec
5
+
6
+ group :development do
7
+ gem 'rspec'
8
+ end
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Christopher M. Hobbs
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,43 @@
1
+ # pdb
2
+
3
+ Simple print debugging
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'pdb'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install pdb
18
+
19
+ ## Usage
20
+
21
+ require 'pdb'
22
+ @pdb = true
23
+
24
+ class Maths
25
+ include Pdb
26
+
27
+ def self.adder(n, k)
28
+ debug "adder values", [n, k]
29
+ s = n + k
30
+ end
31
+ end
32
+
33
+ Maths.adder(2, 3)
34
+ => "== DEBUG: adder values"
35
+ "[2, 3]"
36
+ 5
37
+
38
+ ## Laundry List
39
+
40
+ - Build tests
41
+ - Port debug code from delayed po processor library
42
+ - Add awesome_print support
43
+ - Add inspect option
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
data/lib/pdb.rb ADDED
@@ -0,0 +1,10 @@
1
+ require "pdb/version"
2
+
3
+ module Pdb
4
+ @pdb = false
5
+
6
+ def debug(msg, obj = nil)
7
+ msg = ("== DEBUG: #{msg}") unless (msg.class != String)
8
+ $stderr.puts "#{msg}\n#{obj}" if @pdb == true
9
+ end
10
+ end
@@ -0,0 +1,3 @@
1
+ module Pdb
2
+ VERSION = "0.0.1"
3
+ end
data/pdb.gemspec ADDED
@@ -0,0 +1,17 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/pdb/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Christopher M. Hobbs"]
6
+ gem.email = ["cmhobbs@acm.org"]
7
+ gem.description = %{simple print debugging}
8
+ gem.summary = %q{print debugger class with easily noticeable output}
9
+ gem.homepage = "http://github.com/nilmethod/pdb"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "pdb"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Pdb::VERSION
17
+ end
data/spec/pdb_spec.rb ADDED
@@ -0,0 +1,24 @@
1
+ require 'pdb'
2
+ require 'spec_helper'
3
+
4
+ describe Pdb do
5
+ it "should have a VERSION constant" do
6
+ subject.const_defined?('VERSION').should == true
7
+ end
8
+
9
+ it "should print debug messages if debug option is true" do
10
+ @pdb = true
11
+ n = 2
12
+
13
+ #$stderr.should_receive(:puts).with(/== DEBUG: number/)
14
+ $stderr.should_receive(:puts).with(/== DEBUG: number\n2/)
15
+ debug("number", n)
16
+ end
17
+
18
+ it "should supress prints if debug is false" do
19
+ n = 2
20
+
21
+ $stderr.should_not_receive(:puts)
22
+ debug("number", n)
23
+ end
24
+ end
@@ -0,0 +1,4 @@
1
+ require 'rspec'
2
+ require 'pdb/version'
3
+
4
+ include Pdb
metadata ADDED
@@ -0,0 +1,57 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pdb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Christopher M. Hobbs
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-27 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: simple print debugging
15
+ email:
16
+ - cmhobbs@acm.org
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - LICENSE
24
+ - README.md
25
+ - Rakefile
26
+ - lib/pdb.rb
27
+ - lib/pdb/version.rb
28
+ - pdb.gemspec
29
+ - spec/pdb_spec.rb
30
+ - spec/spec_helper.rb
31
+ homepage: http://github.com/nilmethod/pdb
32
+ licenses: []
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ! '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ none: false
45
+ requirements:
46
+ - - ! '>='
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ requirements: []
50
+ rubyforge_project:
51
+ rubygems_version: 1.8.23
52
+ signing_key:
53
+ specification_version: 3
54
+ summary: print debugger class with easily noticeable output
55
+ test_files:
56
+ - spec/pdb_spec.rb
57
+ - spec/spec_helper.rb