tracksperanto 1.5.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/.DS_Store ADDED
Binary file
data/Manifest.txt CHANGED
@@ -1,8 +1,10 @@
1
+ .DS_Store
1
2
  History.txt
2
3
  Manifest.txt
3
4
  README.txt
4
5
  Rakefile
5
6
  bin/tracksperanto
7
+ lib/.DS_Store
6
8
  lib/export/base.rb
7
9
  lib/export/equalizer3.rb
8
10
  lib/export/equalizer4.rb
@@ -42,8 +44,11 @@ lib/tracksperanto/ext_io.rb
42
44
  lib/tracksperanto/format_detector.rb
43
45
  lib/tracksperanto/keyframe.rb
44
46
  lib/tracksperanto/safety.rb
47
+ lib/tracksperanto/simple_export.rb
45
48
  lib/tracksperanto/tracker.rb
46
49
  lib/tracksperanto/zip_tuples.rb
50
+ test/.DS_Store
51
+ test/export/.DS_Store
47
52
  test/export/README_EXPORT_TESTS.txt
48
53
  test/export/samples/ref_Mayalive.txt
49
54
  test/export/samples/ref_Mayalive_CustomAspect.txt
@@ -67,6 +72,8 @@ test/export/test_pftrack_export.rb
67
72
  test/export/test_shake_export.rb
68
73
  test/export/test_syntheyes_export.rb
69
74
  test/helper.rb
75
+ test/import/.DS_Store
76
+ test/import/samples/.DS_Store
70
77
  test/import/samples/3de_export_cube.txt
71
78
  test/import/samples/3de_export_v3.txt
72
79
  test/import/samples/flyover2DP_syntheyes.txt
@@ -109,5 +116,6 @@ test/test_const_name.rb
109
116
  test/test_extio.rb
110
117
  test/test_format_detector.rb
111
118
  test/test_keyframe.rb
119
+ test/test_simple_export.rb
112
120
  test/test_tracker.rb
113
121
  tracksperanto.gemspec
data/README.txt CHANGED
@@ -92,7 +92,7 @@ Middlewares. Any processing chain (called a Pipeline) usually works like this:
92
92
  keyframes are extracted, converting them to
93
93
  the internal representation.
94
94
  * Trackers and their keyframes are dumped to all export
95
- formats Tracksperanto supports, optionally passing through middleware
95
+ formats Tracksperanto supports, optionally passing through Middleware
96
96
 
97
97
  == Importing your own formats
98
98
 
data/lib/.DS_Store ADDED
Binary file
data/lib/export/base.rb CHANGED
@@ -4,6 +4,7 @@
4
4
  # (the last keyframe has been sent)
5
5
  class Tracksperanto::Export::Base
6
6
  include Tracksperanto::ConstName
7
+ include Tracksperanto::SimpleExport
7
8
 
8
9
  attr_reader :io
9
10
 
@@ -1,5 +1,3 @@
1
- require 'tempfile'
2
-
3
1
  # Export for 3DE v3 point files
4
2
  class Tracksperanto::Export::Equalizer3 < Tracksperanto::Export::Base
5
3
 
@@ -35,8 +33,13 @@ class Tracksperanto::Export::Equalizer3 < Tracksperanto::Export::Base
35
33
  @io.puts(preamble)
36
34
  @internal_io.rewind
37
35
  @io.puts(@internal_io.read)
38
- @internal_io = nil # Discard for GC
39
- @io.puts("")
36
+ discard_io
37
+ @io.puts("") # Newline at end
40
38
  end
41
39
 
40
+ private
41
+ def discard_io
42
+ @internal_io.close
43
+ @internal_io = nil
44
+ end
42
45
  end
@@ -13,13 +13,13 @@ class Tracksperanto::Export::Equalizer4 < Tracksperanto::Export::Base
13
13
  def start_export( img_width, img_height)
14
14
  # 3DE needs to know the number of points in advance,
15
15
  # so we will just buffer to a StringIO
