dcov 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +7 -1
  2. data/Rakefile +1 -1
  3. data/lib/dcov/version.rb +1 -1
  4. metadata +4 -12
@@ -21,6 +21,12 @@ No serious enhancements other than a pretty major bug fix and a new version numb
21
21
  * Added quality analysis
22
22
 
23
23
  == 0.2.1
24
+
24
25
  * 2 minor changes
25
26
  * Removed Ruport dependency; too much baggage!
26
- * Tweaked a few things
27
+ * Tweaked a few things
28
+
29
+ == 0.2.2
30
+
31
+ * 1 minor bugfix
32
+ * Removed Ruport from the gemspec; I'll add it as an option when I get time to really work on the generators.
data/Rakefile CHANGED
@@ -78,7 +78,7 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
78
78
 
79
79
  # == Optional
80
80
  p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
81
- p.extra_deps = [['ruport', '>= 0.0.1']] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
81
+ p.extra_deps = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
82
82
  #p.spec_extras = {} # A hash of extra values to set in the gemspec.
83
83
  end
84
84
 
@@ -2,7 +2,7 @@ module Dcov #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: dcov
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.1
7
- date: 2007-09-16 00:00:00 -04:00
6
+ version: 0.2.2
7
+ date: 2007-09-17 00:00:00 -04:00
8
8
  summary: A documentation analysis tool for Ruby.
9
9
  require_paths:
10
10
  - lib
@@ -66,13 +66,5 @@ extensions: []
66
66
 
67
67
  requirements: []
68
68
 
69
- dependencies:
70
- - !ruby/object:Gem::Dependency
71
- name: ruport
72
- version_requirement:
73
- version_requirements: !ruby/object:Gem::Version::Requirement
74
- requirements:
75
- - - ">="
76
- - !ruby/object:Gem::Version
77
- version: 0.0.1
78
- version:
69
+ dependencies: []
70
+