tracksperanto 1.0.1 → 1.0.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.
@@ -0,0 +1,38 @@
1
+ (in /Code/apps/tracksperanto)
2
+ # -*- encoding: utf-8 -*-
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = %q{tracksperanto}
6
+ s.version = "1.0.0"
7
+
8
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
9
+ s.authors = ["Julik"]
10
+ s.date = %q{2009-04-19}
11
+ s.default_executable = %q{tracksperanto}
12
+ s.description = %q{}
13
+ s.email = ["me@julik.nl"]
14
+ s.executables = ["tracksperanto"]
15
+ s.extra_rdoc_files = ["Manifest.txt", "README.txt", "test/samples/flyover2DP_syntheyes.txt", "test/samples/one_shake_tracker.txt", "test/samples/one_shake_tracker_from_first.txt", "test/samples/shake_tracker_nodes_to_syntheyes.txt", "test/samples/two_shake_trackers.txt"]
16
+ s.files = ["Manifest.txt", "README.txt", "Rakefile", "bin/tracksperanto", "lib/export/base.rb", "lib/export/flame_stabilizer.rb", "lib/export/mux.rb", "lib/export/pftrack.rb", "lib/export/shake_text.rb", "lib/export/syntheyes.rb", "lib/import/base.rb", "lib/import/flame_stabilizer.rb", "lib/import/shake_script.rb", "lib/import/shake_text.rb", "lib/import/syntheyes.rb", "lib/middleware/base.rb", "lib/middleware/scaler.rb", "lib/middleware/slipper.rb", "lib/pipeline.rb", "lib/tracksperanto.rb", "test/.DS_Store", "test/helper.rb", "test/samples/.DS_Store", "test/samples/flyover2DP_syntheyes.txt", "test/samples/megaTrack.action.3dtrack.stabilizer", "test/samples/one_shake_tracker.txt", "test/samples/one_shake_tracker_from_first.txt", "test/samples/shake_tracker_nodes.shk", "test/samples/shake_tracker_nodes_to_syntheyes.txt", "test/samples/three_tracks_in_one_stabilizer.shk", "test/samples/two_shake_trackers.txt", "test/samples/two_tracks_in_one_tracker.shk", "test/test_keyframe.rb", "test/test_shake_export.rb", "test/test_shake_script_import.rb", "test/test_shake_text_import.rb", "test/test_syntheyes_import.rb"]
17
+ s.has_rdoc = true
18
+ s.homepage = %q{Tracksperanto is a universal 2D-track translator between many apps.}
19
+ s.rdoc_options = ["--main", "README.txt"]
20
+ s.require_paths = ["lib"]
21
+ s.rubyforge_project = %q{guerilla-di}
22
+ s.rubygems_version = %q{1.3.1}
23
+ s.summary = %q{}
24
+ s.test_files = ["test/test_keyframe.rb", "test/test_shake_export.rb", "test/test_shake_script_import.rb", "test/test_shake_text_import.rb", "test/test_syntheyes_import.rb"]
25
+
26
+ if s.respond_to? :specification_version then
27
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
28
+ s.specification_version = 2
29
+
30
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
31
+ s.add_development_dependency(%q<hoe>, [">= 1.8.3"])
32
+ else
33
+ s.add_dependency(%q<hoe>, [">= 1.8.3"])
34
+ end
35
+ else
36
+ s.add_dependency(%q<hoe>, [">= 1.8.3"])
37
+ end
38
+ end
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.0.1
4
+ version: 1.0.2
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-08-31 00:00:00 +02:00
12
+ date: 2009-09-02 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -30,18 +30,22 @@ executables:
30
30
  extensions: []
31
31
 
32
32
  extra_rdoc_files:
33
+ - History.txt
33
34
  - Manifest.txt
34
35
  - README.txt
36
+ - test/samples/].txt
35
37
  - test/samples/flyover2DP_syntheyes.txt
36
38
  - test/samples/one_shake_tracker.txt
37
39
  - test/samples/one_shake_tracker_from_first.txt
38
40
  - test/samples/shake_tracker_nodes_to_syntheyes.txt
39
41
  - test/samples/two_shake_trackers.txt
40
42
  files:
43
+ - History.txt
41
44
  - Manifest.txt
42
45
  - README.txt
43
46
  - Rakefile
44
47
  - bin/tracksperanto
48
+ - lib/.DS_Store
45
49
  - lib/export/base.rb
46
50
  - lib/export/flame_stabilizer.rb
47
51
  - lib/export/mux.rb
@@ -54,14 +58,18 @@ files:
54
58
  - lib/import/shake_text.rb
55
59
  - lib/import/syntheyes.rb
56
60
  - lib/middleware/base.rb
61
+ - lib/middleware/close.rb
62
+ - lib/middleware/golden.rb
57
63
  - lib/middleware/scaler.rb
58
64
  - lib/middleware/slipper.rb
59
65
  - lib/pipeline.rb
66
+ - lib/pipeline/base.rb
60
67
  - lib/tracksperanto.rb
61
- - test/.DS_Store
62
68
  - test/helper.rb
63
69
  - test/samples/.DS_Store
70
+ - test/samples/].txt
64
71
  - test/samples/flyover2DP_syntheyes.txt
72
+ - test/samples/hugeFlameSetup.stabilizer
65
73
  - test/samples/megaTrack.action.3dtrack.stabilizer
66
74
  - test/samples/one_shake_tracker.txt
67
75
  - test/samples/one_shake_tracker_from_first.txt
@@ -70,11 +78,13 @@ files:
70
78
  - test/samples/three_tracks_in_one_stabilizer.shk
71
79
  - test/samples/two_shake_trackers.txt
72
80
  - test/samples/two_tracks_in_one_tracker.shk
81
+ - test/test_flame_block.rb
73
82
  - test/test_keyframe.rb
74
83
  - test/test_shake_export.rb
75
84
  - test/test_shake_script_import.rb
76
85
  - test/test_shake_text_import.rb
77
86
  - test/test_syntheyes_import.rb
87
+ - tracksperanto.gemspec
78
88
  has_rdoc: true
79
89
  homepage: http://guerilla-di.org/tracksperanto
80
90
  post_install_message: