Class: EngagingNetworks::Base
- Inherits:
-
Vertebrae::Model
- Object
- Vertebrae::Model
- EngagingNetworks::Base
show all
- Defined in:
- lib/engaging_networks/base.rb
Instance Method Summary
collapse
Instance Method Details
#action_path ⇒ Object
16
17
18
|
# File 'lib/engaging_networks/base.rb', line 16
def action_path
"/ea-action/action"
end
|
#data_path ⇒ Object
8
9
10
|
# File 'lib/engaging_networks/base.rb', line 8
def data_path
"/ea-dataservice/data.service"
end
|
#export_path ⇒ Object
12
13
14
|
# File 'lib/engaging_networks/base.rb', line 12
def export_path
"/ea-dataservice/export.service"
end
|
#import_path ⇒ Object
4
5
6
|
# File 'lib/engaging_networks/base.rb', line 4
def import_path
"/ea-dataservice/import.service"
end
|
#scrape ⇒ Object
20
21
22
|
# File 'lib/engaging_networks/base.rb', line 20
def scrape
@scrape ||= EngagingNetworks::Scrape::Client.new(username: client.connection.configuration.options[:username], password: client.connection.configuration.options[:password])
end
|