hoe-debugging 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.rdoc CHANGED
@@ -1,6 +1,9 @@
1
- === 1.0.0 / 2009-06-22
1
+ === 1.0.1 / 2009-06-26
2
2
 
3
- * 1 major enhancement
3
+ * Fix Hoe dependency version.
4
+ * Activate the hoe-git plugin.
5
+ * Fix docs, give Mike some well-deserved credit!
4
6
 
5
- * Birthday!
7
+ === 1.0.0 / 2009-06-22
6
8
 
9
+ * Birthday!
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). See the Hoe::Debugging module for a few configuration
10
- options.
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 John Barnette (jbarnette@rubyforge.org),
30
- Aaron Patterson (apatterson@rubyforge.org)
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", "~> 2.1.0"]
13
+ extra_deps << ["hoe", ">= 2.2.0"]
12
14
  end
data/lib/hoe/debugging.rb CHANGED
@@ -8,7 +8,7 @@ class Hoe #:nodoc:
8
8
  # * <tt>test:valgrind:mem0</tt>
9
9
 
10
10
  module Debugging
11
- VERSION = "1.0.0" #:nodoc:
11
+ VERSION = "1.0.1" #:nodoc:
12
12
 
13
13
  ##
14
14
  # Optional: Used to add flags to GDB. [default: <tt>[]</tt>]
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.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-22 00:00:00 -07:00
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.1.0
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.2.0
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). See the Hoe::Debugging module for a few configuration
39
- options.
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.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