tracksperanto 2.9.1 → 2.9.2

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.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 2.9.2
2
+
3
+ * In the Maya locator export, do not advance the timebar when creating trackers. Refreshing all these viewports is SLOW.
4
+
1
5
  === 2.9.1
2
6
 
3
7
  * Adds an export module for Maya locators on an image plane
data/README.rdoc CHANGED
@@ -74,6 +74,10 @@ Import and export support:
74
74
  Import only:
75
75
  * Shake script (Tracker, Matchmove and Stabilize nodes embedded in ANY shake script)
76
76
 
77
+ Export only:
78
+ * Ruby (will make calls to Tracksperanto to create trackers/keyframes)
79
+ * Maya locators (animated locators on an image plane)
80
+
77
81
  == Modularity
78
82
 
79
83
  Tracksperanto is very modular and can process data passing through it (like
@@ -3,11 +3,8 @@
3
3
  class Tracksperanto::Export::MayaLocators < Tracksperanto::Export::Base
4
4
  PREAMBLE = 'polyPlane -name "TracksperantoImagePlane" -width %0.5f -height %0.5f;'
5
5
  LOCATOR_PREAMBLE = 'spaceLocator -name "%s" -p 0 0 0;'
6
- MOVE_TIMEBAR = 'currentTime %d;'
7
- KEYFRAME_TEMPLATE = 'setKeyframe -value %0.5f "%s.%s";';
8
-
9
- # Scaling factor multiplier
10
- attr_accessor :multiplier
6
+ KEYFRAME_TEMPLATE = 'setKeyframe -time %d -value %0.5f "%s.%s";';
7
+ MULTIPLIER = 10.0
11
8
 
12
9
  def self.desc_and_extension
13
10
  "mayaLocators.mel"
@@ -20,17 +17,14 @@ class Tracksperanto::Export::MayaLocators < Tracksperanto::Export::Base
20
17
  def start_export(w, h)
21
18
  # Pixel sizes are HUGE for maya. What we do is we assume that the width is 1,
22
19
  # and scale the height to that
23
- multiplier = self.multiplier || 10.0
24
-
25
- @factor = (1 / w.to_f) * multiplier
20
+ @factor = (1 / w.to_f) * MULTIPLIER
26
21
 
27
- @io.puts(PREAMBLE % [multiplier, h * @factor])
22
+ @io.puts(PREAMBLE % [MULTIPLIER, h * @factor])
28
23
  @io.puts('rotate -r -os 90;') # Position it in the XY plane
29
- @io.puts('move -r %0.5f %0.5f 0;' % [multiplier / 2.0, h * @factor / 2.0])
24
+ @io.puts('move -r %0.5f %0.5f 0;' % [MULTIPLIER / 2.0, h * @factor / 2.0])
30
25
  @group_members = ["TracksperantoImagePlane"]
31
26
  end
32
27
 
33
- # We accumulate a tracker and on end dump it out in one piece
34
28
  def start_tracker_segment(tracker_name)
35
29
  @locator_name = tracker_name
36
30
  @io.puts(LOCATOR_PREAMBLE % @locator_name)
@@ -38,13 +32,11 @@ class Tracksperanto::Export::MayaLocators < Tracksperanto::Export::Base
38
32
  end
39
33
 
40
34
  def export_point(frame, abs_float_x, abs_float_y, float_residual)
41
- @io.puts(MOVE_TIMEBAR % (frame + 1))
42
- @io.puts(KEYFRAME_TEMPLATE % [abs_float_x * @factor, @locator_name, "tx"])
43
- @io.puts(KEYFRAME_TEMPLATE % [abs_float_y * @factor, @locator_name, "ty"])
35
+ @io.puts(KEYFRAME_TEMPLATE % [frame + 1, abs_float_x * @factor, @locator_name, "tx"])
36
+ @io.puts(KEYFRAME_TEMPLATE % [frame + 1, abs_float_y * @factor, @locator_name, "ty"])
44
37
  end
45
38
 
46
39
  def end_export
47
- @io.puts(MOVE_TIMEBAR % 1)
48
40
  # Group all the stuff
49
41
  @io.puts('select -r %s;' % @group_members.join(' '))
50
42
  @io.puts('group -name TracksperantoGroup; xform -os -piv 0 0 0;')
data/lib/tracksperanto.rb CHANGED
@@ -8,7 +8,7 @@ require "progressive_io"
8
8
 
9
9
  module Tracksperanto
10
10
  PATH = File.expand_path(File.dirname(__FILE__))
11
- VERSION = '2.9.1'
11
+ VERSION = '2.9.2'
12
12
 
13
13
  module Import; end
14
14
  module Export; end
@@ -2,125 +2,85 @@ polyPlane -name "TracksperantoImagePlane" -width 10.00000 -height 5.62500;
2
2
  rotate -r -os 90;
3
3
  move -r 5.00000 2.81250 0;
4
4
  spaceLocator -name "Parabolic_1_from_top_left" -p 0 0 0;
5
- currentTime 1;
6
- setKeyframe -value 0.00000 "Parabolic_1_from_top_left.tx";
7
- setKeyframe -value 5.62500 "Parabolic_1_from_top_left.ty";
8
- currentTime 2;
9
- setKeyframe -value 0.50000 "Parabolic_1_from_top_left.tx";
10
- setKeyframe -value 4.55625 "Parabolic_1_from_top_left.ty";
11
- currentTime 3;
12
- setKeyframe -value 1.00000 "Parabolic_1_from_top_left.tx";
13
- setKeyframe -value 3.60000 "Parabolic_1_from_top_left.ty";
14
- currentTime 4;
15
- setKeyframe -value 1.50000 "Parabolic_1_from_top_left.tx";
16
- setKeyframe -value 2.75625 "Parabolic_1_from_top_left.ty";
17
- currentTime 5;
18
- setKeyframe -value 2.00000 "Parabolic_1_from_top_left.tx";
19
- setKeyframe -value 2.02500 "Parabolic_1_from_top_left.ty";
20
- currentTime 6;
21
- setKeyframe -value 2.50000 "Parabolic_1_from_top_left.tx";
22
- setKeyframe -value 1.40625 "Parabolic_1_from_top_left.ty";
23
- currentTime 7;
24
- setKeyframe -value 3.00000 "Parabolic_1_from_top_left.tx";
25
- setKeyframe -value 0.90000 "Parabolic_1_from_top_left.ty";
26
- currentTime 8;
27
- setKeyframe -value 3.50000 "Parabolic_1_from_top_left.tx";
28
- setKeyframe -value 0.50625 "Parabolic_1_from_top_left.ty";
29
- currentTime 9;
30
- setKeyframe -value 4.00000 "Parabolic_1_from_top_left.tx";
31
- setKeyframe -value 0.22500 "Parabolic_1_from_top_left.ty";
32
- currentTime 10;
33
- setKeyframe -value 4.50000 "Parabolic_1_from_top_left.tx";
34
- setKeyframe -value 0.05625 "Parabolic_1_from_top_left.ty";
35
- currentTime 13;
36
- setKeyframe -value 6.00000 "Parabolic_1_from_top_left.tx";
37
- setKeyframe -value 0.22500 "Parabolic_1_from_top_left.ty";
38
- currentTime 14;
39
- setKeyframe -value 6.50000 "Parabolic_1_from_top_left.tx";
40
- setKeyframe -value 0.50625 "Parabolic_1_from_top_left.ty";
41
- currentTime 15;
42
- setKeyframe -value 7.00000 "Parabolic_1_from_top_left.tx";
43
- setKeyframe -value 0.90000 "Parabolic_1_from_top_left.ty";
44
- currentTime 16;
45
- setKeyframe -value 7.50000 "Parabolic_1_from_top_left.tx";
46
- setKeyframe -value 1.40625 "Parabolic_1_from_top_left.ty";
47
- currentTime 17;
48
- setKeyframe -value 8.00000 "Parabolic_1_from_top_left.tx";
49
- setKeyframe -value 2.02500 "Parabolic_1_from_top_left.ty";
50
- currentTime 18;
51
- setKeyframe -value 8.50000 "Parabolic_1_from_top_left.tx";
52
- setKeyframe -value 2.75625 "Parabolic_1_from_top_left.ty";
53
- currentTime 19;
54
- setKeyframe -value 9.00000 "Parabolic_1_from_top_left.tx";
55
- setKeyframe -value 3.60000 "Parabolic_1_from_top_left.ty";
56
- currentTime 20;
57
- setKeyframe -value 9.50000 "Parabolic_1_from_top_left.tx";
58
- setKeyframe -value 4.55625 "Parabolic_1_from_top_left.ty";
59
- currentTime 21;
60
- setKeyframe -value 10.00000 "Parabolic_1_from_top_left.tx";
61
- setKeyframe -value 5.62500 "Parabolic_1_from_top_left.ty";
5
+ setKeyframe -time 1 -value 0.00000 "Parabolic_1_from_top_left.tx";
6
+ setKeyframe -time 1 -value 5.62500 "Parabolic_1_from_top_left.ty";
7
+ setKeyframe -time 2 -value 0.50000 "Parabolic_1_from_top_left.tx";
8
+ setKeyframe -time 2 -value 4.55625 "Parabolic_1_from_top_left.ty";
9
+ setKeyframe -time 3 -value 1.00000 "Parabolic_1_from_top_left.tx";
10
+ setKeyframe -time 3 -value 3.60000 "Parabolic_1_from_top_left.ty";
11
+ setKeyframe -time 4 -value 1.50000 "Parabolic_1_from_top_left.tx";
12
+ setKeyframe -time 4 -value 2.75625 "Parabolic_1_from_top_left.ty";
13
+ setKeyframe -time 5 -value 2.00000 "Parabolic_1_from_top_left.tx";
14
+ setKeyframe -time 5 -value 2.02500 "Parabolic_1_from_top_left.ty";
15
+ setKeyframe -time 6 -value 2.50000 "Parabolic_1_from_top_left.tx";
16
+ setKeyframe -time 6 -value 1.40625 "Parabolic_1_from_top_left.ty";
17
+ setKeyframe -time 7 -value 3.00000 "Parabolic_1_from_top_left.tx";
18
+ setKeyframe -time 7 -value 0.90000 "Parabolic_1_from_top_left.ty";
19
+ setKeyframe -time 8 -value 3.50000 "Parabolic_1_from_top_left.tx";
20
+ setKeyframe -time 8 -value 0.50625 "Parabolic_1_from_top_left.ty";
21
+ setKeyframe -time 9 -value 4.00000 "Parabolic_1_from_top_left.tx";
22
+ setKeyframe -time 9 -value 0.22500 "Parabolic_1_from_top_left.ty";
23
+ setKeyframe -time 10 -value 4.50000 "Parabolic_1_from_top_left.tx";
24
+ setKeyframe -time 10 -value 0.05625 "Parabolic_1_from_top_left.ty";
25
+ setKeyframe -time 13 -value 6.00000 "Parabolic_1_from_top_left.tx";
26
+ setKeyframe -time 13 -value 0.22500 "Parabolic_1_from_top_left.ty";
27
+ setKeyframe -time 14 -value 6.50000 "Parabolic_1_from_top_left.tx";
28
+ setKeyframe -time 14 -value 0.50625 "Parabolic_1_from_top_left.ty";
29
+ setKeyframe -time 15 -value 7.00000 "Parabolic_1_from_top_left.tx";
30
+ setKeyframe -time 15 -value 0.90000 "Parabolic_1_from_top_left.ty";
31
+ setKeyframe -time 16 -value 7.50000 "Parabolic_1_from_top_left.tx";
32
+ setKeyframe -time 16 -value 1.40625 "Parabolic_1_from_top_left.ty";
33
+ setKeyframe -time 17 -value 8.00000 "Parabolic_1_from_top_left.tx";
34
+ setKeyframe -time 17 -value 2.02500 "Parabolic_1_from_top_left.ty";
35
+ setKeyframe -time 18 -value 8.50000 "Parabolic_1_from_top_left.tx";
36
+ setKeyframe -time 18 -value 2.75625 "Parabolic_1_from_top_left.ty";
37
+ setKeyframe -time 19 -value 9.00000 "Parabolic_1_from_top_left.tx";
38
+ setKeyframe -time 19 -value 3.60000 "Parabolic_1_from_top_left.ty";
39
+ setKeyframe -time 20 -value 9.50000 "Parabolic_1_from_top_left.tx";
40
+ setKeyframe -time 20 -value 4.55625 "Parabolic_1_from_top_left.ty";
41
+ setKeyframe -time 21 -value 10.00000 "Parabolic_1_from_top_left.tx";
42
+ setKeyframe -time 21 -value 5.62500 "Parabolic_1_from_top_left.ty";
62
43
  spaceLocator -name "Parabolic_2_from_bottom_right" -p 0 0 0;
63
- currentTime 1;
64
- setKeyframe -value 10.00000 "Parabolic_2_from_bottom_right.tx";
65
- setKeyframe -value 0.00000 "Parabolic_2_from_bottom_right.ty";
66
- currentTime 2;
67
- setKeyframe -value 9.50000 "Parabolic_2_from_bottom_right.tx";
68
- setKeyframe -value 1.06875 "Parabolic_2_from_bottom_right.ty";
69
- currentTime 3;
70
- setKeyframe -value 9.00000 "Parabolic_2_from_bottom_right.tx";
71
- setKeyframe -value 2.02500 "Parabolic_2_from_bottom_right.ty";
72
- currentTime 4;
73
- setKeyframe -value 8.50000 "Parabolic_2_from_bottom_right.tx";
74
- setKeyframe -value 2.86875 "Parabolic_2_from_bottom_right.ty";
75
- currentTime 5;
76
- setKeyframe -value 8.00000 "Parabolic_2_from_bottom_right.tx";
77
- setKeyframe -value 3.60000 "Parabolic_2_from_bottom_right.ty";
78
- currentTime 6;
79
- setKeyframe -value 7.50000 "Parabolic_2_from_bottom_right.tx";
80
- setKeyframe -value 4.21875 "Parabolic_2_from_bottom_right.ty";
81
- currentTime 7;
82
- setKeyframe -value 7.00000 "Parabolic_2_from_bottom_right.tx";
83
- setKeyframe -value 4.72500 "Parabolic_2_from_bottom_right.ty";
84
- currentTime 8;
85
- setKeyframe -value 6.50000 "Parabolic_2_from_bottom_right.tx";
86
- setKeyframe -value 5.11875 "Parabolic_2_from_bottom_right.ty";
87
- currentTime 9;
88
- setKeyframe -value 6.00000 "Parabolic_2_from_bottom_right.tx";
89
- setKeyframe -value 5.40000 "Parabolic_2_from_bottom_right.ty";
90
- currentTime 10;
91
- setKeyframe -value 5.50000 "Parabolic_2_from_bottom_right.tx";
92
- setKeyframe -value 5.56875 "Parabolic_2_from_bottom_right.ty";
93
- currentTime 13;
94
- setKeyframe -value 4.00000 "Parabolic_2_from_bottom_right.tx";
95
- setKeyframe -value 5.40000 "Parabolic_2_from_bottom_right.ty";
96
- currentTime 14;
97
- setKeyframe -value 3.50000 "Parabolic_2_from_bottom_right.tx";
98
- setKeyframe -value 5.11875 "Parabolic_2_from_bottom_right.ty";
99
- currentTime 15;
100
- setKeyframe -value 3.00000 "Parabolic_2_from_bottom_right.tx";
101
- setKeyframe -value 4.72500 "Parabolic_2_from_bottom_right.ty";
102
- currentTime 16;
103
- setKeyframe -value 2.50000 "Parabolic_2_from_bottom_right.tx";
104
- setKeyframe -value 4.21875 "Parabolic_2_from_bottom_right.ty";
105
- currentTime 17;
106
- setKeyframe -value 2.00000 "Parabolic_2_from_bottom_right.tx";
107
- setKeyframe -value 3.60000 "Parabolic_2_from_bottom_right.ty";
108
- currentTime 18;
109
- setKeyframe -value 1.50000 "Parabolic_2_from_bottom_right.tx";
110
- setKeyframe -value 2.86875 "Parabolic_2_from_bottom_right.ty";
111
- currentTime 19;
112
- setKeyframe -value 1.00000 "Parabolic_2_from_bottom_right.tx";
113
- setKeyframe -value 2.02500 "Parabolic_2_from_bottom_right.ty";
114
- currentTime 20;
115
- setKeyframe -value 0.50000 "Parabolic_2_from_bottom_right.tx";
116
- setKeyframe -value 1.06875 "Parabolic_2_from_bottom_right.ty";
117
- currentTime 21;
118
- setKeyframe -value 0.00000 "Parabolic_2_from_bottom_right.tx";
119
- setKeyframe -value 0.00000 "Parabolic_2_from_bottom_right.ty";
44
+ setKeyframe -time 1 -value 10.00000 "Parabolic_2_from_bottom_right.tx";
45
+ setKeyframe -time 1 -value 0.00000 "Parabolic_2_from_bottom_right.ty";
46
+ setKeyframe -time 2 -value 9.50000 "Parabolic_2_from_bottom_right.tx";
47
+ setKeyframe -time 2 -value 1.06875 "Parabolic_2_from_bottom_right.ty";
48
+ setKeyframe -time 3 -value 9.00000 "Parabolic_2_from_bottom_right.tx";
49
+ setKeyframe -time 3 -value 2.02500 "Parabolic_2_from_bottom_right.ty";
50
+ setKeyframe -time 4 -value 8.50000 "Parabolic_2_from_bottom_right.tx";
51
+ setKeyframe -time 4 -value 2.86875 "Parabolic_2_from_bottom_right.ty";
52
+ setKeyframe -time 5 -value 8.00000 "Parabolic_2_from_bottom_right.tx";
53
+ setKeyframe -time 5 -value 3.60000 "Parabolic_2_from_bottom_right.ty";
54
+ setKeyframe -time 6 -value 7.50000 "Parabolic_2_from_bottom_right.tx";
55
+ setKeyframe -time 6 -value 4.21875 "Parabolic_2_from_bottom_right.ty";
56
+ setKeyframe -time 7 -value 7.00000 "Parabolic_2_from_bottom_right.tx";
57
+ setKeyframe -time 7 -value 4.72500 "Parabolic_2_from_bottom_right.ty";
58
+ setKeyframe -time 8 -value 6.50000 "Parabolic_2_from_bottom_right.tx";
59
+ setKeyframe -time 8 -value 5.11875 "Parabolic_2_from_bottom_right.ty";
60
+ setKeyframe -time 9 -value 6.00000 "Parabolic_2_from_bottom_right.tx";
61
+ setKeyframe -time 9 -value 5.40000 "Parabolic_2_from_bottom_right.ty";
62
+ setKeyframe -time 10 -value 5.50000 "Parabolic_2_from_bottom_right.tx";
63
+ setKeyframe -time 10 -value 5.56875 "Parabolic_2_from_bottom_right.ty";
64
+ setKeyframe -time 13 -value 4.00000 "Parabolic_2_from_bottom_right.tx";
65
+ setKeyframe -time 13 -value 5.40000 "Parabolic_2_from_bottom_right.ty";
66
+ setKeyframe -time 14 -value 3.50000 "Parabolic_2_from_bottom_right.tx";
67
+ setKeyframe -time 14 -value 5.11875 "Parabolic_2_from_bottom_right.ty";
68
+ setKeyframe -time 15 -value 3.00000 "Parabolic_2_from_bottom_right.tx";
69
+ setKeyframe -time 15 -value 4.72500 "Parabolic_2_from_bottom_right.ty";
70
+ setKeyframe -time 16 -value 2.50000 "Parabolic_2_from_bottom_right.tx";
71
+ setKeyframe -time 16 -value 4.21875 "Parabolic_2_from_bottom_right.ty";
72
+ setKeyframe -time 17 -value 2.00000 "Parabolic_2_from_bottom_right.tx";
73
+ setKeyframe -time 17 -value 3.60000 "Parabolic_2_from_bottom_right.ty";
74
+ setKeyframe -time 18 -value 1.50000 "Parabolic_2_from_bottom_right.tx";
75
+ setKeyframe -time 18 -value 2.86875 "Parabolic_2_from_bottom_right.ty";
76
+ setKeyframe -time 19 -value 1.00000 "Parabolic_2_from_bottom_right.tx";
77
+ setKeyframe -time 19 -value 2.02500 "Parabolic_2_from_bottom_right.ty";
78
+ setKeyframe -time 20 -value 0.50000 "Parabolic_2_from_bottom_right.tx";
79
+ setKeyframe -time 20 -value 1.06875 "Parabolic_2_from_bottom_right.ty";
80
+ setKeyframe -time 21 -value 0.00000 "Parabolic_2_from_bottom_right.tx";
81
+ setKeyframe -time 21 -value 0.00000 "Parabolic_2_from_bottom_right.ty";
120
82
  spaceLocator -name "SingleFrame" -p 0 0 0;
121
- currentTime 1;
122
- setKeyframe -value 5.05208 "SingleFrame.tx";
123
- setKeyframe -value 2.86458 "SingleFrame.ty";
124
- currentTime 1;
83
+ setKeyframe -time 1 -value 5.05208 "SingleFrame.tx";
84
+ setKeyframe -time 1 -value 2.86458 "SingleFrame.ty";
125
85
  select -r TracksperantoImagePlane Parabolic_1_from_top_left Parabolic_2_from_bottom_right SingleFrame;
126
86
  group -name TracksperantoGroup; xform -os -piv 0 0 0;
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "tracksperanto"
8
- s.version = "2.9.1"
8
+ s.version = "2.9.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Julik Tarkhanov"]
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: 2.9.1
4
+ version: 2.9.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-01-27 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: obuf
16
- requirement: &4159600 !ruby/object:Gem::Requirement
16
+ requirement: &4170520 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 1.0.4
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *4159600
24
+ version_requirements: *4170520
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: progressive_io
27
- requirement: &4159290 !ruby/object:Gem::Requirement
27
+ requirement: &4170210 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '1.0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *4159290
35
+ version_requirements: *4170210
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: flame_channel_parser
38
- requirement: &4158730 !ruby/object:Gem::Requirement
38
+ requirement: &4169840 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ~>
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '4.0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *4158730
46
+ version_requirements: *4169840
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: progressbar
49
- requirement: &4158240 !ruby/object:Gem::Requirement
49
+ requirement: &4169350 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ~>
@@ -54,10 +54,10 @@ dependencies:
54
54
  version: '0.9'
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *4158240
57
+ version_requirements: *4169350
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: update_hints
60
- requirement: &4157890 !ruby/object:Gem::Requirement
60
+ requirement: &4168970 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ~>
@@ -65,10 +65,10 @@ dependencies:
65
65
  version: '1.0'
