tracksperanto 1.7.2 → 1.7.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.7.3 / 2010-02-02
2
+
3
+ * Fixed the --only option in the commandline binary
4
+
1
5
  === 1.7.2 / 2010-01-31
2
6
 
3
7
  * Add a Lerp middleware that linearly interpolates missing keyframes (USE CAREFULLY!)
data/bin/tracksperanto CHANGED
@@ -113,7 +113,7 @@ pipe.progress_block = Spinner.new.method(:spin).to_proc
113
113
 
114
114
  if sole_format
115
115
  begin
116
- pipe.exporters = [Tracksperanto::Export.get_exporter(sole_format)]
116
+ pipe.exporters = [Tracksperanto.get_exporter(sole_format)]
117
117
  rescue NameError
118
118
  STDERR.puts "Unknown exporter #{sole_format}. Available exporters: #{writers.join(", ")}"
119
119
  exit(-1)
@@ -2,10 +2,6 @@
2
2
  class Tracksperanto::Middleware::Lerp < Tracksperanto::Middleware::Base
3
3
  attr_accessor :enabled
4
4
 
5
- def initialize(*whatever)
6
- super
7
- end
8
-
9
5
  def end_tracker_segment
10
6
  @last_f, @last_x, @last_y, @last_res = nil, nil, nil, nil
11
7
  super
data/lib/tracksperanto.rb CHANGED
@@ -4,7 +4,7 @@ require 'tempfile'
4
4
 
5
5
  module Tracksperanto
6
6
  PATH = File.expand_path(File.dirname(__FILE__))
7
- VERSION = '1.7.2'
7
+ VERSION = '1.7.3'
8
8
 
9
9
  module Import; end
10
10
  module Export; end
@@ -53,6 +53,9 @@ class TracksperantoTest < Test::Unit::TestCase
53
53
 
54
54
  i1 = Tracksperanto.get_exporter("SynThEyes")
55
55
  assert_equal i1, Tracksperanto::Export::SynthEyes
56
+
57
+ i1 = Tracksperanto.get_exporter("SynthEyes")
58
+ assert_equal i1, Tracksperanto::Export::SynthEyes
56
59
  end
57
60
 
58
61
  def test_get_unknown_exporter_should_raise
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.7.2
4
+ version: 1.7.3
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: 2010-01-31 00:00:00 +01:00
12
+ date: 2010-02-02 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency