mexico 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (115) hide show
  1. checksums.yaml +15 -0
  2. data/.document +5 -0
  3. data/.gitmodules +3 -0
  4. data/.project +14 -0
  5. data/.rspec +2 -0
  6. data/Gemfile +31 -0
  7. data/LICENSE.txt +165 -0
  8. data/README.md +116 -0
  9. data/Rakefile +66 -0
  10. data/VERSION +1 -0
  11. data/assets/TESTCORPUS/Corpus.xml +26 -0
  12. data/assets/fiesta/b6/layer_connectors.fst +16 -0
  13. data/assets/fiesta/b6/match_jones_161_CM_neu_checked.parsed.xml +1225 -0
  14. data/assets/fiesta/elan/ElanFileFormat.eaf +76 -0
  15. data/assets/fiesta/elan/ElanFileFormat.pfsx +8 -0
  16. data/assets/fiesta/elan/ElanFileFormatComplexInterLayerLinks.eaf +107 -0
  17. data/assets/fiesta/elan/reflinks_example.eaf +270 -0
  18. data/assets/fiesta/elan/test_all_interlayerrelations.fst +43 -0
  19. data/assets/fiesta/head/head.fst +24 -0
  20. data/assets/fiesta/praat/mexico.ShortTextGrid +81 -0
  21. data/assets/fiesta/praat/mexico.TextGrid +104 -0
  22. data/assets/helpers/collection_ref_handler.rb +29 -0
  23. data/assets/helpers/id_ref_handler.rb +29 -0
  24. data/assets/helpers/roxml_attribute_handler.rb +57 -0
  25. data/assets/out_only/construct_and_write_spec.toe +99 -0
  26. data/assets/spec.html +554 -0
  27. data/bin/mexico +5 -0
  28. data/features/mexico.feature +9 -0
  29. data/features/step_definitions/mexico_steps.rb +0 -0
  30. data/features/support/env.rb +15 -0
  31. data/info/releasenotes/0.0.1.md +5 -0
  32. data/info/releasenotes/0.0.2.md +5 -0
  33. data/info/releasenotes/0.0.3.md +5 -0
  34. data/info/releasenotes/0.0.4.md +5 -0
  35. data/info/releasenotes/0.0.5.md +8 -0
  36. data/info/releasenotes/0.0.6.md +3 -0
  37. data/info/releasenotes/0.0.7.md +4 -0
  38. data/info/releasenotes/0.0.8.md +9 -0
  39. data/info/releasenotes/0.0.9.md +7 -0
  40. data/lib/mexico/cmd.rb +210 -0
  41. data/lib/mexico/constants.rb +82 -0
  42. data/lib/mexico/constraints/constraint.rb +85 -0
  43. data/lib/mexico/constraints/fiesta_constraints.rb +209 -0
  44. data/lib/mexico/constraints.rb +27 -0
  45. data/lib/mexico/core/corpus_core.rb +39 -0
  46. data/lib/mexico/core/design_core.rb +31 -0
  47. data/lib/mexico/core/media_type.rb +61 -0
  48. data/lib/mexico/core.rb +36 -0
  49. data/lib/mexico/fiesta/interfaces/b6_chat_game_interface.rb +222 -0
  50. data/lib/mexico/fiesta/interfaces/elan_interface.rb +143 -0
  51. data/lib/mexico/fiesta/interfaces/short_text_grid_interface.rb +99 -0
  52. data/lib/mexico/fiesta/interfaces/text_grid_interface.rb +103 -0
  53. data/lib/mexico/fiesta/interfaces.rb +31 -0
  54. data/lib/mexico/fiesta.rb +27 -0
  55. data/lib/mexico/file_system/bound_to_corpus.rb +37 -0
  56. data/lib/mexico/file_system/corpus.rb +207 -0
  57. data/lib/mexico/file_system/data.rb +96 -0
  58. data/lib/mexico/file_system/design.rb +75 -0
  59. data/lib/mexico/file_system/design_component.rb +78 -0
  60. data/lib/mexico/file_system/entry.rb +59 -0
  61. data/lib/mexico/file_system/fiesta_document.rb +344 -0
  62. data/lib/mexico/file_system/fiesta_map.rb +112 -0
  63. data/lib/mexico/file_system/head.rb +33 -0
  64. data/lib/mexico/file_system/id_ref.rb +46 -0
  65. data/lib/mexico/file_system/implicit_item_link.rb +19 -0
  66. data/lib/mexico/file_system/interval_link.rb +84 -0
  67. data/lib/mexico/file_system/item.rb +166 -0
  68. data/lib/mexico/file_system/item_link.rb +98 -0
  69. data/lib/mexico/file_system/item_links_proxy.rb +13 -0
  70. data/lib/mexico/file_system/layer.rb +89 -0
  71. data/lib/mexico/file_system/layer_connector.rb +74 -0
  72. data/lib/mexico/file_system/layer_link.rb +75 -0
  73. data/lib/mexico/file_system/local_file.rb +101 -0
  74. data/lib/mexico/file_system/participant.rb +69 -0
  75. data/lib/mexico/file_system/participant_role.rb +43 -0
  76. data/lib/mexico/file_system/point_link.rb +79 -0
  77. data/lib/mexico/file_system/property.rb +35 -0
  78. data/lib/mexico/file_system/property_map.rb +37 -0
  79. data/lib/mexico/file_system/resource.rb +174 -0
  80. data/lib/mexico/file_system/scale.rb +125 -0
  81. data/lib/mexico/file_system/section.rb +41 -0
  82. data/lib/mexico/file_system/static_collection_ref.rb +64 -0
  83. data/lib/mexico/file_system/template.rb +23 -0
  84. data/lib/mexico/file_system/trial.rb +87 -0
  85. data/lib/mexico/file_system/url.rb +65 -0
  86. data/lib/mexico/file_system.rb +62 -0
  87. data/lib/mexico/not_yet_implemented_error.rb +28 -0
  88. data/lib/mexico/util/fancy_container.rb +57 -0
  89. data/lib/mexico/util.rb +51 -0
  90. data/lib/mexico.rb +36 -0
  91. data/spec/constraints/constraints_spec.rb +306 -0
  92. data/spec/core/media_type_spec.rb +50 -0
  93. data/spec/fiesta/b6_spec.rb +43 -0
  94. data/spec/fiesta/elan_spec.rb +43 -0
  95. data/spec/fiesta/head_spec.rb +54 -0
  96. data/spec/fiesta/praat_spec.rb +54 -0
  97. data/spec/fiesta/read_spec.rb +76 -0
  98. data/spec/file_system_based/better_collection_spec.rb +142 -0
  99. data/spec/file_system_based/corpus_spec.rb +194 -0
  100. data/spec/file_system_based/design_spec.rb +100 -0
  101. data/spec/file_system_based/inter_links_spec.rb +100 -0
  102. data/spec/file_system_based/item_links_spec.rb +76 -0
  103. data/spec/file_system_based/rdf_spec.rb +177 -0
  104. data/spec/file_system_based/resource_spec.rb +111 -0
  105. data/spec/file_system_based/trial_spec.rb +129 -0
  106. data/spec/spec_helper.rb +14 -0
  107. data/spec/toe/construct_and_write_spec.rb +82 -0
  108. data/spec/toe/construction_spec.rb +110 -0
  109. data/spec/toe/item_spec.rb +58 -0
  110. data/spec/toe/layer_spec.rb +63 -0
  111. data/spec/toe/scale_spec.rb +89 -0
  112. data/spec/toe/toe_document_spec.rb +39 -0
  113. data/test/helper.rb +19 -0
  114. data/test/test_mexico.rb +7 -0
  115. metadata +357 -0