16
- @internal_io, @num_of_trackers = StringIO.new, 0
16
+ @internal_io, @num_of_trackers = Tempfile.new(self.class.to_s), 0
17
17
  end
18
18
 
19
19
  def start_tracker_segment(tracker_name)
20
20
  @internal_io.puts(tracker_name)
21
21
  @num_of_trackers += 1
22
- @tracker_buffer, @num_of_kfs = StringIO.new, 0
22
+ @tracker_buffer, @num_of_kfs = Tempfile.new(self.class.to_s), 0
23
23
  end
24
24
 
25
25
  def export_point(frame, abs_float_x, abs_float_y, float_residual)
@@ -28,14 +28,17 @@ class Tracksperanto::Export::Equalizer4 < Tracksperanto::Export::Base
28
28
  end
29
29
 
30
30
  def end_tracker_segment
31
+ @tracker_buffer.rewind
31
32
  @internal_io.puts("0") # Color of the point, 0 is red
32
33
  @internal_io.puts(@num_of_kfs)
33
- @internal_io.puts(@tracker_buffer.string)
34
+ @internal_io.puts(@tracker_buffer.read)
35
+ @tracker_buffer.close
34
36
  end
35
37
 
36
38
  def end_export
39
+ @internal_io.rewind
37
40
  @io.puts(@num_of_trackers)
38
- @io.puts(@internal_io.string)
41
+ @io.puts(@internal_io.read)
39
42
  end
40
43
 
41
44
  end
@@ -5,6 +5,7 @@ class Tracksperanto::Middleware::Base
5
5
  include Tracksperanto::Casts
6
6
  include Tracksperanto::BlockInit
7
7
  include Tracksperanto::ConstName
8
+ include Tracksperanto::SimpleExport
8
9
 
9
10
  # Used to automatically register your middleware in Tracksperanto.middlewares
10
11
  # Normally you wouldn't need to override this
@@ -2,22 +2,25 @@ require File.dirname(__FILE__) + '/scaler'
2
2
 
3
3
  # This middleware reformats (scales) the track setup to a specific pixel resolution. Very useful for
4
4
  # applying proxy tracks to full-res images
5
- class Tracksperanto::Middleware::Reformat < Tracksperanto::Middleware::Scaler
5
+ class Tracksperanto::Middleware::Reformat < Tracksperanto::Middleware::Base
6
6
 
7
7
  # To which format we have to scale
8
8
  attr_accessor :width, :height
9
9
  cast_to_int :width, :height
10
10
 
11
- private :x_factor=, :y_factor=
12
-
13
11
  # Called on export start
14
12
  def start_export( img_width, img_height)
15
- @width ||= img_width
13
+ @width ||= img_width # If they be nil
16
14
  @height ||= img_height
17
15
 
18
- self.x_factor, self.y_factor = (@width / img_width.to_f), (@height / img_height.to_f)
19
- set_residual_factor
20
- # Do not call super since it scales by itself :-)
21
- @exporter.start_export(@width, @height)
16
+ x_factor, y_factor = (@width / img_width.to_f), (@height / img_height.to_f)
17
+
18
+ @stash = @exporter
19
+ @exporter = Tracksperanto::Middleware::Scaler.new(@exporter, :x_factor => x_factor, :y_factor => y_factor)
20
+ super
21
+ end
22
+
23
+ def end_export
24
+ @exporter = @stash
22
25
  end
23
26
  end
data/lib/tracksperanto.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  require 'stringio'
2
2
  require 'delegate'
3
-
3
+ require 'tempfile'
4
4
 
5
5
  module Tracksperanto
6
6
  PATH = File.expand_path(File.dirname(__FILE__))
7
- VERSION = '1.5.0'
7
+ VERSION = '1.5.1'
8
8
 
9
9
  module Import; end
10
10
  module Export; end
@@ -42,7 +42,7 @@ module Tracksperanto
42
42
 
43
43
  end
44
44
 
