Module: FlashPlayer
- Defined in:
- lib/flashplayer/task.rb,
lib/flashplayer/trust.rb,
lib/flashplayer/errors.rb,
lib/flashplayer/module.rb,
lib/flashplayer/log_file.rb,
lib/flashplayer/mm_config.rb,
lib/flashplayer/executable.rb
Defined Under Namespace
Classes: Executable, LogFile, MMConfig, PathError, Task, Trust, UsageError
Constant Summary
collapse
- NAME =
'flashplayer'
- VERSION =
'11.1.102'
Class Method Summary
collapse
Class Method Details
.flashlog ⇒ Object
22
23
24
|
# File 'lib/flashplayer/module.rb', line 22
def flashlog
File.join home, 'Logs', 'flashlog.txt'
end
|
.home ⇒ Object
8
9
10
11
12
13
14
15
16
|
# File 'lib/flashplayer/module.rb', line 8
def home
home_paths.each do |path|
return path if File.exists?(path)
end
raise FlashPlayer::PathError.new('FlashPlayer unable to find home folder for your System')
end
|
.trust ⇒ Object
18
19
20
|
# File 'lib/flashplayer/module.rb', line 18
def trust
File.join home, '#Security', 'FlashPlayerTrust', 'sprout.cfg'
end
|