latinverb_infinitives 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 4a381782c6853f069baa580b5d7d2e11e43c4f58
4
+ data.tar.gz: 71446dce6ead799380684b297ad30004dccd0c7a
5
+ SHA512:
6
+ metadata.gz: 0f814cb654f7affa9d24e6e59f85d6053ed5349b81aef5d370e4a2a4bea2db905374e14591be9b06df9ee060cbffb4020c878955eb55ee8c5d4793a7aebf3d4a
7
+ data.tar.gz: 49ad237f4be6f5f0c36c6cd3392c7896de5a2f28bc4245b9586620e1b20178c08f4a6f18437ebcc40266f1428fb07abe176859278d8763ea92ae8a5f112a312a
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in latinverb_infinitives.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Steven G. Harms
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # LatinverbInfinitives
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'latinverb_infinitives'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install latinverb_infinitives
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/latinverb_infinitives/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,22 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'latinverb_infinitives/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "latinverb_infinitives"
8
+ spec.version = LatinverbInfinitives::VERSION
9
+ spec.authors = ["Steven G. Harms"]
10
+ spec.email = ["steven.harms@gmail.com"]
11
+ spec.summary = %q{Component to construct infinitives in LatinVerb}
12
+ spec.homepage = ""
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.add_development_dependency "bundler", "~> 1.6"
21
+ spec.add_development_dependency "rake"
22
+ end
@@ -0,0 +1,7 @@
1
+ require "forwardable"
2
+
3
+ require "latinverb_infinitives/version"
4
+ require "latinverb_infinitives/infinitives_factory"
5
+ require "latinverb_infinitives/infinitives_factory/infinitivizer"
6
+ require "latinverb_infinitives/infinitives_factory/deponent_infinitivizer"
7
+ require "latinverb_infinitives/infinitives_factory/passive_infinitive_factory"
@@ -0,0 +1,46 @@
1
+ module Linguistics
2
+ module Latin
3
+ module Verb
4
+ class LatinVerb
5
+ INFINITIVE_METHODS = [
6
+ :future_active_infinitive,
7
+ :future_passive_infinitive,
8
+ :perfect_active_infinitive,
9
+ :perfect_passive_infinitive,
10
+ :present_passive_infinitive
11
+ ]
12
+ class InfinitivesFactory
13
+ extend Forwardable
14
+ def_delegators :@verb, :irregular?, :deponent?, :semideponent?, :original_string
15
+
16
+ def initialize(verb)
17
+ @verb = verb
18
+ end
19
+
20
+ def infinitives
21
+ return irregular if irregular?
22
+ if deponent? || semideponent?
23
+ deponent
24
+ else
25
+ standard
26
+ end
27
+ end
28
+
29
+ private
30
+
31
+ def irregular
32
+ Linguistics::Latin::Verb::LatinVerb::IrregularInfinitivesRetriever.new(@verb.original_string).retrieve
33
+ end
34
+
35
+ def deponent
36
+ DeponentInfinitivizer.new(@verb)
37
+ end
38
+
39
+ def standard
40
+ Infinitivizer.new(@verb)
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,44 @@
1
+ module Linguistics
2
+ module Latin
3
+ module Verb
4
+ class LatinVerb
5
+ class DeponentInfinitivizer < Infinitivizer
6
+ extend Forwardable
7
+ def_delegators :@verb, :original_string
8
+
9
+ def initialize(verb)
10
+ super
11
+ @proxyVerb = LatinVerb.new(DeponentStringDeriver.new(original_string).proxy_string, :proxy_verb => true)
12
+ end
13
+
14
+ def infinitives
15
+ {
16
+ :present_active_infinitive => present_active_infinitive,
17
+ :perfect_active_infinitive => perfect_active_infinitive,
18
+ :future_active_infinitive => future_active_infinitive,
19
+ :present_passive_infinitive => present_passive_infinitive,
20
+ :perfect_passive_infinitive => perfect_passive_infinitive,
21
+ :future_passive_infinitive => future_passive_infinitive
22
+ }
23
+ end
24
+
25
+ def present_active_infinitive
26
+ return @proxyVerb.send :present_passive_infinitive
27
+ end
28
+
29
+ def perfect_active_infinitive
30
+ return @proxyVerb.send :perfect_passive_infinitive
31
+ end
32
+
33
+ def future_active_infinitive
34
+ return @proxyVerb.send :future_active_infinitive
35
+ end
36
+
37
+ def present_passive_infinitive
38
+ return NullTenseBlock.new
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,49 @@
1
+ #encoding: UTF-8
2
+ module Linguistics
3
+ module Latin
4
+ module Verb
5
+ class LatinVerb
6
+ class Infinitivizer
7
+ extend Forwardable
8
+
9
+ def_delegators :@verb, :first_person_perfect, :future_active_participle, :verb_type, :present_active_infinitive, :perfect_passive_participle, :supine
10
+
11
+ def initialize(verb)
12
+ @verb = verb
13
+ end
14
+
15
+ def infinitives
16
+ {
17
+ :present_active_infinitive => present_active_infinitive,
18
+ :perfect_active_infinitive => perfect_active_infinitive,
19
+ :future_active_infinitive => future_active_infinitive,
20
+ :present_passive_infinitive => present_passive_infinitive,
21
+ :perfect_passive_infinitive => perfect_passive_infinitive,
22
+ :future_passive_infinitive => future_passive_infinitive
23
+ }
24
+ end
25
+
26
+ def perfect_active_infinitive
27
+ first_person_perfect + "sse"
28
+ end
29
+
30
+ def future_active_infinitive
31
+ future_active_participle.sub(/,.*/,'') + " esse"
32
+ end
33
+
34
+ def present_passive_infinitive
35
+ PassiveInfinitiveFactory.new(@verb).passive_infinitive
36
+ end
37
+
38
+ def perfect_passive_infinitive
39
+ perfect_passive_participle + " esse"
40
+ end
41
+
42
+ def future_passive_infinitive
43
+ supine[:accusative] + " īrī"
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,43 @@
1
+ #encoding: UTF-8
2
+ module Linguistics
3
+ module Latin
4
+ module Verb
5
+ class LatinVerb
6
+ class Infinitivizer
7
+ class PassiveInfinitiveFactory
8
+ extend Forwardable
9
+ def_delegators :@verb, :present_active_infinitive, :verb_type
10
+
11
+ MAPPING = {
12
+ First: [/(.*)e$/,"\\1ī"],
13
+ Second: [/(.*)e$/,"\\1ī"],
14
+ ThirdIO: [/(.*)ere$/,"\\1ī"],
15
+ Third: [/(.*)ere$/,"\\1ī"],
16
+ Fourth: [/(.*)e$/,"\\1ī"],
17
+ Irregular: [/(.*)/,"\\1"]
18
+ }
19
+
20
+
21
+ def initialize(verb)
22
+ @verb = verb
23
+ end
24
+
25
+ def passive_infinitive
26
+ present_active_infinitive.gsub(*mutation_for_type)
27
+ end
28
+
29
+ private
30
+
31
+ def mutation_for_type
32
+ MAPPING[type_key]
33
+ end
34
+
35
+ def type_key
36
+ verb_type.ordinal_name_key
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,3 @@
1
+ module LatinverbInfinitives
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: latinverb_infinitives
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: 2014-07-19 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.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
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:
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
+ - latinverb_infinitives.gemspec
54
+ - lib/latinverb_infinitives.rb
55
+ - lib/latinverb_infinitives/infinitives_factory.rb
56
+ - lib/latinverb_infinitives/infinitives_factory/deponent_infinitivizer.rb
57
+ - lib/latinverb_infinitives/infinitives_factory/infinitivizer.rb
58
+ - lib/latinverb_infinitives/infinitives_factory/passive_infinitive_factory.rb
59
+ - lib/latinverb_infinitives/version.rb
60
+ homepage: ''
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.2.2
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: Component to construct infinitives in LatinVerb
84
+ test_files: []