tracksperanto 3.5.6 → 3.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/tracksperanto.rb +1 -1
- data/lib/tracksperanto/blacklist.rb +2 -1
- data/test/test_blacklist.rb +1 -0
- data/tracksperanto.gemspec +2 -2
- metadata +4 -4
data/lib/tracksperanto.rb
CHANGED
@@ -24,7 +24,8 @@ class Tracksperanto::Blacklist
|
|
24
24
|
/\.(abc|fbx)$/ => 'We cannot import 3D scenes such as Alembic or FBX.',
|
25
25
|
'.3de' => 'We cannot handle 3DE project files directly, please export your 2D tracks in a compatible format instead.',
|
26
26
|
'.bpj' => "We cannot handle Boujou projects directly, please export your feature tracks from Boujou as a text file",
|
27
|
-
'.py' => 'We cannot handle Python scripts - please export your 2D tracks in a compatible format instead.'
|
27
|
+
'.py' => 'We cannot handle Python scripts - please export your 2D tracks in a compatible format instead.',
|
28
|
+
'.ascii' => 'We cannot handle ascii Flame exports. Just save your setup and upload it - it will work fine.'
|
28
29
|
}
|
29
30
|
end
|
30
31
|
end
|
data/test/test_blacklist.rb
CHANGED
@@ -38,6 +38,7 @@ class TestBlacklist < Test::Unit::TestCase
|
|
38
38
|
file.3de
|
39
39
|
file.bpj
|
40
40
|
file.py
|
41
|
+
file.ascii
|
41
42
|
).each do | filename |
|
42
43
|
error = assert_raise(Tracksperanto::UnsupportedFormatError, "Should fail for #{filename.inspect}") do
|
43
44
|
Tracksperanto::Blacklist.raise_if_format_unsupported(filename)
|
data/tracksperanto.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{tracksperanto}
|
8
|
-
s.version = "3.5.
|
8
|
+
s.version = "3.5.7"
|
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"]
|
12
|
-
s.date = %q{2014-
|
12
|
+
s.date = %q{2014-12-04}
|
13
13
|
s.default_executable = %q{tracksperanto}
|
14
14
|
s.description = %q{Converts 2D track exports between different apps like Flame, MatchMover, PFTrack...}
|
15
15
|
s.email = %q{me@julik.nl}
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tracksperanto
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 29
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 3.5.
|
9
|
+
- 7
|
10
|
+
version: 3.5.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Julik Tarkhanov
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2014-
|
18
|
+
date: 2014-12-04 00:00:00 +01:00
|
19
19
|
default_executable: tracksperanto
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|