linguistics_latin 0.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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +1 -0
- data/lib/linguistics_latin/phonographia.rb +114 -0
- data/lib/linguistics_latin/verb/classification_type/defective.rb +10 -0
- data/lib/linguistics_latin/verb/classification_type/deponent.rb +10 -0
- data/lib/linguistics_latin/verb/classification_type/impersonal.rb +10 -0
- data/lib/linguistics_latin/verb/classification_type/irregular.rb +10 -0
- data/lib/linguistics_latin/verb/classification_type/present_only.rb +10 -0
- data/lib/linguistics_latin/verb/classification_type/regular.rb +10 -0
- data/lib/linguistics_latin/verb/classification_type/semideponent.rb +10 -0
- data/lib/linguistics_latin/verb/classification_types.rb +25 -0
- data/lib/linguistics_latin/verb/constants.rb +198 -0
- data/lib/linguistics_latin/verb/irregulars.rb +3900 -0
- data/lib/linguistics_latin/verb/verb_types/first.rb +10 -0
- data/lib/linguistics_latin/verb/verb_types/fourth.rb +10 -0
- data/lib/linguistics_latin/verb/verb_types/irregular.rb +10 -0
- data/lib/linguistics_latin/verb/verb_types/second.rb +10 -0
- data/lib/linguistics_latin/verb/verb_types/third.rb +10 -0
- data/lib/linguistics_latin/verb/verb_types/third_io.rb +10 -0
- data/lib/linguistics_latin/verb/verb_types.rb +24 -0
- data/lib/linguistics_latin/verb.rb +4 -0
- data/lib/linguistics_latin/version.rb +5 -0
- data/lib/linguistics_latin.rb +10 -0
- data/linguistics_latin.gemspec +23 -0
- metadata +100 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
module Linguistics
|
2
|
+
module Latin
|
3
|
+
module Verb
|
4
|
+
module VerbTypes
|
5
|
+
class VerbType
|
6
|
+
def self.ordinal_name
|
7
|
+
self.to_s.split('::').last
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.ordinal_name_key
|
11
|
+
ordinal_name.to_sym
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
require_relative './verb_types/first'
|
20
|
+
require_relative './verb_types/second'
|
21
|
+
require_relative './verb_types/third'
|
22
|
+
require_relative './verb_types/third_io'
|
23
|
+
require_relative './verb_types/fourth'
|
24
|
+
require_relative './verb_types/irregular'
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'linguistics_latin/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "linguistics_latin"
|
8
|
+
spec.version = Linguistics::Latin::VERSION
|
9
|
+
spec.authors = ["Steven G. Harms"]
|
10
|
+
spec.email = ["steven.harms@gmail.com"]
|
11
|
+
spec.description = %q{Constants and grammatical definitions for the Latin language}
|
12
|
+
spec.summary = %q{A series of constants and universal behaviors that describe the verb grammar and phonographic rules of the Latin language.}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: linguistics_latin
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Steven G. Harms
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-10-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: Constants and grammatical definitions for the Latin language
|
42
|
+
email:
|
43
|
+
- steven.harms@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/linguistics_latin.rb
|
54
|
+
- lib/linguistics_latin/phonographia.rb
|
55
|
+
- lib/linguistics_latin/verb.rb
|
56
|
+
- lib/linguistics_latin/verb/classification_type/defective.rb
|
57
|
+
- lib/linguistics_latin/verb/classification_type/deponent.rb
|
58
|
+
- lib/linguistics_latin/verb/classification_type/impersonal.rb
|
59
|
+
- lib/linguistics_latin/verb/classification_type/irregular.rb
|
60
|
+
- lib/linguistics_latin/verb/classification_type/present_only.rb
|
61
|
+
- lib/linguistics_latin/verb/classification_type/regular.rb
|
62
|
+
- lib/linguistics_latin/verb/classification_type/semideponent.rb
|
63
|
+
- lib/linguistics_latin/verb/classification_types.rb
|
64
|
+
- lib/linguistics_latin/verb/constants.rb
|
65
|
+
- lib/linguistics_latin/verb/irregulars.rb
|
66
|
+
- lib/linguistics_latin/verb/verb_types.rb
|
67
|
+
- lib/linguistics_latin/verb/verb_types/first.rb
|
68
|
+
- lib/linguistics_latin/verb/verb_types/fourth.rb
|
69
|
+
- lib/linguistics_latin/verb/verb_types/irregular.rb
|
70
|
+
- lib/linguistics_latin/verb/verb_types/second.rb
|
71
|
+
- lib/linguistics_latin/verb/verb_types/third.rb
|
72
|
+
- lib/linguistics_latin/verb/verb_types/third_io.rb
|
73
|
+
- lib/linguistics_latin/version.rb
|
74
|
+
- linguistics_latin.gemspec
|
75
|
+
homepage: ''
|
76
|
+
licenses:
|
77
|
+
- MIT
|
78
|
+
metadata: {}
|
79
|
+
post_install_message:
|
80
|
+
rdoc_options: []
|
81
|
+
require_paths:
|
82
|
+
- lib
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
84
|
+
requirements:
|
85
|
+
- - '>='
|
86
|
+
- !ruby/object:Gem::Version
|
87
|
+
version: '0'
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
89
|
+
requirements:
|
90
|
+
- - '>='
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '0'
|
93
|
+
requirements: []
|
94
|
+
rubyforge_project:
|
95
|
+
rubygems_version: 2.0.2
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: A series of constants and universal behaviors that describe the verb grammar
|
99
|
+
and phonographic rules of the Latin language.
|
100
|
+
test_files: []
|