45
- %w( const_name casts block_init safety zip_tuples keyframe tracker format_detector ext_io).each do | submodule |
45
+ %w( const_name casts block_init safety zip_tuples keyframe tracker format_detector ext_io simple_export).each do | submodule |
46
46
  require File.join(Tracksperanto::PATH, "tracksperanto", submodule)
47
47
  end
48
48
 
@@ -0,0 +1,20 @@
1
+ # Implements just_export for quickly pushing trackers out through an exporter without using Pipeline
2
+ # plumbing
3
+ module Tracksperanto::SimpleExport
4
+ # Acccepts an array of Tracker objects and comp size.
5
+ # Before calling this, initialize the exporter with the proper
6
+ # IO handle
7
+ def just_export(trackers_array, comp_width, comp_height)
8
+ start_export(comp_width, comp_height)
9
+ trackers_array.each do | t |
10
+ start_tracker_segment(t.name)
11
+ t.each do | kf |
12
+ export_point(kf.frame, kf.abs_x, kf.abs_y, kf.residual)
13
+ end
14
+ end_tracker_segment
15
+ end
16
+ end_export
17
+ end
18
+ end
19
+
20
+
data/test/.DS_Store ADDED
Binary file
Binary file
Binary file
Binary file
@@ -2,7 +2,7 @@ require File.dirname(__FILE__) + '/../helper'
2
2
 
3
3
  class ReformatMiddlewareTest < Test::Unit::TestCase
4
4
  def test_inherits_and_thus_complies
5
- assert Tracksperanto::Middleware::Reformat.ancestors.include?(Tracksperanto::Middleware::Scaler)
5
+ assert Tracksperanto::Middleware::Reformat.ancestors.include?(Tracksperanto::Middleware::Base)
6
6
  end
7
7
 
8
8
  def test_default_params_zeroed
@@ -29,7 +29,5 @@ class ReformatMiddlewareTest < Test::Unit::TestCase
29
29
  m = Tracksperanto::Middleware::Reformat.new(receiver, :width => 1920, :height => 1080)
30
30
 
31
31
  m.start_export(720, 576)
32
- assert_in_delta upscale_h, m.send(:x_factor), 0.00001, "The middleware should have configured the x factor on export start"
33
- assert_in_delta upscale_v, m.send(:y_factor), 0.00001, "The middleware should have configured the y factor on export start"
34
32
  end
35
33
  end
@@ -0,0 +1,22 @@
1
+ require File.dirname(__FILE__) + '/helper'
2
+
3
+ class SimpleExportTest < Test::Unit::TestCase
4
+
5
+ class Probe
6
+ include Tracksperanto::SimpleExport
7
+ end
8
+
9
+ def test_message_sends
10
+ probe = Probe.new
11
+ flexmock(probe).should_receive(:start_export).with(1920, 1080).once
12
+ flexmock(probe).should_receive(:start_tracker_segment).with("Foo").once
13
+ flexmock(probe).should_receive(:export_point).with(2, 345.0, 678.0, 0.0).once
14
+ flexmock(probe).should_receive(:end_tracker_segment).once
15
+ flexmock(probe).should_receive(:end_export).once
16
+
17
+ t = Tracksperanto::Tracker.new(:name => "Foo")
18
+ t.keyframe! :frame => 2, :abs_x => 345.0, :abs_y => 678.0, :residual => 0.0
19
+ probe.just_export([t], 1920, 1080)
20
+ end
21
+
22
+ end
@@ -1,18 +1,18 @@
1
- # -*- encoding: utf-8 -*-
1
+ # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{tracksperanto}
5
- s.version = "1.4.0"
5
+ s.version = "1.5.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Julik Tarkhanov"]
9
- s.date = %q{2009-10-09}
9
+ s.date = %q{2009-10-10}
10
10
  s.default_executable = %q{tracksperanto}
11
11
  s.description = %q{Tracksperanto is a universal 2D-track translator between many apps.}
12
12
  s.email = ["me@julik.nl"]
13
13
  s.executables = ["tracksperanto"]
14
14
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
15
- s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/tracksperanto", "lib/export/base.rb", "lib/export/equalizer3.rb", "lib/export/equalizer4.rb", "lib/export/match_mover.rb", "lib/export/maya_live.rb", "lib/export/mux.rb", "lib/export/nuke_script.rb", "lib/export/pftrack.rb", "lib/export/pftrack_5.rb", "lib/export/shake_text.rb", "lib/export/syntheyes.rb", "lib/import/base.rb", "lib/import/equalizer3.rb", "lib/import/equalizer4.rb", "lib/import/flame_stabilizer.rb", "lib/import/match_mover.rb", "lib/import/maya_live.rb", "lib/import/nuke_script.rb", "lib/import/pftrack.rb", "lib/import/shake_grammar/catcher.rb", "lib/import/shake_grammar/lexer.rb", "lib/import/shake_script.rb", "lib/import/shake_text.rb", "lib/import/syntheyes.rb", "lib/middleware/base.rb", "lib/middleware/golden.rb", "lib/middleware/reformat.rb", "lib/middleware/scaler.rb", "lib/middleware/shift.rb", "lib/middleware/slipper.rb", "lib/pipeline/base.rb", "lib/tracksperanto.rb", "lib/tracksperanto/block_init.rb", "lib/tracksperanto/casts.rb", "lib/tracksperanto/const_name.rb", "lib/tracksperanto/ext_io.rb", "lib/tracksperanto/format_detector.rb", "lib/tracksperanto/keyframe.rb", "lib/tracksperanto/safety.rb", "lib/tracksperanto/tracker.rb", "lib/tracksperanto/zip_tuples.rb", "test/export/README_EXPORT_TESTS.txt", "test/export/samples/ref_Mayalive.txt", "test/export/samples/ref_Mayalive_CustomAspect.txt", "test/export/samples/ref_NukeScript.nk", "test/export/samples/ref_NukeScript.nk.autosave", "test/export/samples/ref_PFTrack.2dt", "test/export/samples/ref_PFTrack5.2dt", "test/export/samples/ref_ShakeText.txt", "test/export/samples/ref_Syntheyes.txt", "test/export/samples/ref_equalizer.txt", "test/export/samples/ref_equalizer3.txt", "test/export/samples/ref_matchmover.rz2", "test/export/test_equalizer3_export.rb", "test/export/test_equalizer_export.rb", "test/export/test_match_mover_export.rb", "test/export/test_maya_live_export.rb", "test/export/test_mux.rb", "test/export/test_nuke_export.rb", "test/export/test_pftrack5_export.rb", "test/export/test_pftrack_export.rb", "test/export/test_shake_export.rb", "test/export/test_syntheyes_export.rb", "test/helper.rb", "test/import/samples/3de_export_cube.txt", "test/import/samples/3de_export_v3.txt", "test/import/samples/flyover2DP_syntheyes.txt", "test/import/samples/four_tracks_in_one_matchmove.shk", "test/import/samples/four_tracks_in_one_stabilizer.shk", "test/import/samples/fromCombustion_fromMidClip_wSnap.stabilizer", "test/import/samples/garage.2dt", "test/import/samples/hugeFlameSetup.stabilizer", "test/import/samples/kipPointsMatchmover.rz2", "test/import/samples/mayalive_kipShot.txt", "test/import/samples/megaTrack.action.3dtrack.stabilizer", "test/import/samples/one_shake_tracker.txt", "test/import/samples/one_shake_tracker_from_first.txt", "test/import/samples/one_tracker_with_break.nk", "test/import/samples/one_tracker_with_break_in_grp.nk", "test/import/samples/shake_tracker_nodes.shk", "test/import/samples/shake_tracker_nodes_to_syntheyes.txt", "test/import/samples/sourcefile_pftrack.2dt", "test/import/samples/three_tracks_in_one_stabilizer.shk", "test/import/samples/two_shake_trackers.txt", "test/import/samples/two_tracks_in_one_tracker.shk", "test/import/test_3de_import.rb", "test/import/test_3de_import3.rb", "test/import/test_flame_import.rb", "test/import/test_match_mover_import.rb", "test/import/test_maya_live_import.rb", "test/import/test_nuke_import.rb", "test/import/test_pftrack_import.rb", "test/import/test_shake_catcher.rb", "test/import/test_shake_lexer.rb", "test/import/test_shake_script_import.rb", "test/import/test_shake_text_import.rb", "test/import/test_syntheyes_import.rb", "test/middleware/test_golden_middleware.rb", "test/middleware/test_reformat_middleware.rb", "test/middleware/test_scaler_middleware.rb", "test/middleware/test_shift_middleware.rb", "test/middleware/test_slip_middleware.rb", "test/test_const_name.rb", "test/test_extio.rb", "test/test_format_detector.rb", "test/test_keyframe.rb", "test/test_tracker.rb", "tracksperanto.gemspec"]
15
+ s.files = [".DS_Store", "History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/tracksperanto", "lib/.DS_Store", "lib/export/base.rb", "lib/export/equalizer3.rb", "lib/export/equalizer4.rb", "lib/export/match_mover.rb", "lib/export/maya_live.rb", "lib/export/mux.rb", "lib/export/nuke_script.rb", "lib/export/pftrack.rb", "lib/export/pftrack_5.rb", "lib/export/shake_text.rb", "lib/export/syntheyes.rb", "lib/import/base.rb", "lib/import/equalizer3.rb", "lib/import/equalizer4.rb", "lib/import/flame_stabilizer.rb", "lib/import/match_mover.rb", "lib/import/maya_live.rb", "lib/import/nuke_script.rb", "lib/import/pftrack.rb", "lib/import/shake_grammar/catcher.rb", "lib/import/shake_grammar/lexer.rb", "lib/import/shake_script.rb", "lib/import/shake_text.rb", "lib/import/syntheyes.rb", "lib/middleware/base.rb", "lib/middleware/golden.rb", "lib/middleware/reformat.rb", "lib/middleware/scaler.rb", "lib/middleware/shift.rb", "lib/middleware/slipper.rb", "lib/pipeline/base.rb", "lib/tracksperanto.rb", "lib/tracksperanto/block_init.rb", "lib/tracksperanto/casts.rb", "lib/tracksperanto/const_name.rb", "lib/tracksperanto/ext_io.rb", "lib/tracksperanto/format_detector.rb", "lib/tracksperanto/keyframe.rb", "lib/tracksperanto/safety.rb", "lib/tracksperanto/simple_export.rb", "lib/tracksperanto/tracker.rb", "lib/tracksperanto/zip_tuples.rb", "test/.DS_Store", "test/export/.DS_Store", "test/export/README_EXPORT_TESTS.txt", "test/export/samples/ref_Mayalive.txt", "test/export/samples/ref_Mayalive_CustomAspect.txt", "test/export/samples/ref_NukeScript.nk", "test/export/samples/ref_NukeScript.nk.autosave", "test/export/samples/ref_PFTrack.2dt", "test/export/samples/ref_PFTrack5.2dt", "test/export/samples/ref_ShakeText.txt", "test/export/samples/ref_Syntheyes.txt", "test/export/samples/ref_equalizer.txt", "test/export/samples/ref_equalizer3.txt", "test/export/samples/ref_matchmover.rz2", "test/export/test_equalizer3_export.rb", "test/export/test_equalizer_export.rb", "test/export/test_match_mover_export.rb", "test/export/test_maya_live_export.rb", "test/export/test_mux.rb", "test/export/test_nuke_export.rb", "test/export/test_pftrack5_export.rb", "test/export/test_pftrack_export.rb", "test/export/test_shake_export.rb", "test/export/test_syntheyes_export.rb", "test/helper.rb", "test/import/.DS_Store", "test/import/samples/.DS_Store", "test/import/samples/3de_export_cube.txt", "test/import/samples/3de_export_v3.txt", "test/import/samples/flyover2DP_syntheyes.txt", "test/import/samples/four_tracks_in_one_matchmove.shk", "test/import/samples/four_tracks_in_one_stabilizer.shk", "test/import/samples/fromCombustion_fromMidClip_wSnap.stabilizer", "test/import/samples/garage.2dt", "test/import/samples/hugeFlameSetup.stabilizer", "test/import/samples/kipPointsMatchmover.rz2", "test/import/samples/mayalive_kipShot.txt", "test/import/samples/megaTrack.action.3dtrack.stabilizer", "test/import/samples/one_shake_tracker.txt", "test/import/samples/one_shake_tracker_from_first.txt", "test/import/samples/one_tracker_with_break.nk", "test/import/samples/one_tracker_with_break_in_grp.nk", "test/import/samples/shake_tracker_nodes.shk", "test/import/samples/shake_tracker_nodes_to_syntheyes.txt", "test/import/samples/sourcefile_pftrack.2dt", "test/import/samples/three_tracks_in_one_stabilizer.shk", "test/import/samples/two_shake_trackers.txt", "test/import/samples/two_tracks_in_one_tracker.shk", "test/import/test_3de_import.rb", "test/import/test_3de_import3.rb", "test/import/test_flame_import.rb", "test/import/test_match_mover_import.rb", "test/import/test_maya_live_import.rb", "test/import/test_nuke_import.rb", "test/import/test_pftrack_import.rb", "test/import/test_shake_catcher.rb", "test/import/test_shake_lexer.rb", "test/import/test_shake_script_import.rb", "test/import/test_shake_text_import.rb", "test/import/test_syntheyes_import.rb", "test/middleware/test_golden_middleware.rb", "test/middleware/test_reformat_middleware.rb", "test/middleware/test_scaler_middleware.rb", "test/middleware/test_shift_middleware.rb", "test/middleware/test_slip_middleware.rb", "test/test_const_name.rb", "test/test_extio.rb", "test/test_format_detector.rb", "test/test_keyframe.rb", "test/test_simple_export.rb", "test/test_tracker.rb", "tracksperanto.gemspec"]
16
16
  s.has_rdoc = true
