sprout-flashplayer-bundle 10.22.5 → 10.22.6
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/lib/clix_flash_player.rb
CHANGED
|
@@ -28,18 +28,19 @@ class CLIXFlashPlayer
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
setup_trap
|
|
31
|
-
|
|
31
|
+
|
|
32
32
|
@thread = Thread.new {
|
|
33
33
|
@player_pid = open4.popen4("#{player.split(' ').join('\ ')}")[0]
|
|
34
34
|
begin
|
|
35
35
|
raise "clix_wrapper.rb could not be found at: #{wrapper}" if !File.exists?($CLIX_WRAPPER_TARGET)
|
|
36
36
|
command = "ruby #{$CLIX_WRAPPER_TARGET} '#{player}' '#{swf}'"
|
|
37
37
|
@activate_pid, stdin, stdout, stderr = open4.popen4(command)
|
|
38
|
-
puts stdout.read
|
|
38
|
+
$stdout.puts stdout.read
|
|
39
39
|
error = stderr.read
|
|
40
40
|
raise error if !error.nil? && error != ''
|
|
41
41
|
Process.wait(@player_pid)
|
|
42
42
|
rescue StandardError => e
|
|
43
|
+
$stdout.puts e.to_s
|
|
43
44
|
kill
|
|
44
45
|
raise e
|
|
45
46
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sprout-flashplayer-bundle
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 10.22.
|
|
4
|
+
version: 10.22.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pattern Park
|
|
@@ -9,7 +9,7 @@ autorequire: sprout/flashplayer
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-10-28 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
71
71
|
requirements: []
|
|
72
72
|
|
|
73
73
|
rubyforge_project: sprout
|
|
74
|
-
rubygems_version: 1.3.
|
|
74
|
+
rubygems_version: 1.3.5
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 3
|
|
77
77
|
summary: Supporting tasks for Flash Player Rake integration
|