guessmethod 0.0.1 → 0.0.2

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/History.txt CHANGED
@@ -1,4 +1,4 @@
1
- == 0.0.1 2007-07-18
1
+ == 0.0.2 2007-07-18
2
2
 
3
- * 1 major enhancement:
4
- * Initial release
3
+ * 1 minor fix:
4
+ * Added HighLine as a dependency
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 = [] # An array of rubygem dependencies [name, version], e.g. [ ['active_support', '>= 1.3.1'] ]
81
+ p.extra_deps = [['highline', '>=1.2.7']] # 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 GuessMethod #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- TINY = 1
5
+ TINY = 2
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>Guess Method</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/guessmethod"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/guessmethod" class="numbers">0.0.1</a>
36
+ <a href="http://rubyforge.org/projects/guessmethod" class="numbers">0.0.2</a>
37
37
  </div>
38
38
  <h1>&#x2192; &#8216;guessmethod&#8217;</h1>
39
39
 
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: guessmethod
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
6
+ version: 0.0.2
7
7
  date: 2007-07-19 00:00:00 -06:00
8
8
  summary: hijacks method_missing to act as a spellchecker
9
9
  require_paths:
@@ -63,5 +63,13 @@ extensions: []
63
63
 
64
64
  requirements: []
65
65
 
66
- dependencies: []
67
-
66
+ dependencies:
67
+ - !ruby/object:Gem::Dependency
68
+ name: highline
69
+ version_requirement:
70
+ version_requirements: !ruby/object:Gem::Version::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 1.2.7
75
+ version: