Class: RailsClientChecker::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/rails_client_checker/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



6
7
8
9
10
11
# File 'lib/rails_client_checker/configuration.rb', line 6

def initialize
  @checkers = %w(browser cookies assets)
  @title = "Rails app client checker"
  @appname = "this website"
  @support_page = ""
end

Instance Attribute Details

#appnameObject

Returns the value of attribute appname.



4
5
6
# File 'lib/rails_client_checker/configuration.rb', line 4

def appname
  @appname
end

#checkersObject

Returns the value of attribute checkers.



4
5
6
# File 'lib/rails_client_checker/configuration.rb', line 4

def checkers
  @checkers
end

#support_pageObject

Returns the value of attribute support_page.



4
5
6
# File 'lib/rails_client_checker/configuration.rb', line 4

def support_page
  @support_page
end

#titleObject

Returns the value of attribute title.



4
5
6
# File 'lib/rails_client_checker/configuration.rb', line 4

def title
  @title
end