verbs 1.0.0 → 1.0.1
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/README.rdoc +19 -10
- data/VERSION +1 -1
- data/verbs.gemspec +54 -0
- metadata +2 -1
data/README.rdoc
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
= verbs
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Conjugates most common english verbs for all persons in present and past tense (active diathesis, indicative mood). Standard and exceptional spelling rules are obeyed.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
>> Verbs::Conjugator.conjugate :be, :tense => :past, :person => :second, :plurality => :singular
|
|
6
|
+
=> :were
|
|
7
|
+
>> Verbs::Conjugator.conjugate :break, :tense => :past, :person => :second, :plurality => :singular
|
|
8
|
+
=> :broke
|
|
9
|
+
>> Verbs::Conjugator.conjugate :fly, :tense => :present, :person => :third, :plurality => :singular
|
|
10
|
+
=> :flies
|
|
11
|
+
>> Verbs::Conjugator.conjugate :ship, :tense => :past, :person => :second, :plurality => :singular
|
|
12
|
+
=> :shipped
|
|
13
|
+
>> Verbs::Conjugator.conjugate :hoe, :tense => :past, :person => :second, :plurality => :singular
|
|
14
|
+
=> :hoed
|
|
15
|
+
>> Verbs::Conjugator.conjugate :coax, :tense => :present, :person => :second, :plurality => :singular
|
|
16
|
+
=> :coax
|
|
17
|
+
|
|
18
|
+
== Installation
|
|
19
|
+
|
|
20
|
+
The gem is hosted at http://gemcutter.org/gems/verbs
|
|
21
|
+
|
|
22
|
+
gem install verbs
|
|
14
23
|
|
|
15
24
|
== Copyright
|
|
16
25
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/verbs.gemspec
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
|
+
# -*- encoding: utf-8 -*-
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |s|
|
|
7
|
+
s.name = %q{verbs}
|
|
8
|
+
s.version = "1.0.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Andy Rossmeissl"]
|
|
12
|
+
s.date = %q{2009-11-25}
|
|
13
|
+
s.description = %q{Conjugates most common english verbs for all persons in present and past tense (active diathesis, indicative mood). Standard and exceptional spelling rules are obeyed.}
|
|
14
|
+
s.email = %q{andy@rossmeissl.net}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION",
|
|
26
|
+
"lib/verbs.rb",
|
|
27
|
+
"lib/verbs/conjugations.rb",
|
|
28
|
+
"lib/verbs/conjugator.rb",
|
|
29
|
+
"lib/verbs/verb.rb",
|
|
30
|
+
"test/helper.rb",
|
|
31
|
+
"test/test_verbs.rb",
|
|
32
|
+
"verbs.gemspec"
|
|
33
|
+
]
|
|
34
|
+
s.homepage = %q{http://github.com/rossmeissl/verbs}
|
|
35
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
36
|
+
s.require_paths = ["lib"]
|
|
37
|
+
s.rubygems_version = %q{1.3.5}
|
|
38
|
+
s.summary = %q{English verb conjugation in Ruby}
|
|
39
|
+
s.test_files = [
|
|
40
|
+
"test/helper.rb",
|
|
41
|
+
"test/test_verbs.rb"
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
if s.respond_to? :specification_version then
|
|
45
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
46
|
+
s.specification_version = 3
|
|
47
|
+
|
|
48
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
49
|
+
else
|
|
50
|
+
end
|
|
51
|
+
else
|
|
52
|
+
end
|
|
53
|
+
end
|
|
54
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: verbs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Rossmeissl
|
|
@@ -35,6 +35,7 @@ files:
|
|
|
35
35
|
- lib/verbs/verb.rb
|
|
36
36
|
- test/helper.rb
|
|
37
37
|
- test/test_verbs.rb
|
|
38
|
+
- verbs.gemspec
|
|
38
39
|
has_rdoc: true
|
|
39
40
|
homepage: http://github.com/rossmeissl/verbs
|
|
40
41
|
licenses: []
|