Sha256: 54bbc357c607adc69e7b7b5bd78c985d41e36232d58b1d733c88751c8e74da49

Contents?: true

Size: 754 Bytes

Versions: 6

Compression:

Stored size: 754 Bytes

Contents

###########################################

# Refs
# http://stackoverflow.com/questions/10584638/setting-up-configuration-settings-when-writing-a-gem
# http://robots.thoughtbot.com/mygem-configure-block

###########################################

module ExceptionHandler
  class Config
	attr_accessor :db, :social

	def initialize
		@db = false # -> db name (false = no; true = "errors"; [value] = [value])
		@social = {
			twitter: 	"http://twitter.com/frontlineutils",
			facebook: 	"https://facebook.com/frontline.utilities",
			linkedin: 	"https://linkedin.com/company/frontline-utilities",
			youtube: 	"https://youtube.com/user/frontlineutils",
			fusion: 	"http://frontlinefusion.com/frontlineutils"
		}
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
exception_handler-0.3.45 lib/exception_handler/config.rb
exception_handler-0.3.35 lib/exception_handler/config.rb
exception_handler-0.3.3 lib/exception_handler/config.rb
exception_handler-0.3.25 lib/exception_handler/config.rb
exception_handler-0.3.2 lib/exception_handler/config.rb
exception_handler-0.3.0 lib/exception_handler/config.rb