17
17
  s.homepage = %q{http://guerilla-di.org/tracksperanto}
18
18
  s.rdoc_options = ["--main", "README.txt"]
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.rubyforge_project = %q{guerilla-di}
21
21
  s.rubygems_version = %q{1.3.1}
22
22
  s.summary = %q{Tracksperanto is a universal 2D-track translator between many apps.}
23
- s.test_files = ["test/export/test_equalizer3_export.rb", "test/export/test_equalizer_export.rb", "test/export/test_match_mover_export.rb", "test/export/test_maya_live_export.rb", "test/export/test_mux.rb", "test/export/test_nuke_export.rb", "test/export/test_pftrack5_export.rb", "test/export/test_pftrack_export.rb", "test/export/test_shake_export.rb", "test/export/test_syntheyes_export.rb", "test/import/test_3de_import.rb", "test/import/test_3de_import3.rb", "test/import/test_flame_import.rb", "test/import/test_match_mover_import.rb", "test/import/test_maya_live_import.rb", "test/import/test_nuke_import.rb", "test/import/test_pftrack_import.rb", "test/import/test_shake_catcher.rb", "test/import/test_shake_lexer.rb", "test/import/test_shake_script_import.rb", "test/import/test_shake_text_import.rb", "test/import/test_syntheyes_import.rb", "test/middleware/test_golden_middleware.rb", "test/middleware/test_reformat_middleware.rb", "test/middleware/test_scaler_middleware.rb", "test/middleware/test_shift_middleware.rb", "test/middleware/test_slip_middleware.rb", "test/test_const_name.rb", "test/test_extio.rb", "test/test_format_detector.rb", "test/test_keyframe.rb", "test/test_tracker.rb"]
23
+ s.test_files = ["test/export/test_equalizer3_export.rb", "test/export/test_equalizer_export.rb", "test/export/test_match_mover_export.rb", "test/export/test_maya_live_export.rb", "test/export/test_mux.rb", "test/export/test_nuke_export.rb", "test/export/test_pftrack5_export.rb", "test/export/test_pftrack_export.rb", "test/export/test_shake_export.rb", "test/export/test_syntheyes_export.rb", "test/import/test_3de_import.rb", "test/import/test_3de_import3.rb", "test/import/test_flame_import.rb", "test/import/test_match_mover_import.rb", "test/import/test_maya_live_import.rb", "test/import/test_nuke_import.rb", "test/import/test_pftrack_import.rb", "test/import/test_shake_catcher.rb", "test/import/test_shake_lexer.rb", "test/import/test_shake_script_import.rb", "test/import/test_shake_text_import.rb", "test/import/test_syntheyes_import.rb", "test/middleware/test_golden_middleware.rb", "test/middleware/test_reformat_middleware.rb", "test/middleware/test_scaler_middleware.rb", "test/middleware/test_shift_middleware.rb", "test/middleware/test_slip_middleware.rb", "test/test_const_name.rb", "test/test_extio.rb", "test/test_format_detector.rb", "test/test_keyframe.rb", "test/test_simple_export.rb", "test/test_tracker.rb"]
24
24
 
25
25
  if s.respond_to? :specification_version then
26
26
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tracksperanto
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-09 00:00:00 +02:00
12
+ date: 2009-10-10 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -44,11 +44,13 @@ extra_rdoc_files:
44
44
  - Manifest.txt
45
45
  - README.txt
46
46
  files:
47
+ - .DS_Store
47
48
  - History.txt
48
49
  - Manifest.txt
49
50
  - README.txt
50
51
  - Rakefile
51
52
  - bin/tracksperanto
53
+ - lib/.DS_Store
52
54
  - lib/export/base.rb
53
55
  - lib/export/equalizer3.rb
54
56
  - lib/export/equalizer4.rb
@@ -88,8 +90,11 @@ files:
88
90
  - lib/tracksperanto/format_detector.rb
89
91
  - lib/tracksperanto/keyframe.rb
90
92
  - lib/tracksperanto/safety.rb
93
+ - lib/tracksperanto/simple_export.rb
91
94
  - lib/tracksperanto/tracker.rb
92
95
  - lib/tracksperanto/zip_tuples.rb
96
+ - test/.DS_Store
97
+ - test/export/.DS_Store
93
98
  - test/export/README_EXPORT_TESTS.txt
94
99
  - test/export/samples/ref_Mayalive.txt
95
100
  - test/export/samples/ref_Mayalive_CustomAspect.txt
@@ -113,6 +118,8 @@ files:
113
118
  - test/export/test_shake_export.rb
114
119
  - test/export/test_syntheyes_export.rb
115
120
  - test/helper.rb
121
+ - test/import/.DS_Store
122
+ - test/import/samples/.DS_Store
116
123
  - test/import/samples/3de_export_cube.txt
117
124
  - test/import/samples/3de_export_v3.txt
118
125
  - test/import/samples/flyover2DP_syntheyes.txt
@@ -155,6 +162,7 @@ files:
155
162
  - test/test_extio.rb
156
163
  - test/test_format_detector.rb
157
164
  - test/test_keyframe.rb
165
+ - test/test_simple_export.rb
158
166
  - test/test_tracker.rb
159
167
  - tracksperanto.gemspec
160
168
  has_rdoc: true
@@ -216,4 +224,5 @@ test_files:
216
224
  - test/test_extio.rb
217
225
  - test/test_format_detector.rb
218
226
  - test/test_keyframe.rb
227
+ - test/test_simple_export.rb
219
228
  - test/test_tracker.rb