yard-spellcheck 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ ### 0.1.3 / 2011-06-08
2
+
3
+ * Require yard ~> 0.6.
4
+ * Fixed an option parsing issue with the `-D` option.
5
+
1
6
  ### 0.1.2 / 2011-05-17
2
7
 
3
8
  * Added a work-around for FFI 1.0.8 not accepting frozen Strings.
data/README.md CHANGED
@@ -14,7 +14,7 @@ Spellcheck your YARD documentation.
14
14
 
15
15
  ## Requirements
16
16
 
17
- * [yard](http://github.com/lsegal/yard) ~> 0.6.0
17
+ * [yard](http://github.com/lsegal/yard) ~> 0.6
18
18
  * [ffi-hunspell](http://github.com/postmodern/ffi-hunspell) ~> 0.2.0
19
19
 
20
20
  ## Install
@@ -1,5 +1,5 @@
1
1
  name: yard-spellcheck
2
- version: 0.1.2
2
+ version: 0.1.3
3
3
  summary: Spellcheck your YARD documentat
4
4
  description:
5
5
  Adds the 'spellcheck' command to YARD, which will spellcheck every
@@ -12,9 +12,9 @@ homepage: http://github.com/postmodern/yard-spellcheck
12
12
  has_yard: true
13
13
 
14
14
  dependencies:
15
- yard: ~> 0.6.0
15
+ yard: ~> 0.6
16
16
  ffi-hunspell: ~> 0.2.0
17
17
 
18
18
  development_dependencies:
19
- ore-tasks: ~> 0.3.0
20
- rspec: ~> 2.4.0
19
+ ore-tasks: ~> 0.3
20
+ rspec: ~> 2.4
@@ -70,7 +70,7 @@ module YARD
70
70
  opts.separator description
71
71
  opts.separator ""
72
72
 
73
- opts.on('-D','--dict-dir','Dictionary directory') do |dir|
73
+ opts.on('-D','--dict-dir DIR','Dictionary directory') do |dir|
74
74
  FFI::Hunspell.directories << File.expand_path(dir)
75
75
  end
76
76
 
@@ -9,7 +9,7 @@ rescue NameError
9
9
  require 'ore/specification'
10
10
  retry
11
11
  rescue LoadError
12
- STDERR.puts "The 'yard-spellcheck.gemspec' file requires Ore."
12
+ STDERR.puts "The '#{__FILE__}' file requires Ore."
13
13
  STDERR.puts "Run `gem install ore-core` to install Ore."
14
14
  end
15
15
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: yard-spellcheck
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.2
5
+ version: 0.1.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Postmodern
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-05-17 00:00:00 Z
13
+ date: 2011-06-08 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: yard
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ~>
22
22
  - !ruby/object:Gem::Version
23
- version: 0.6.0
23
+ version: "0.6"
24
24
  type: :runtime
25
25
  version_requirements: *id001
26
26
  - !ruby/object:Gem::Dependency
@@ -42,7 +42,7 @@ dependencies:
42
42
  requirements:
43
43
  - - ~>
44
44
  - !ruby/object:Gem::Version
45
- version: 0.3.0
45
+ version: "0.3"
46
46
  type: :development
47
47
  version_requirements: *id003
48
48
  - !ruby/object:Gem::Dependency
@@ -53,7 +53,7 @@ dependencies:
53
53
  requirements:
54
54
  - - ~>
55
55
  - !ruby/object:Gem::Version
56
- version: 2.4.0
56
+ version: "2.4"
57
57
  type: :development
58
58
  version_requirements: *id004
59
59
  description: Adds the 'spellcheck' command to YARD, which will spellcheck every docstring within your documentation.