hoe-debugging 1.0.0 → 1.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/CHANGELOG.rdoc +6 -3
 - data/README.rdoc +11 -4
 - data/Rakefile +3 -1
 - data/lib/hoe/debugging.rb +1 -1
 - metadata +12 -8
 
    
        data/CHANGELOG.rdoc
    CHANGED
    
    
    
        data/README.rdoc
    CHANGED
    
    | 
         @@ -6,12 +6,16 @@ 
     | 
|
| 
       6 
6 
     | 
    
         | 
| 
       7 
7 
     | 
    
         
             
            A Hoe plugin to help you debug your codes. This plugin provides
         
     | 
| 
       8 
8 
     | 
    
         
             
            <tt>test:gdb</tt> and <tt>test:valgrind</tt> tasks (with a few
         
     | 
| 
       9 
     | 
    
         
            -
            variants). 
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
      
 9 
     | 
    
         
            +
            variants).
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            See the Hoe::Debugging module for a few configuration options.
         
     | 
| 
       11 
12 
     | 
    
         | 
| 
       12 
13 
     | 
    
         
             
            This plugin expects you to have <tt>gdb</tt> and <tt>valgrind</tt>
         
     | 
| 
       13 
14 
     | 
    
         
             
            available in your <tt>PATH</tt>.
         
     | 
| 
       14 
15 
     | 
    
         | 
| 
      
 16 
     | 
    
         
            +
            These tasks were extracted from nokogiri / johnson and originally written by
         
     | 
| 
      
 17 
     | 
    
         
            +
            ruby legend, {Mike Dalessio}[http://mike.daless.io].
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
       15 
19 
     | 
    
         
             
            == Examples
         
     | 
| 
       16 
20 
     | 
    
         | 
| 
       17 
21 
     | 
    
         
             
                # in your Rakefile
         
     | 
| 
         @@ -26,8 +30,11 @@ available in your <tt>PATH</tt>. 
     | 
|
| 
       26 
30 
     | 
    
         | 
| 
       27 
31 
     | 
    
         
             
            == License
         
     | 
| 
       28 
32 
     | 
    
         | 
| 
       29 
     | 
    
         
            -
            Copyright 2009 
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
      
 33 
     | 
    
         
            +
            Copyright 2009
         
     | 
| 
      
 34 
     | 
    
         
            +
             
     | 
| 
      
 35 
     | 
    
         
            +
            * John Barnette (jbarnette@rubyforge.org)
         
     | 
| 
      
 36 
     | 
    
         
            +
            * {Aaron Patterson}[http://tenderlovemaking.com/]
         
     | 
| 
      
 37 
     | 
    
         
            +
            * {Mike Dalessio}[http://mike.daless.io]
         
     | 
| 
       31 
38 
     | 
    
         | 
| 
       32 
39 
     | 
    
         
             
            Permission is hereby granted, free of charge, to any person obtaining
         
     | 
| 
       33 
40 
     | 
    
         
             
            a copy of this software and associated documentation files (the
         
     | 
    
        data/Rakefile
    CHANGED
    
    | 
         @@ -1,6 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            require "rubygems"
         
     | 
| 
       2 
2 
     | 
    
         
             
            require "hoe"
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
      
 4 
     | 
    
         
            +
            Hoe.plugin :git
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
       4 
6 
     | 
    
         
             
            Hoe.spec "hoe-debugging" do
         
     | 
| 
       5 
7 
     | 
    
         
             
              developer "John Barnette", "jbarnette@rubyforge.org"
         
     | 
| 
       6 
8 
     | 
    
         | 
| 
         @@ -8,5 +10,5 @@ Hoe.spec "hoe-debugging" do 
     | 
|
| 
       8 
10 
     | 
    
         
             
              self.history_file     = "CHANGELOG.rdoc"
         
     | 
| 
       9 
11 
     | 
    
         
             
              self.readme_file      = "README.rdoc"
         
     | 
| 
       10 
12 
     | 
    
         | 
| 
       11 
     | 
    
         
            -
              extra_deps << ["hoe", " 
     | 
| 
      
 13 
     | 
    
         
            +
              extra_deps << ["hoe", ">= 2.2.0"]
         
     | 
| 
       12 
14 
     | 
    
         
             
            end
         
     | 
    
        data/lib/hoe/debugging.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: hoe-debugging
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.0.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors: 
         
     | 
| 
       7 
7 
     | 
    
         
             
            - John Barnette
         
     | 
| 
         @@ -9,7 +9,7 @@ autorequire: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
11 
     | 
    
         | 
| 
       12 
     | 
    
         
            -
            date: 2009-06- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2009-06-26 00:00:00 -07:00
         
     | 
| 
       13 
13 
     | 
    
         
             
            default_executable: 
         
     | 
| 
       14 
14 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       15 
15 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
         @@ -18,9 +18,9 @@ dependencies: 
     | 
|
| 
       18 
18 
     | 
    
         
             
              version_requirement: 
         
     | 
| 
       19 
19 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement 
         
     | 
| 
       20 
20 
     | 
    
         
             
                requirements: 
         
     | 
| 
       21 
     | 
    
         
            -
                - -  
     | 
| 
      
 21 
     | 
    
         
            +
                - - ">="
         
     | 
| 
       22 
22 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       23 
     | 
    
         
            -
                    version: 2. 
     | 
| 
      
 23 
     | 
    
         
            +
                    version: 2.2.0
         
     | 
| 
       24 
24 
     | 
    
         
             
                version: 
         
     | 
| 
       25 
25 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       26 
26 
     | 
    
         
             
              name: hoe
         
     | 
| 
         @@ -30,16 +30,20 @@ dependencies: 
     | 
|
| 
       30 
30 
     | 
    
         
             
                requirements: 
         
     | 
| 
       31 
31 
     | 
    
         
             
                - - ">="
         
     | 
| 
       32 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       33 
     | 
    
         
            -
                    version: 2. 
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 2.3.1
         
     | 
| 
       34 
34 
     | 
    
         
             
                version: 
         
     | 
| 
       35 
35 
     | 
    
         
             
            description: |-
         
     | 
| 
       36 
36 
     | 
    
         
             
              A Hoe plugin to help you debug your codes. This plugin provides
         
     | 
| 
       37 
37 
     | 
    
         
             
              <tt>test:gdb</tt> and <tt>test:valgrind</tt> tasks (with a few
         
     | 
| 
       38 
     | 
    
         
            -
              variants). 
     | 
| 
       39 
     | 
    
         
            -
               
     | 
| 
      
 38 
     | 
    
         
            +
              variants).
         
     | 
| 
      
 39 
     | 
    
         
            +
              
         
     | 
| 
      
 40 
     | 
    
         
            +
              See the Hoe::Debugging module for a few configuration options.
         
     | 
| 
       40 
41 
     | 
    
         | 
| 
       41 
42 
     | 
    
         
             
              This plugin expects you to have <tt>gdb</tt> and <tt>valgrind</tt>
         
     | 
| 
       42 
43 
     | 
    
         
             
              available in your <tt>PATH</tt>.
         
     | 
| 
      
 44 
     | 
    
         
            +
              
         
     | 
| 
      
 45 
     | 
    
         
            +
              These tasks were extracted from nokogiri / johnson and originally written by
         
     | 
| 
      
 46 
     | 
    
         
            +
              ruby legend, {Mike Dalessio}[http://mike.daless.io].
         
     | 
| 
       43 
47 
     | 
    
         
             
            email: 
         
     | 
| 
       44 
48 
     | 
    
         
             
            - jbarnette@rubyforge.org
         
     | 
| 
       45 
49 
     | 
    
         
             
            executables: []
         
     | 
| 
         @@ -81,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       81 
85 
     | 
    
         
             
            requirements: []
         
     | 
| 
       82 
86 
     | 
    
         | 
| 
       83 
87 
     | 
    
         
             
            rubyforge_project: hoe-debugging
         
     | 
| 
       84 
     | 
    
         
            -
            rubygems_version: 1.3. 
     | 
| 
      
 88 
     | 
    
         
            +
            rubygems_version: 1.3.4
         
     | 
| 
       85 
89 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       86 
90 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       87 
91 
     | 
    
         
             
            summary: A Hoe plugin to help you debug your codes
         
     |