class Cmsso::Configuration
Attributes
base_uri[RW]
module_key[RW]
proxy[RW]
Public Class Methods
new()
click to toggle source
# File lib/cmsso/configuration.rb, line 8 def initialize @environment = nil if Rails.env.production? @environment = "-test" if Rails.env.development? || Rails.env.test? @environment = "-int" if Rails.env.integration? @proxy = nil @module_key = "cm_chbs_portal" @base_uri = "http://cmservice-chbs#{@environment}.novartis.net:3056/persons" end