Class: Processor

Inherits:
Object
  • Object
show all
Defined in:
lib/Models/Processor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config, configFilePath, baseExecutePath) ⇒ Processor

Returns a new instance of Processor.



7
8
9
10
11
# File 'lib/Models/Processor.rb', line 7

def initialize(config, configFilePath, baseExecutePath)
    @config = config
    @configFilePath = configFilePath
    @baseExecutePath = baseExecutePath
end

Instance Attribute Details

#baseExecutePathObject

Returns the value of attribute baseExecutePath.



5
6
7
# File 'lib/Models/Processor.rb', line 5

def baseExecutePath
  @baseExecutePath
end

#configObject

Returns the value of attribute config.



5
6
7
# File 'lib/Models/Processor.rb', line 5

def config
  @config
end

#configFilePathObject

Returns the value of attribute configFilePath.



5
6
7
# File 'lib/Models/Processor.rb', line 5

def configFilePath
  @configFilePath
end

Instance Method Details

#processReviews(reviews, platform) ⇒ Object



13
14
15
# File 'lib/Models/Processor.rb', line 13

def processReviews(reviews, platform)

end