taxonifi 0.3.2 → 0.3.3
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 +4 -4
- data/.gitignore +2 -0
- data/Gemfile.lock +8 -2
- data/Rakefile +2 -29
- data/lib/{assessor → taxonifi/assessor}/base.rb +0 -0
- data/lib/{assessor → taxonifi/assessor}/row_assessor.rb +3 -1
- data/lib/{assessor → taxonifi}/assessor.rb +1 -2
- data/lib/taxonifi/base.rb +5 -0
- data/lib/{export → taxonifi/export}/format/base.rb +0 -0
- data/lib/{export → taxonifi/export}/format/obo_nomenclature.rb +0 -0
- data/lib/{export → taxonifi/export}/format/prolog.rb +0 -0
- data/lib/{export → taxonifi/export}/format/species_file.rb +0 -0
- data/lib/{export → taxonifi}/export.rb +0 -0
- data/lib/{lumper → taxonifi/lumper}/clump.rb +0 -0
- data/lib/{lumper → taxonifi/lumper}/lumps/parent_child_name_collection.rb +0 -0
- data/lib/{lumper → taxonifi/lumper}/name_index.rb +0 -2
- data/lib/{lumper → taxonifi}/lumper.rb +0 -6
- data/lib/{model → taxonifi/model}/author_year.rb +0 -0
- data/lib/{model → taxonifi/model}/base.rb +0 -3
- data/lib/{model → taxonifi/model}/collection.rb +0 -0
- data/lib/{model → taxonifi/model}/generic_object.rb +0 -0
- data/lib/{model → taxonifi/model}/geog.rb +0 -0
- data/lib/{model → taxonifi/model}/geog_collection.rb +0 -0
- data/lib/{model → taxonifi/model}/name.rb +0 -0
- data/lib/{model → taxonifi/model}/name_collection.rb +3 -0
- data/lib/{model → taxonifi/model}/person.rb +0 -0
- data/lib/{model → taxonifi/model}/ref.rb +0 -0
- data/lib/{model → taxonifi/model}/ref_collection.rb +0 -0
- data/lib/{model → taxonifi/model}/shared_class_methods.rb +0 -0
- data/lib/{model → taxonifi/model}/species_name.rb +0 -0
- data/lib/{splitter → taxonifi/splitter}/builder.rb +0 -0
- data/lib/{splitter → taxonifi/splitter}/lexer.rb +0 -0
- data/lib/{splitter → taxonifi/splitter}/parser.rb +0 -0
- data/lib/{splitter → taxonifi/splitter}/tokens.rb +0 -0
- data/lib/{splitter → taxonifi}/splitter.rb +0 -6
- data/lib/{utils → taxonifi/utils}/array.rb +0 -2
- data/lib/{utils → taxonifi/utils}/hash.rb +1 -3
- data/lib/taxonifi/version.rb +1 -1
- data/lib/taxonifi.rb +3 -10
- data/taxonifi.gemspec +3 -8
- data/test/helper.rb +4 -17
- data/test/test_export_prolog.rb +1 -3
- data/test/test_exporter.rb +1 -2
- data/test/test_lumper_clump.rb +1 -4
- data/test/test_lumper_geogs.rb +1 -3
- data/test/test_lumper_hierarchical_collection.rb +1 -4
- data/test/test_lumper_names.rb +1 -4
- data/test/test_lumper_parent_child_name_collection.rb +1 -1
- data/test/test_lumper_refs.rb +1 -4
- data/test/test_obo_nomenclature.rb +1 -2
- data/test/test_parser.rb +1 -2
- data/test/test_splitter.rb +1 -2
- data/test/test_splitter_tokens.rb +1 -2
- data/test/test_taxonifi.rb +1 -3
- data/test/test_taxonifi_accessor.rb +1 -2
- data/test/test_taxonifi_base.rb +1 -2
- data/test/test_taxonifi_geog.rb +1 -2
- data/test/test_taxonifi_name.rb +1 -2
- data/test/test_taxonifi_name_collection.rb +1 -1
- data/test/test_taxonifi_ref.rb +1 -2
- data/test/test_taxonifi_ref_collection.rb +0 -1
- data/test/test_taxonifi_species_name.rb +1 -2
- metadata +65 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6460e1a6db043c95af5f490672d32afb517edae
|
|
4
|
+
data.tar.gz: 1080653388a1c17919a25c6905f55c5ed2b26a77
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a3973549fb832d1ab0dd5565d00937e86a47e70b924c5148d004586949800172da5e671fb6262f342a9b84c1142c916c147896cc940eff40c1b7ddfd6ca5636
|
|
7
|
+
data.tar.gz: c2528c8cb4c27fe671252aa0a666fca6da57cf5eab7a1de6406649dfcfc61cefd076ae890797594ec887593031f7278f3ebf732f18236db07a4d795f4ccca730
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
taxonifi (0.3.
|
|
4
|
+
taxonifi (0.3.3)
|
|
5
|
+
byebug (~> 4.0)
|
|
5
6
|
rake (~> 10.4)
|
|
7
|
+
require_all (~> 1.3)
|
|
6
8
|
|
|
7
9
|
GEM
|
|
8
10
|
remote: https://rubygems.org/
|
|
@@ -15,7 +17,11 @@ GEM
|
|
|
15
17
|
did_you_mean (0.9.8)
|
|
16
18
|
interception
|
|
17
19
|
interception (0.5)
|
|
20
|
+
json (1.8.2)
|
|
18
21
|
rake (10.4.2)
|
|
22
|
+
rdoc (4.2.0)
|
|
23
|
+
json (~> 1.4)
|
|
24
|
+
require_all (1.3.2)
|
|
19
25
|
|
|
20
26
|
PLATFORMS
|
|
21
27
|
ruby
|
|
@@ -24,6 +30,6 @@ DEPENDENCIES
|
|
|
24
30
|
awesome_print (~> 1.6)
|
|
25
31
|
builder (~> 3.2)
|
|
26
32
|
bundler (~> 1.9)
|
|
27
|
-
byebug (~> 4.0)
|
|
28
33
|
did_you_mean (~> 0.9)
|
|
34
|
+
rdoc (~> 4.2)
|
|
29
35
|
taxonifi!
|
data/Rakefile
CHANGED
|
@@ -4,34 +4,7 @@ require 'bundler/gem_tasks'
|
|
|
4
4
|
require 'rake'
|
|
5
5
|
require 'rake/testtask'
|
|
6
6
|
require 'taxonifi/version'
|
|
7
|
-
|
|
8
|
-
# require 'rubygems'
|
|
9
|
-
# require 'bundler'
|
|
10
|
-
|
|
11
|
-
# begin
|
|
12
|
-
# Bundler.setup(:default, :development)
|
|
13
|
-
# rescue Bundler::BundlerError => e
|
|
14
|
-
# $stderr.puts e.message
|
|
15
|
-
# $stderr.puts "Run `bundle install` to install missing gems"
|
|
16
|
-
# exit e.status_code
|
|
17
|
-
# end
|
|
18
|
-
|
|
19
|
-
#require 'jeweler'
|
|
20
|
-
|
|
21
|
-
# Jeweler::Tasks.new do |gem|
|
|
22
|
-
# # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
|
23
|
-
# gem.name = "taxonifi"
|
|
24
|
-
# gem.homepage = "http://github.com/SpeciesFile/taxonifi"
|
|
25
|
-
# gem.license = "MIT"
|
|
26
|
-
# gem.summary = %Q{A general purpose framework for scripted handling of taxonomic names}
|
|
27
|
-
# gem.description = %Q{Taxonifi contains simple models and utilties of use in for parsing lists of taxonomic name (life) related metadata}
|
|
28
|
-
# gem.email = "diapriid@gmail.com"
|
|
29
|
-
# gem.authors = ["mjy"]
|
|
30
|
-
# # dependencies defined in Gemfile
|
|
31
|
-
# end
|
|
32
|
-
|
|
33
|
-
# Jeweler::RubygemsDotOrgTasks.new
|
|
34
|
-
|
|
7
|
+
require 'taxonifi'
|
|
35
8
|
|
|
36
9
|
Rake::TestTask.new(:test) do |test|
|
|
37
10
|
test.libs << 'lib' << 'test'
|
|
@@ -49,8 +22,8 @@ end
|
|
|
49
22
|
|
|
50
23
|
task :default => :test
|
|
51
24
|
|
|
52
|
-
require 'rdoc/task'
|
|
53
25
|
|
|
26
|
+
require 'rdoc/task'
|
|
54
27
|
Rake::RDocTask.new do |rdoc|
|
|
55
28
|
version = Taxonifi::VERSION
|
|
56
29
|
|
|
File without changes
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
module Taxonifi
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'row_assessor'))
|
|
3
|
+
Dir[File.join(__dir__, 'assessor', '*.rb')].each {|file| require file }
|
|
5
4
|
|
|
6
5
|
class AssessorError < StandardError; end
|
|
7
6
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -1,16 +1,10 @@
|
|
|
1
|
-
require File.expand_path(File.join(File.dirname(__FILE__), '../taxonifi'))
|
|
2
|
-
|
|
3
1
|
# The lumper lumps! Tools for recognizing and using
|
|
4
2
|
# combinations of column types.
|
|
5
3
|
module Taxonifi::Lumper
|
|
6
|
-
|
|
7
4
|
# Define groups of columns/fields and include
|
|
8
5
|
# functionality to determine whether your
|
|
9
6
|
# columns match a given set.
|
|
10
7
|
module Lumps
|
|
11
|
-
Dir.glob( File.expand_path(File.join(File.dirname(__FILE__), "lumps/*.rb") )) do |file|
|
|
12
|
-
require file
|
|
13
|
-
end
|
|
14
8
|
end
|
|
15
9
|
|
|
16
10
|
class LumperError < StandardError; end
|
|
File without changes
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
module Taxonifi
|
|
2
|
-
class ModelError < StandardError; end
|
|
3
2
|
module Model
|
|
4
3
|
|
|
5
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'shared_class_methods'))
|
|
6
|
-
|
|
7
4
|
# A base class for all Taxonifi::Models that represent
|
|
8
5
|
# "individuals" (as opposed to collections of indviduals).
|
|
9
6
|
class Base
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -14,12 +14,6 @@ module Taxonifi
|
|
|
14
14
|
|
|
15
15
|
class SplitterError < StandardError; end
|
|
16
16
|
|
|
17
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'tokens'))
|
|
18
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'parser'))
|
|
19
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'lexer'))
|
|
20
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'builder'))
|
|
21
|
-
|
|
22
|
-
|
|
23
17
|
# stub, we might not need
|
|
24
18
|
class Splitter
|
|
25
19
|
def initialize
|
data/lib/taxonifi/version.rb
CHANGED
data/lib/taxonifi.rb
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
require 'csv'
|
|
2
2
|
require 'fileutils'
|
|
3
|
+
require 'require_all'
|
|
3
4
|
|
|
4
5
|
# Everything in Taxonifi is in here.
|
|
5
6
|
module Taxonifi
|
|
@@ -27,18 +28,10 @@ module Taxonifi
|
|
|
27
28
|
species
|
|
28
29
|
subspecies
|
|
29
30
|
variety
|
|
30
|
-
}
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'assessor/assessor'))
|
|
34
|
-
require File.expand_path(File.join(File.dirname(__FILE__), 'export/export'))
|
|
32
|
+
}
|
|
35
33
|
|
|
36
|
-
|
|
37
|
-
%w{model utils lumper}.each do |dir|
|
|
38
|
-
Dir.glob( File.expand_path(File.join(File.dirname(__FILE__), "#{dir}/*.rb") )) do |file|
|
|
39
|
-
require file
|
|
40
|
-
end
|
|
41
|
-
end
|
|
34
|
+
require_rel 'taxonifi'
|
|
42
35
|
|
|
43
36
|
|
|
44
37
|
end
|
data/taxonifi.gemspec
CHANGED
|
@@ -28,19 +28,14 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
s.rubygems_version = "2.4.5"
|
|
29
29
|
|
|
30
30
|
s.add_dependency "rake", '~> 10.4'
|
|
31
|
+
s.add_dependency "byebug", "~> 4.0"
|
|
32
|
+
s.add_dependency "require_all", "~> 1.3"
|
|
31
33
|
|
|
32
34
|
s.add_development_dependency "bundler", "~> 1.9"
|
|
33
35
|
s.add_development_dependency 'awesome_print', '~> 1.6'
|
|
34
36
|
s.add_development_dependency 'did_you_mean', '~> 0.9'
|
|
35
|
-
s.add_development_dependency "
|
|
36
|
-
# s.add_development_dependency "rdoc", "~> 4.2"
|
|
37
|
-
|
|
37
|
+
s.add_development_dependency "rdoc", "~> 4.2"
|
|
38
38
|
s.add_development_dependency "builder", "~> 3.2"
|
|
39
39
|
|
|
40
|
-
|
|
41
|
-
# Travis
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
40
|
end
|
|
46
41
|
|
data/test/helper.rb
CHANGED
|
@@ -1,25 +1,12 @@
|
|
|
1
1
|
require 'rubygems'
|
|
2
|
-
require 'bundler'
|
|
3
|
-
require 'byebug'
|
|
4
|
-
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/taxonifi'))
|
|
5
2
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
rescue Bundler::BundlerError => e
|
|
9
|
-
$stderr.puts e.message
|
|
10
|
-
$stderr.puts "Run `bundle install` to install missing gems"
|
|
11
|
-
exit e.status_code
|
|
12
|
-
end
|
|
3
|
+
require 'bundler/setup'
|
|
4
|
+
Bundler.setup
|
|
13
5
|
|
|
6
|
+
require 'byebug'
|
|
14
7
|
require 'test/unit'
|
|
15
|
-
#require 'shoulda'
|
|
16
8
|
|
|
17
|
-
|
|
18
|
-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
19
|
-
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
20
|
-
|
|
21
|
-
class Test::Unit::TestCase
|
|
22
|
-
end
|
|
9
|
+
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/taxonifi'))
|
|
23
10
|
|
|
24
11
|
# TODO: rename to reflect format
|
|
25
12
|
def generic_csv_with_names
|
data/test/test_export_prolog.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
require
|
|
2
|
-
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/export/export'))
|
|
1
|
+
require 'helper'
|
|
3
2
|
|
|
4
3
|
class Test_ExportProlog < Test::Unit::TestCase
|
|
5
4
|
|
|
@@ -8,7 +7,6 @@ class Test_ExportProlog < Test::Unit::TestCase
|
|
|
8
7
|
assert foo = e.export
|
|
9
8
|
end
|
|
10
9
|
|
|
11
|
-
|
|
12
10
|
end
|
|
13
11
|
|
|
14
12
|
|
data/test/test_exporter.rb
CHANGED
data/test/test_lumper_clump.rb
CHANGED
data/test/test_lumper_geogs.rb
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
require
|
|
2
|
-
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/lumper/lumper'))
|
|
3
|
-
|
|
4
|
-
# Builder construction
|
|
1
|
+
require 'helper'
|
|
5
2
|
|
|
6
3
|
class Test_TaxonifiLumperHierarchicalCollection < Test::Unit::TestCase
|
|
7
4
|
|
data/test/test_lumper_names.rb
CHANGED
data/test/test_lumper_refs.rb
CHANGED
data/test/test_parser.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
require
|
|
2
|
-
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/splitter/parser'))
|
|
1
|
+
require 'helper'
|
|
3
2
|
|
|
4
3
|
class Test_TaxonifiSplitterParser < Test::Unit::TestCase
|
|
5
4
|
# TODO: this could also go to builder related tests
|
data/test/test_splitter.rb
CHANGED
data/test/test_taxonifi.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
require
|
|
2
|
-
require File.expand_path(File.join(File.dirname(__FILE__), '../lib/taxonifi'))
|
|
1
|
+
require 'helper'
|
|
3
2
|
|
|
4
3
|
class TestTaxonifi < Test::Unit::TestCase
|
|
5
4
|
|
|
@@ -7,5 +6,4 @@ class TestTaxonifi < Test::Unit::TestCase
|
|
|
7
6
|
assert Taxonifi::RANKS
|
|
8
7
|
end
|
|
9
8
|
|
|
10
|
-
|
|
11
9
|
end
|
data/test/test_taxonifi_base.rb
CHANGED
data/test/test_taxonifi_geog.rb
CHANGED
data/test/test_taxonifi_name.rb
CHANGED
data/test/test_taxonifi_ref.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: taxonifi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mjy
|
|
@@ -24,6 +24,34 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '10.4'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: byebug
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '4.0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '4.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: require_all
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '1.3'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.3'
|
|
27
55
|
- !ruby/object:Gem::Dependency
|
|
28
56
|
name: bundler
|
|
29
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,19 +95,19 @@ dependencies:
|
|
|
67
95
|
- !ruby/object:Gem::Version
|
|
68
96
|
version: '0.9'
|
|
69
97
|
- !ruby/object:Gem::Dependency
|
|
70
|
-
name:
|
|
98
|
+
name: rdoc
|
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
|
72
100
|
requirements:
|
|
73
101
|
- - "~>"
|
|
74
102
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '4.
|
|
103
|
+
version: '4.2'
|
|
76
104
|
type: :development
|
|
77
105
|
prerelease: false
|
|
78
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
107
|
requirements:
|
|
80
108
|
- - "~>"
|
|
81
109
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '4.
|
|
110
|
+
version: '4.2'
|
|
83
111
|
- !ruby/object:Gem::Dependency
|
|
84
112
|
name: builder
|
|
85
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -111,40 +139,41 @@ files:
|
|
|
111
139
|
- LICENSE.txt
|
|
112
140
|
- README.md
|
|
113
141
|
- Rakefile
|
|
114
|
-
- lib/assessor/assessor.rb
|
|
115
|
-
- lib/assessor/base.rb
|
|
116
|
-
- lib/assessor/row_assessor.rb
|
|
117
|
-
- lib/export/export.rb
|
|
118
|
-
- lib/export/format/base.rb
|
|
119
|
-
- lib/export/format/obo_nomenclature.rb
|
|
120
|
-
- lib/export/format/prolog.rb
|
|
121
|
-
- lib/export/format/species_file.rb
|
|
122
|
-
- lib/lumper/clump.rb
|
|
123
|
-
- lib/lumper/lumper.rb
|
|
124
|
-
- lib/lumper/lumps/parent_child_name_collection.rb
|
|
125
|
-
- lib/lumper/name_index.rb
|
|
126
|
-
- lib/model/author_year.rb
|
|
127
|
-
- lib/model/base.rb
|
|
128
|
-
- lib/model/collection.rb
|
|
129
|
-
- lib/model/generic_object.rb
|
|
130
|
-
- lib/model/geog.rb
|
|
131
|
-
- lib/model/geog_collection.rb
|
|
132
|
-
- lib/model/name.rb
|
|
133
|
-
- lib/model/name_collection.rb
|
|
134
|
-
- lib/model/person.rb
|
|
135
|
-
- lib/model/ref.rb
|
|
136
|
-
- lib/model/ref_collection.rb
|
|
137
|
-
- lib/model/shared_class_methods.rb
|
|
138
|
-
- lib/model/species_name.rb
|
|
139
|
-
- lib/splitter/builder.rb
|
|
140
|
-
- lib/splitter/lexer.rb
|
|
141
|
-
- lib/splitter/parser.rb
|
|
142
|
-
- lib/splitter/splitter.rb
|
|
143
|
-
- lib/splitter/tokens.rb
|
|
144
142
|
- lib/taxonifi.rb
|
|
143
|
+
- lib/taxonifi/assessor.rb
|
|
144
|
+
- lib/taxonifi/assessor/base.rb
|
|
145
|
+
- lib/taxonifi/assessor/row_assessor.rb
|
|
146
|
+
- lib/taxonifi/base.rb
|
|
147
|
+
- lib/taxonifi/export.rb
|
|
148
|
+
- lib/taxonifi/export/format/base.rb
|
|
149
|
+
- lib/taxonifi/export/format/obo_nomenclature.rb
|
|
150
|
+
- lib/taxonifi/export/format/prolog.rb
|
|
151
|
+
- lib/taxonifi/export/format/species_file.rb
|
|
152
|
+
- lib/taxonifi/lumper.rb
|
|
153
|
+
- lib/taxonifi/lumper/clump.rb
|
|
154
|
+
- lib/taxonifi/lumper/lumps/parent_child_name_collection.rb
|
|
155
|
+
- lib/taxonifi/lumper/name_index.rb
|
|
156
|
+
- lib/taxonifi/model/author_year.rb
|
|
157
|
+
- lib/taxonifi/model/base.rb
|
|
158
|
+
- lib/taxonifi/model/collection.rb
|
|
159
|
+
- lib/taxonifi/model/generic_object.rb
|
|
160
|
+
- lib/taxonifi/model/geog.rb
|
|
161
|
+
- lib/taxonifi/model/geog_collection.rb
|
|
162
|
+
- lib/taxonifi/model/name.rb
|
|
163
|
+
- lib/taxonifi/model/name_collection.rb
|
|
164
|
+
- lib/taxonifi/model/person.rb
|
|
165
|
+
- lib/taxonifi/model/ref.rb
|
|
166
|
+
- lib/taxonifi/model/ref_collection.rb
|
|
167
|
+
- lib/taxonifi/model/shared_class_methods.rb
|
|
168
|
+
- lib/taxonifi/model/species_name.rb
|
|
169
|
+
- lib/taxonifi/splitter.rb
|
|
170
|
+
- lib/taxonifi/splitter/builder.rb
|
|
171
|
+
- lib/taxonifi/splitter/lexer.rb
|
|
172
|
+
- lib/taxonifi/splitter/parser.rb
|
|
173
|
+
- lib/taxonifi/splitter/tokens.rb
|
|
174
|
+
- lib/taxonifi/utils/array.rb
|
|
175
|
+
- lib/taxonifi/utils/hash.rb
|
|
145
176
|
- lib/taxonifi/version.rb
|
|
146
|
-
- lib/utils/array.rb
|
|
147
|
-
- lib/utils/hash.rb
|
|
148
177
|
- taxonifi.gemspec
|
|
149
178
|
- test/file_fixtures/Fossil.csv
|
|
150
179
|
- test/file_fixtures/Lygaeoidea.csv
|