verbs 2.0.9 → 2.0.10
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/Rakefile +0 -1
- data/VERSION +1 -1
- data/lib/verbs/conjugations.rb +443 -443
- data/lib/verbs/conjugator.rb +213 -213
- data/lib/verbs/verb.rb +40 -40
- data/lib/verbs/verblike.rb +32 -32
- data/lib/verbs.rb +16 -16
- data/test/test_verbs.rb +0 -7
- data/verbs.gemspec +51 -61
- metadata +36 -66
- data/.gitignore +0 -21
data/verbs.gemspec
CHANGED
@@ -1,61 +1,51 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
Gem::Specification.new do |s|
|
7
|
-
s.name = %q{verbs}
|
8
|
-
s.version = "2.0.
|
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{
|
13
|
-
s.description = %q{Conjugates most common english verbs for all persons in all tenses and all standard aspects (with active diathesis and indicative mood). Standard and exceptional spelling rules are obeyed.}
|
14
|
-
s.email = %q{andy@rossmeissl.net}
|
15
|
-
s.extra_rdoc_files = [
|
16
|
-
"LICENSE",
|
17
|
-
|
18
|
-
]
|
19
|
-
s.files = [
|
20
|
-
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
s.
|
36
|
-
s.
|
37
|
-
s.
|
38
|
-
|
39
|
-
s.
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
else
|
53
|
-
s.add_dependency(%q<andand>, [">= 1.3.1"])
|
54
|
-
s.add_dependency(%q<activesupport>, [">= 2.3.4"])
|
55
|
-
end
|
56
|
-
else
|
57
|
-
s.add_dependency(%q<andand>, [">= 1.3.1"])
|
58
|
-
s.add_dependency(%q<activesupport>, [">= 2.3.4"])
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{verbs}
|
8
|
+
s.version = "2.0.10"
|
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{2011-06-09}
|
13
|
+
s.description = %q{Conjugates most common english verbs for all persons in all tenses and all standard aspects (with active diathesis and 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
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"lib/verbs.rb",
|
26
|
+
"lib/verbs/conjugations.rb",
|
27
|
+
"lib/verbs/conjugator.rb",
|
28
|
+
"lib/verbs/verb.rb",
|
29
|
+
"lib/verbs/verblike.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.require_paths = ["lib"]
|
36
|
+
s.rubygems_version = %q{1.6.2}
|
37
|
+
s.summary = %q{English verb conjugation in Ruby}
|
38
|
+
|
39
|
+
if s.respond_to? :specification_version then
|
40
|
+
s.specification_version = 3
|
41
|
+
|
42
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
43
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.4"])
|
44
|
+
else
|
45
|
+
s.add_dependency(%q<activesupport>, [">= 2.3.4"])
|
46
|
+
end
|
47
|
+
else
|
48
|
+
s.add_dependency(%q<activesupport>, [">= 2.3.4"])
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
metadata
CHANGED
@@ -1,62 +1,39 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: verbs
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 2
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
version: 2.0.9
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.0.10
|
5
|
+
prerelease:
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
7
|
+
authors:
|
12
8
|
- Andy Rossmeissl
|
13
9
|
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
date: 2010-08-09 00:00:00 -05:00
|
12
|
+
date: 2011-06-09 00:00:00.000000000 -05:00
|
18
13
|
default_executable:
|
19
|
-
dependencies:
|
20
|
-
- !ruby/object:Gem::Dependency
|
21
|
-
name: andand
|
22
|
-
prerelease: false
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
-
requirements:
|
25
|
-
- - ">="
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
segments:
|
28
|
-
- 1
|
29
|
-
- 3
|
30
|
-
- 1
|
31
|
-
version: 1.3.1
|
32
|
-
type: :runtime
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
35
16
|
name: activesupport
|
36
|
-
|
37
|
-
|
38
|
-
requirements:
|
39
|
-
- -
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
segments:
|
42
|
-
- 2
|
43
|
-
- 3
|
44
|
-
- 4
|
17
|
+
requirement: &2159015740 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
45
22
|
version: 2.3.4
|
46
23
|
type: :runtime
|
47
|
-
|
48
|
-
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *2159015740
|
26
|
+
description: Conjugates most common english verbs for all persons in all tenses and
|
27
|
+
all standard aspects (with active diathesis and indicative mood). Standard and exceptional
|
28
|
+
spelling rules are obeyed.
|
49
29
|
email: andy@rossmeissl.net
|
50
30
|
executables: []
|
51
|
-
|
52
31
|
extensions: []
|
53
|
-
|
54
|
-
extra_rdoc_files:
|
32
|
+
extra_rdoc_files:
|
55
33
|
- LICENSE
|
56
34
|
- README.rdoc
|
57
|
-
files:
|
35
|
+
files:
|
58
36
|
- .document
|
59
|
-
- .gitignore
|
60
37
|
- LICENSE
|
61
38
|
- README.rdoc
|
62
39
|
- Rakefile
|
@@ -72,33 +49,26 @@ files:
|
|
72
49
|
has_rdoc: true
|
73
50
|
homepage: http://github.com/rossmeissl/verbs
|
74
51
|
licenses: []
|
75
|
-
|
76
52
|
post_install_message:
|
77
|
-
rdoc_options:
|
78
|
-
|
79
|
-
require_paths:
|
53
|
+
rdoc_options: []
|
54
|
+
require_paths:
|
80
55
|
- lib
|
81
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
requirements:
|
90
|
-
- -
|
91
|
-
- !ruby/object:Gem::Version
|
92
|
-
|
93
|
-
- 0
|
94
|
-
version: "0"
|
56
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
|
+
none: false
|
64
|
+
requirements:
|
65
|
+
- - ! '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
95
68
|
requirements: []
|
96
|
-
|
97
69
|
rubyforge_project:
|
98
|
-
rubygems_version: 1.
|
70
|
+
rubygems_version: 1.6.2
|
99
71
|
signing_key:
|
100
72
|
specification_version: 3
|
101
73
|
summary: English verb conjugation in Ruby
|
102
|
-
test_files:
|
103
|
-
- test/helper.rb
|
104
|
-
- test/test_verbs.rb
|
74
|
+
test_files: []
|