Class: AppfluxRuby::BugfluxConfig
- Inherits:
-
Object
- Object
- AppfluxRuby::BugfluxConfig
- Defined in:
- lib/appflux_ruby/bugflux_config.rb
Instance Attribute Summary collapse
-
#app_id ⇒ ID
This value must be set.
-
#host ⇒ String
readonly
The host, which provides the API endpoint to which exceptions should be sent.
-
#ignored_environments ⇒ ID
This value must be set.
Instance Method Summary collapse
-
#initialize(config = Hash.new) ⇒ BugfluxConfig
constructor
A new instance of BugfluxConfig.
-
#use_ssl ⇒ Boolean
, Whether we are using secure connection or not.
Constructor Details
#initialize(config = Hash.new) ⇒ BugfluxConfig
Returns a new instance of BugfluxConfig.
24 25 26 |
# File 'lib/appflux_ruby/bugflux_config.rb', line 24 def initialize config = Hash.new @host = host_name end |
Instance Attribute Details
#app_id ⇒ ID
This value must be set.
13 14 15 |
# File 'lib/appflux_ruby/bugflux_config.rb', line 13 def app_id @app_id end |
#host ⇒ String (readonly)
Returns the host, which provides the API endpoint to which exceptions should be sent.
22 23 24 |
# File 'lib/appflux_ruby/bugflux_config.rb', line 22 def host @host end |
#ignored_environments ⇒ ID
This value must be set.
13 14 15 |
# File 'lib/appflux_ruby/bugflux_config.rb', line 13 def ignored_environments @ignored_environments end |
Instance Method Details
#use_ssl ⇒ Boolean
Returns , Whether we are using secure connection or not.
30 31 32 |
# File 'lib/appflux_ruby/bugflux_config.rb', line 30 def use_ssl false end |