yard 0.6.6 → 0.6.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of yard might be problematic. Click here for more details.

data/ChangeLog CHANGED
@@ -1,5 +1,10 @@
1
1
  2011-04-06 Loren Segal <lsegal@soen.ca>
2
2
 
3
+ * ChangeLog, README.md, lib/yard.rb, lib/yard/rubygems/specification.rb:
4
+ 0.6.7 release (fix issue with gem plugin)
5
+
6
+ * yard.gemspec: Fix gemspec date
7
+
3
8
  * ChangeLog, README.md, lib/yard.rb: 0.6.6 release
4
9
 
5
10
  * lib/yard/templates/helpers/markup_helper.rb: Remove loading of 'rdoc' lib
data/README.md CHANGED
@@ -8,7 +8,7 @@ YARD: Yay! A Ruby Documentation Tool
8
8
  **Contributors**: See Contributors section below
9
9
  **Copyright**: 2007-2011
10
10
  **License**: MIT License
11
- **Latest Version**: 0.6.6 (codename "No codename")
11
+ **Latest Version**: 0.6.7 (codename "No codename")
12
12
  **Release Date**: April 6th 2011
13
13
 
14
14
  Synopsis
@@ -289,6 +289,9 @@ More options can be seen by typing `yard-graph --help`, but here is an example:
289
289
  Changelog
290
290
  ---------
291
291
 
292
+ - **April.6.11**: 0.6.7 release
293
+ - Fix has_rdoc gem specification issue with new RubyGems plugin API (oops!)
294
+
292
295
  - **April.6.11**: 0.6.6 release
293
296
  - Fix error message when RDoc is not present (#270)
294
297
  - Add markup type 'none' to perform basic HTML translation (fallback when RDoc is not present)
data/lib/yard.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module YARD
2
- VERSION = "0.6.6"
2
+ VERSION = "0.6.7"
3
3
 
4
4
  # The root path for YARD source libraries
5
5
  ROOT = File.expand_path(File.dirname(__FILE__))
@@ -36,6 +36,6 @@ class Gem::Specification
36
36
 
37
37
  @@default_value[:has_rdoc] = true if defined?(@@default_value)
38
38
  @@attributes << 'has_rdoc' if defined?(@@attributes)
39
- @@non_nil_attributes << 'has_rdoc' if defined?(@@non_nil_attributes)
39
+ @@nil_attributes << 'has_rdoc' if defined?(@@nil_attributes)
40
40
  end
41
41
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: yard
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.6.6
5
+ version: 0.6.7
6
6
  platform: ruby
7
7
  authors:
8
8
  - Loren Segal