@@ -0,0 +1,63 @@
1
+ # This file is part of the MExiCo gem.
2
+ # Copyright (c) 2012-2014 Peter Menke, SFB 673, Universität Bielefeld
3
+ # http://www.sfb673.org
4
+ #
5
+ # MExiCo is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU Lesser General Public License as
7
+ # published by the Free Software Foundation, either version 3 of
8
+ # the License, or (at your option) any later version.
9
+ #
10
+ # MExiCo is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU Lesser General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU Lesser General Public
16
+ # License along with MExiCo. If not, see
17
+ # <http://www.gnu.org/licenses/>.
18
+
19
+ require 'spec_helper'
20
+
21
+ describe Mexico::FileSystem::Layer do
22
+
23
+ before(:each) do
24
+ @basepath = File.join(File.dirname(__FILE__), '..','..','assets','mexico-testcorpus','mexico')
25
+ @corpus = Mexico::FileSystem::Corpus.open(@basepath)
26
+ @trans_resource = @corpus.resources[1]
27
+ @anno_file = @trans_resource.local_files.find{ |i| i.identifier=="mexico-transcription-toe" }
28
+ @trans_resource.load
29
+ @annodoc = @trans_resource.document
30
+ end
31
+
32
+
33
+ it "has a layers collection" do
34
+ @trans_resource.should_not eq nil
35
+ @trans_resource.document.should_not eq nil
36
+ @trans_resource.document.should respond_to(:layers)
37
+ end
38
+
39
+ it "has four layers inside the collection" do
40
+ @annodoc.layers.size.should be 4
41
+ end
42
+
43
+ it "has a first layer with working accessors" do
44
+ layer = @annodoc.layers[0]
45
+ layer.should respond_to(:identifier)
46
+ layer.should respond_to(:name)
47
+ end
48
+
49
+ context "has a forst layer with" do
50
+ # continuous="true" id="timeline" name="Timeline" mode="ratio" dimension="time" unit="s" role="single timeline"
51
+
52
+ it "identifier" do
53
+ @annodoc.layers[0].identifier.should eq "silences"
54
+ end
55
+
56
+ it "name" do
57
+ @annodoc.layers[0].name.should eq "Silences"
58
+ end
59
+
60
+ end
61
+
62
+
63
+ end
@@ -0,0 +1,89 @@
1
+ # This file is part of the MExiCo gem.
2
+ # Copyright (c) 2012-2014 Peter Menke, SFB 673, Universität Bielefeld
3
+ # http://www.sfb673.org
4
+ #
5
+ # MExiCo is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU Lesser General Public License as
7
+ # published by the Free Software Foundation, either version 3 of
8
+ # the License, or (at your option) any later version.
9
+ #
10
+ # MExiCo is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU Lesser General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU Lesser General Public
16
+ # License along with MExiCo. If not, see
17
+ # <http://www.gnu.org/licenses/>.
18
+
19
+ require 'spec_helper'
20
+
21
+ describe Mexico::FileSystem::Scale do
22
+
23
+
24
+ before(:each) do
25
+ @basepath = File.join(File.dirname(__FILE__), '..','..','assets','mexico-testcorpus','mexico')
26
+ @corpus = Mexico::FileSystem::Corpus.open(@basepath)
27
+ @trans_resource = @corpus.resources[1]
28
+ @anno_file = @trans_resource.local_files.find{ |i| i.identifier=="mexico-transcription-toe" }
29
+ @trans_resource.load
30
+ @annodoc = @trans_resource.document
31
+ end
32
+
33
+
34
+ it "has a scales collection" do
35
+ @trans_resource.should_not eq nil
36
+ @trans_resource.document.should_not eq nil
37
+ @trans_resource.document.should respond_to(:scales)
38
+ end
39
+
40
+ it "has one scale inside the collection" do
41
+ @annodoc.scales.size.should be 1
42
+ end
43
+
44
+ it "has a scale with working accessors" do
45
+ scale = @annodoc.scales[0]
46
+ scale.should respond_to(:identifier)
47
+ scale.should respond_to(:name)
48
+ scale.should respond_to(:unit)
49
+ scale.should respond_to(:dimension)
50
+ scale.should respond_to(:role)
51
+ scale.should respond_to(:mode)
52
+ scale.should respond_to(:continuous?)
53
+ end
54
+
55
+ context "has a scale with" do
56
+ # continuous="true" id="timeline" name="Timeline" mode="ratio" dimension="time" unit="s" role="single timeline"
57
+
58
+ it "identifier" do
59
+ @annodoc.scales[0].identifier.should eq "timeline"
60
+ end
61
+
62
+ it "name" do
63
+ @annodoc.scales[0].name.should eq "Timeline"
64
+ end
65
+
66
+ it "unit" do
67
+ @annodoc.scales[0].unit.should eq "s"
68
+ end
69
+
70
+ it "dimension" do
71
+ @annodoc.scales[0].dimension.should eq "time"
72
+ end
73
+
74
+ it "role" do
75
+ @annodoc.scales[0].role.should eq "single timeline"
76
+ end
77
+
78
+ it "mode" do
79
+ @annodoc.scales[0].mode.should eq "ratio"
80
+ end
81
+
82
+ it "continuous" do
83
+ @annodoc.scales[0].continuous?.should eq true
84
+ end
85
+
86
+ end
87
+
88
+
89
+ end
@@ -0,0 +1,39 @@
1
+ # This file is part of the MExiCo gem.
2
+ # Copyright (c) 2012-2014 Peter Menke, SFB 673, Universität Bielefeld
3
+ # http://www.sfb673.org
4
+ #
5
+ # MExiCo is free software: you can redistribute it and/or modify
6
+ # it under the terms of the GNU Lesser General Public License as
7
+ # published by the Free Software Foundation, either version 3 of
8
+ # the License, or (at your option) any later version.
9
+ #
10
+ # MExiCo is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ # GNU Lesser General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU Lesser General Public
16
+ # License along with MExiCo. If not, see
17
+ # <http://www.gnu.org/licenses/>.
18
+
19
+ require 'spec_helper'
20
+
21
+ describe Mexico::FileSystem::FiestaDocument do
22
+
23
+ # set up an initial corpus representation from the example file
24
+ before(:each) do
25
+ @basepath = File.join(File.dirname(__FILE__), '..','..','assets','mexico-testcorpus','mexico')
26
+ @corpus = Mexico::FileSystem::Corpus.open(@basepath)
27
+ @audio_resource = @corpus.resources[0]
28
+ @trans_resource = @corpus.resources[1]
29
+ end
30
+
31
+ context 'mexico utterance corpus' do
32
+
33
+ it "should have the correct resources to begin with" do
34
+ @corpus.resources.size.should eq 2
35
+ end
36
+
37
+ end
38
+
39
+ end
data/test/helper.rb ADDED
@@ -0,0 +1,19 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'minitest/unit'
11
+
12
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ require 'mexico'
15
+
16
+ class MiniTest::Unit::TestCase
17
+ end
18
+
19
+ MiniTest::Unit.autorun
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestMexico < MiniTest::Unit::TestCase
4
+ def test_something_for_real
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
metadata ADDED
@@ -0,0 +1,357 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mexico
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.9
5
+ platform: ruby
6
+ authors:
7
+ - Peter Menke
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-02-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: roxml
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
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: builder
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ! '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
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: colorize
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rdf
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: 1.0.7
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: 1.0.7
83
+ - !ruby/object:Gem::Dependency
84
+ name: rdf-turtle
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 1.0.8
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: 1.0.8
97
+ - !ruby/object:Gem::Dependency
98
+ name: rdf-rdfxml
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: poseidon
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: 1.1.1
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ~>
123
+ - !ruby/object:Gem::Version
124
+ version: 1.1.1
125
+ - !ruby/object:Gem::Dependency
126
+ name: minitest
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ! '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ! '>='
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: yard
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ~>
144
+ - !ruby/object:Gem::Version
145
+ version: 0.8.3
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ~>
151
+ - !ruby/object:Gem::Version
152
+ version: 0.8.3
153
+ - !ruby/object:Gem::Dependency
154
+ name: bundler
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ! '>='
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ! '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: jeweler
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ~>
172
+ - !ruby/object:Gem::Version
173
+ version: 2.0.0
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ~>
179
+ - !ruby/object:Gem::Version
180
+ version: 2.0.0
181
+ - !ruby/object:Gem::Dependency
182
+ name: simplecov
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ! '>='
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ! '>='
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: rspec
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ~>
200
+ - !ruby/object:Gem::Version
201
+ version: 2.12.0
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ~>
207
+ - !ruby/object:Gem::Version
208
+ version: 2.12.0
209
+ description: MExiCo is a library and API for the management of multimodal experimental
210
+ corpora.
211
+ email: pmenke@googlemail.com
212
+ executables:
213
+ - mexico
214
+ extensions: []
215
+ extra_rdoc_files:
216
+ - LICENSE.txt
217
+ - README.md
218
+ files:
219
+ - .document
220
+ - .gitmodules
221
+ - .project
222
+ - .rspec
223
+ - Gemfile
224
+ - LICENSE.txt
225
+ - README.md
226
+ - Rakefile
227
+ - VERSION
228
+ - assets/TESTCORPUS/Corpus.xml
229
+ - assets/fiesta/b6/layer_connectors.fst
230
+ - assets/fiesta/b6/match_jones_161_CM_neu_checked.parsed.xml
231
+ - assets/fiesta/elan/ElanFileFormat.eaf
232
+ - assets/fiesta/elan/ElanFileFormat.pfsx
233
+ - assets/fiesta/elan/ElanFileFormatComplexInterLayerLinks.eaf
234
+ - assets/fiesta/elan/reflinks_example.eaf
235
+ - assets/fiesta/elan/test_all_interlayerrelations.fst
236
+ - assets/fiesta/head/head.fst
237
+ - assets/fiesta/praat/mexico.ShortTextGrid
238
+ - assets/fiesta/praat/mexico.TextGrid
239
+ - assets/helpers/collection_ref_handler.rb
240
+ - assets/helpers/id_ref_handler.rb
241
+ - assets/helpers/roxml_attribute_handler.rb
242
+ - assets/out_only/construct_and_write_spec.toe
243
+ - assets/spec.html
244
+ - bin/mexico
245
+ - features/mexico.feature
246
+ - features/step_definitions/mexico_steps.rb
247
+ - features/support/env.rb
248
+ - info/releasenotes/0.0.1.md
249
+ - info/releasenotes/0.0.2.md
250
+ - info/releasenotes/0.0.3.md
251
+ - info/releasenotes/0.0.4.md
252
+ - info/releasenotes/0.0.5.md
253
+ - info/releasenotes/0.0.6.md
254
+ - info/releasenotes/0.0.7.md
255
+ - info/releasenotes/0.0.8.md
256
+ - info/releasenotes/0.0.9.md
257
+ - lib/mexico.rb
258
+ - lib/mexico/cmd.rb
259
+ - lib/mexico/constants.rb
260
+ - lib/mexico/constraints.rb
261
+ - lib/mexico/constraints/constraint.rb
262
+ - lib/mexico/constraints/fiesta_constraints.rb
263
+ - lib/mexico/core.rb
264
+ - lib/mexico/core/corpus_core.rb
265
+ - lib/mexico/core/design_core.rb
266
+ - lib/mexico/core/media_type.rb
267
+ - lib/mexico/fiesta.rb
268
+ - lib/mexico/fiesta/interfaces.rb
269
+ - lib/mexico/fiesta/interfaces/b6_chat_game_interface.rb
270
+ - lib/mexico/fiesta/interfaces/elan_interface.rb
271
+ - lib/mexico/fiesta/interfaces/short_text_grid_interface.rb
272
+ - lib/mexico/fiesta/interfaces/text_grid_interface.rb
273
+ - lib/mexico/file_system.rb
274
+ - lib/mexico/file_system/bound_to_corpus.rb
275
+ - lib/mexico/file_system/corpus.rb
276
+ - lib/mexico/file_system/data.rb
277
+ - lib/mexico/file_system/design.rb
278
+ - lib/mexico/file_system/design_component.rb
279
+ - lib/mexico/file_system/entry.rb
280
+ - lib/mexico/file_system/fiesta_document.rb
281
+ - lib/mexico/file_system/fiesta_map.rb
282
+ - lib/mexico/file_system/head.rb
283
+ - lib/mexico/file_system/id_ref.rb
284
+ - lib/mexico/file_system/implicit_item_link.rb
285
+ - lib/mexico/file_system/interval_link.rb
286
+ - lib/mexico/file_system/item.rb
287
+ - lib/mexico/file_system/item_link.rb
288
+ - lib/mexico/file_system/item_links_proxy.rb
289
+ - lib/mexico/file_system/layer.rb
290
+ - lib/mexico/file_system/layer_connector.rb
291
+ - lib/mexico/file_system/layer_link.rb
292
+ - lib/mexico/file_system/local_file.rb
293
+ - lib/mexico/file_system/participant.rb
294
+ - lib/mexico/file_system/participant_role.rb
295
+ - lib/mexico/file_system/point_link.rb
296
+ - lib/mexico/file_system/property.rb
297
+ - lib/mexico/file_system/property_map.rb
298
+ - lib/mexico/file_system/resource.rb
299
+ - lib/mexico/file_system/scale.rb
300
+ - lib/mexico/file_system/section.rb
301
+ - lib/mexico/file_system/static_collection_ref.rb
302
+ - lib/mexico/file_system/template.rb
303
+ - lib/mexico/file_system/trial.rb
304
+ - lib/mexico/file_system/url.rb
305
+ - lib/mexico/not_yet_implemented_error.rb
306
+ - lib/mexico/util.rb
307
+ - lib/mexico/util/fancy_container.rb
308
+ - spec/constraints/constraints_spec.rb
309
+ - spec/core/media_type_spec.rb
310
+ - spec/fiesta/b6_spec.rb
311
+ - spec/fiesta/elan_spec.rb
312
+ - spec/fiesta/head_spec.rb
313
+ - spec/fiesta/praat_spec.rb
314
+ - spec/fiesta/read_spec.rb
315
+ - spec/file_system_based/better_collection_spec.rb
316
+ - spec/file_system_based/corpus_spec.rb
317
+ - spec/file_system_based/design_spec.rb
318
+ - spec/file_system_based/inter_links_spec.rb
319
+ - spec/file_system_based/item_links_spec.rb
320
+ - spec/file_system_based/rdf_spec.rb
321
+ - spec/file_system_based/resource_spec.rb
322
+ - spec/file_system_based/trial_spec.rb
323
+ - spec/spec_helper.rb
324
+ - spec/toe/construct_and_write_spec.rb
325
+ - spec/toe/construction_spec.rb
326
+ - spec/toe/item_spec.rb
327
+ - spec/toe/layer_spec.rb
328
+ - spec/toe/scale_spec.rb
329
+ - spec/toe/toe_document_spec.rb
330
+ - test/helper.rb
331
+ - test/test_mexico.rb
332
+ homepage: http://github.com/sfb673/mexico
333
+ licenses:
334
+ - LGPL Version 3
335
+ metadata: {}
336
+ post_install_message:
337
+ rdoc_options: []
338
+ require_paths:
339
+ - lib
340
+ required_ruby_version: !ruby/object:Gem::Requirement
341
+ requirements:
342
+ - - ! '>='
343
+ - !ruby/object:Gem::Version
344
+ version: '0'
345
+ required_rubygems_version: !ruby/object:Gem::Requirement
346
+ requirements:
347
+ - - ! '>='
348
+ - !ruby/object:Gem::Version
349
+ version: '0'
350
+ requirements: []
351
+ rubyforge_project:
352
+ rubygems_version: 2.2.2
353
+ signing_key:
354
+ specification_version: 4
355
+ summary: MExiCo is a library and API for the management of multimodal experimental
356
+ corpora.
357
+ test_files: []