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 CHANGED
@@ -5,7 +5,7 @@ require 'tempfile'
5
5
 
6
6
  module Tracksperanto
7
7
  PATH = File.expand_path(File.dirname(__FILE__))
8
- VERSION = '3.5.6'
8
+ VERSION = '3.5.7'
9
9
 
10
10
  module Import; end
11
11
  module Export; end
@@ -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
@@ -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)
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{tracksperanto}
8
- s.version = "3.5.6"
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-11-29}
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: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 5
9
- - 6
10
- version: 3.5.6
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-11-29 00:00:00 +01:00
18
+ date: 2014-12-04 00:00:00 +01:00
19
19
  default_executable: tracksperanto
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency