Class: Info

Inherits:
Object
  • Object
show all
Defined in:
lib/flick/info.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Info

Returns a new instance of Info.



5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/flick/info.rb', line 5

def initialize options
  Flick::Checker.platform options[:platform]
  self.platform = options[:platform]
  case @platform
  when "ios"
    options[:todir] = options[:outdir]
    self.driver = Flick::Ios.new options
  when "android"
    self.driver = Flick::Android.new options
  end
  self.save = options[:save].to_b
end

Instance Attribute Details

#driverObject

Returns the value of attribute driver.



3
4
5
# File 'lib/flick/info.rb', line 3

def driver
  @driver
end

#platformObject

Returns the value of attribute platform.



3
4
5
# File 'lib/flick/info.rb', line 3

def platform
  @platform
end

#saveObject

Returns the value of attribute save.



3
4
5
# File 'lib/flick/info.rb', line 3

def save
  @save
end

Instance Method Details

#infoObject



18
19
20
21
22
23
24
# File 'lib/flick/info.rb', line 18

def info
  ap driver.info
  if save
    puts "Saving to #{driver.outdir}/info-#{driver.name}.log"
    save_device_data driver.info
  end
end