66
66
  type: :runtime
67
67
  prerelease: false
68
- version_requirements: *4157890
68
+ version_requirements: *4168970
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: jeweler
71
- requirement: &4157570 !ruby/object:Gem::Requirement
71
+ requirement: &4168410 !ruby/object:Gem::Requirement
72
72
  none: false
73
73
  requirements:
74
74
  - - ! '>='
@@ -76,10 +76,10 @@ dependencies:
76
76
  version: '0'
77
77
  type: :development
78
78
  prerelease: false
79
- version_requirements: *4157570
79
+ version_requirements: *4168410
80
80
  - !ruby/object:Gem::Dependency
81
81
  name: rake
82
- requirement: &4173600 !ruby/object:Gem::Requirement
82
+ requirement: &4168060 !ruby/object:Gem::Requirement
83
83
  none: false
84
84
  requirements:
85
85
  - - ! '>='
@@ -87,10 +87,10 @@ dependencies:
87
87
  version: '0'
88
88
  type: :development
89
89
  prerelease: false
90
- version_requirements: *4173600
90
+ version_requirements: *4168060
91
91
  - !ruby/object:Gem::Dependency
92
92
  name: flexmock
93
- requirement: &4173330 !ruby/object:Gem::Requirement
93
+ requirement: &4167650 !ruby/object:Gem::Requirement
94
94
  none: false
95
95
  requirements:
96
96
  - - ~>
@@ -98,10 +98,10 @@ dependencies:
98
98
  version: '0.8'
99
99
  type: :development
100
100
  prerelease: false
101
- version_requirements: *4173330
101
+ version_requirements: *4167650
102
102
  - !ruby/object:Gem::Dependency
103
103
  name: cli_test
104
- requirement: &4173060 !ruby/object:Gem::Requirement
104
+ requirement: &4167310 !ruby/object:Gem::Requirement
105
105
  none: false
106
106
  requirements:
107
107
  - - ~>
@@ -109,7 +109,7 @@ dependencies:
109
109
  version: '1.0'
110
110
  type: :development
111
111
  prerelease: false
112
- version_requirements: *4173060
112
+ version_requirements: *4167310
113
113
  description: Converts 2D track exports between different apps like Flame, MatchMover,
114
114
  PFTrack...
115
115
  email: me@julik.nl