latinverb_chart_presenter 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +12 -0
- data/latinverb_chart_presenter.gemspec +24 -0
- data/lib/latinverb_chart_presenter.rb +4 -0
- data/lib/latinverb_chart_presenter/chart_presenter.rb +90 -0
- data/lib/latinverb_chart_presenter/version.rb +3 -0
- data/test/chart_test.rb +9 -0
- metadata +111 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 9087ca7649d31438b1f49c9f150d2906f4c2525d
|
4
|
+
data.tar.gz: 0e032ff497d72ec4412f26bb8c0056428accfa97
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 7c96079aad613f5fa1b8b145b32236b201bbdeb596102e5fd36ff88f684650a2fcc7edfd6360522e744ce9bcc3634b50b7aaabb61883fd59a182b04cd3ddaabb
|
7
|
+
data.tar.gz: dd36efd560649a9cd1e8d1eff118930a8ac12dba860fff6be3a27fe6229eb965ca69a12c941c3db6bbc6401765d28664403e6714c9ea42541f34b7ded9201256
|
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
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
|
+
# LatinverbChartPresenter
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'latinverb_chart_presenter'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install latinverb_chart_presenter
|
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_chart_presenter/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,12 @@
|
|
1
|
+
require "rake/testtask"
|
2
|
+
require "bundler/gem_tasks"
|
3
|
+
|
4
|
+
task :default => :test
|
5
|
+
|
6
|
+
Rake::TestTask.new do |t|
|
7
|
+
t.ruby_opts = [ '-rminitest/autorun', '-rminitest/pride', '-rbyebug', '-rlatinverb_chart_presenter' ]
|
8
|
+
t.libs << "test"
|
9
|
+
t.test_files = FileList['test/*test*.rb']
|
10
|
+
t.verbose = true
|
11
|
+
end
|
12
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'latinverb_chart_presenter/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "latinverb_chart_presenter"
|
8
|
+
spec.version = LatinverbChartPresenter::VERSION
|
9
|
+
spec.authors = ["Steven G. Harms"]
|
10
|
+
spec.email = ["steven.harms@gmail.com"]
|
11
|
+
spec.summary = %q{A library for displaying a 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
|
+
spec.add_development_dependency "latinverb"
|
23
|
+
spec.add_development_dependency "byebug"
|
24
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
module Linguistics
|
2
|
+
module Latin
|
3
|
+
module Verb
|
4
|
+
class LatinVerb
|
5
|
+
class ChartPresenter
|
6
|
+
def initialize(verb)
|
7
|
+
@verb = verb
|
8
|
+
end
|
9
|
+
|
10
|
+
def chart
|
11
|
+
f="%9s%15s%15s%15s\n"
|
12
|
+
f_subjunctive="%9s%15s%15s%15s%15s\n"
|
13
|
+
c_prep "Present System", [
|
14
|
+
@verb.active_voice_indicative_mood_present_tense,
|
15
|
+
@verb.active_voice_indicative_mood_imperfect_tense,
|
16
|
+
@verb.active_voice_indicative_mood_future_tense
|
17
|
+
], %w/Present Imperfect Future/,f
|
18
|
+
puts "\n"
|
19
|
+
c_prep "Perfect System", [ @verb.active_voice_indicative_mood_perfect_tense,
|
20
|
+
@verb.active_voice_indicative_mood_pastperfect_tense,
|
21
|
+
@verb.active_voice_indicative_mood_futureperfect_tense
|
22
|
+
], %w/Perfect Past-Perfect Future-Perfect/,f
|
23
|
+
puts "\n"
|
24
|
+
c_prep "Passive Present System", [
|
25
|
+
@verb.passive_voice_indicative_mood_present_tense,
|
26
|
+
@verb.passive_voice_indicative_mood_imperfect_tense,
|
27
|
+
@verb.passive_voice_indicative_mood_future_tense
|
28
|
+
], %w/Present Imperfect Future/,f
|
29
|
+
puts "\n"
|
30
|
+
c_prep "Passive Perfect System", [ @verb.passive_voice_indicative_mood_perfect_tense,
|
31
|
+
@verb.passive_voice_indicative_mood_pastperfect_tense,
|
32
|
+
@verb.passive_voice_indicative_mood_futureperfect_tense
|
33
|
+
], %w/Perfect Past-Perfect Future-Perfect/,f
|
34
|
+
puts "\n"
|
35
|
+
|
36
|
+
|
37
|
+
c_prep "Subjunctives", [ @verb.active_voice_subjunctive_mood_present_tense,
|
38
|
+
@verb.active_voice_subjunctive_mood_imperfect_tense,
|
39
|
+
@verb.active_voice_subjunctive_mood_perfect_tense,
|
40
|
+
@verb.active_voice_subjunctive_mood_pastperfect_tense
|
41
|
+
], %w/Present Imperfect Perfect Past-Perfect/,f_subjunctive
|
42
|
+
puts "\n"
|
43
|
+
c_prep "Passive Subjunctives", [ @verb.active_voice_subjunctive_mood_present_tense,
|
44
|
+
@verb.active_voice_subjunctive_mood_imperfect_tense,
|
45
|
+
@verb.active_voice_subjunctive_mood_perfect_tense,
|
46
|
+
@verb.active_voice_subjunctive_mood_pastperfect_tense
|
47
|
+
], %w/Present Imperfect Perfect Past-Perfect/,f_subjunctive
|
48
|
+
puts "\n"
|
49
|
+
puts "Participles"
|
50
|
+
puts "==========="
|
51
|
+
LatinVerb::PARTICIPLE_METHODS.each do |p|
|
52
|
+
printf "%42s %42s\n", p.to_s.gsub('_', ' ').gsub(/\b\w/){$&.upcase}, String(@verb.send(p)) rescue nil
|
53
|
+
end
|
54
|
+
|
55
|
+
puts "\n"
|
56
|
+
puts "Infinitives"
|
57
|
+
puts "==========="
|
58
|
+
LatinVerb::INFINITIVE_METHODS.each do |p|
|
59
|
+
printf "%42s %42s\n", (p.to_s.gsub('_', ' ').gsub(/\b\w/){$&.upcase}), String(@verb.send(p)) rescue nil
|
60
|
+
end
|
61
|
+
|
62
|
+
puts "\n"
|
63
|
+
puts "Imperatives"
|
64
|
+
puts "==========="
|
65
|
+
puts "#{@verb.imperatives[0]}, #{@verb.imperatives[1]}"
|
66
|
+
|
67
|
+
return nil
|
68
|
+
end
|
69
|
+
|
70
|
+
alias_method :c, :chart
|
71
|
+
private
|
72
|
+
|
73
|
+
def c_prep(heading, rays, subtitles, format_string)
|
74
|
+
puts heading
|
75
|
+
puts '=' * heading.length + "\n"
|
76
|
+
printf format_string, '', *subtitles
|
77
|
+
underbars = subtitles.map{|j| j.gsub!( /./, '=' )}
|
78
|
+
printf format_string, '', *underbars
|
79
|
+
vertical_transform( rays ).each{|a| printf format_string, *a}
|
80
|
+
end
|
81
|
+
|
82
|
+
def vertical_transform( opts = [] )
|
83
|
+
# Get the length of the first array to be verticalized
|
84
|
+
['1st Sg.', '2nd Sg.', '3rd Sg.','1st Pl.', '2nd Pl.', '3rd Pl.'].zip(*opts)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
data/test/chart_test.rb
ADDED
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: latinverb_chart_presenter
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
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
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: latinverb
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: byebug
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- steven.harms@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE.txt
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- latinverb_chart_presenter.gemspec
|
82
|
+
- lib/latinverb_chart_presenter.rb
|
83
|
+
- lib/latinverb_chart_presenter/chart_presenter.rb
|
84
|
+
- lib/latinverb_chart_presenter/version.rb
|
85
|
+
- test/chart_test.rb
|
86
|
+
homepage: ''
|
87
|
+
licenses:
|
88
|
+
- MIT
|
89
|
+
metadata: {}
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.2.2
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: A library for displaying a LatinVerb
|
110
|
+
test_files:
|
111
|
+
- test/chart_test.rb
|