Sha256: e38c84323d3e1be5761c99f704d0060e76450510f678edbeb508754282a3a1d4
Contents?: true
Size: 610 Bytes
Versions: 9
Compression:
Stored size: 610 Bytes
Contents
AppConfig = { :port => 4578, :environment => ENV['RACK_ENV'] || 'production' } AppConfig[:database] = if AppConfig[:environment] == 'production' './rest-assured.db' else File.expand_path("../../../db/#{AppConfig[:environment]}.db", __FILE__) end AppConfig[:log_file] = if AppConfig[:environment] == 'production' './rest-assured.log' else File.expand_path("../../../#{AppConfig[:environment]}.log", __FILE__) end
Version data entries
9 entries across 9 versions & 1 rubygems