Sha256: d7391d4626858bdd49c2adc030cfd8fa38ddbe62d88f341ced45fa401dd99942

Contents?: true

Size: 264 Bytes

Versions: 1

Compression:

Stored size: 264 Bytes

Contents

module SmsPortal
  class Config
    attr_accessor :username, :password, :interceptor

    def initialize
      @username = ENV['SMS_PORTAL_USERNAME']
      @password = ENV['SMS_PORTAL_PASSWORD']
      @interceptor = ENV['SMS_PORTAL_INTERCEPTOR']
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sms_portal-1.0.0 lib/sms_portal/config.rb