videojuicer-player-sdk 0.4.1 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 4
4
- :patch: 1
4
+ :patch: 3
data/bin/playersdk CHANGED
@@ -40,11 +40,11 @@ end
40
40
  # Read command line options into `options` hash
41
41
  opts.parse!
42
42
 
43
- # Get source and destintation from command line
43
+ # Get config path from the command line
44
44
  case ARGV.size
45
45
  when 0
46
46
  when 1
47
- options['workspace_dir'] = ARGV[0]
47
+ options['config_path'] = ARGV[0]
48
48
  else
49
49
  puts "Invalid options. Run `playersdk --help` for assistance."
50
50
  exit(1)
data/lib/playersdk.rb CHANGED
@@ -17,7 +17,7 @@ module PlayerSDK
17
17
  # Default options. Overriden by values in config.yml or command-line opts.
18
18
  # (Strings rather symbols used for compatability with YAML)
19
19
  DEFAULTS = {
20
- 'build_dir' => 'builds',
20
+ 'build_dir' => '.',
21
21
  'temp_dir' => 'tmp',
22
22
  'config_path' => './config.yml',
23
23
  'flex_sdk' => '',
@@ -62,7 +62,7 @@ module PlayerSDK
62
62
 
63
63
  puts "Using version #{self.version}"
64
64
  else
65
- puts "No version file found"
65
+ puts "No version file found at #{self.config['build_dir']}/version.properties"
66
66
  end
67
67
  end
68
68
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: videojuicer-player-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Livesley
@@ -51,6 +51,7 @@ files:
51
51
  - lib/playersdk/compilers/flex.rb
52
52
  has_rdoc: true
53
53
  homepage: http://developer.videojuicer.com
54
+ licenses:
54
55
  post_install_message:
55
56
  rdoc_options:
56
57
  - --charset=UTF-8
@@ -71,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
72
  requirements: []
72
73
 
73
74
  rubyforge_project:
74
- rubygems_version: 1.2.0
75
+ rubygems_version: 1.3.5
75
76
  signing_key:
76
77
  specification_version: 2
77
78
  summary: Videojuicer Player SDK runtime and compiler.