Module: RendertronRuby
- Extended by:
- Configuration
- Defined in:
- lib/rendertron_ruby.rb,
lib/rendertron_ruby/client.rb,
lib/rendertron_ruby/request.rb,
lib/rendertron_ruby/version.rb,
lib/rendertron_ruby/connection.rb,
lib/rendertron_ruby/configuration.rb
Defined Under Namespace
Modules: Configuration, Connection, Request
Classes: Client
Constant Summary
collapse
- VERSION =
"0.1.0"
Configuration::VALID_OPTIONS
Class Method Summary
collapse
configure, options
Class Method Details
.client ⇒ Object
17
18
19
|
# File 'lib/rendertron_ruby.rb', line 17
def self.client
RendertronRuby::Client.new(options)
end
|
.get(url) ⇒ Object
9
10
11
|
# File 'lib/rendertron_ruby.rb', line 9
def self.get(url)
client.get(url)
end
|
.get_ss(url) ⇒ Object
13
14
15
|
# File 'lib/rendertron_ruby.rb', line 13
def self.get_ss(url)
client.get_ss(url)
end
|