Sha256: c1e75bb9c3072c3fa13e49d20a3a32e83c598a11ed83c129bcfc1a8a2214c769
Contents?: true
Size: 1.62 KB
Versions: 4
Compression:
Stored size: 1.62 KB
Contents
# encoding: UTF-8 # # Copyright (c) 2015 by Chris Schlaeger <chris@taskjuggler.org> # # MIT License # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. $:.unshift File.join(File.dirname(__FILE__), '..', 'lib') require 'tmpdir' require 'fileutils' class UStruct < Struct.new(:first, :second, :third) end def generate_db_name(caller_file) begin db_name = File.join(Dir.tmpdir, "#{File.basename(caller_file)}.#{rand(2**32)}") end while File.exists?(db_name) db_name end def capture_io PEROBS.log.open(io = StringIO.new) begin yield ensure PEROBS.log.open($stderr) end io.rewind io.read end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
perobs-4.0.0 | test/spec_helper.rb |
perobs-3.0.2 | test/spec_helper.rb |
perobs-3.0.1 | test/spec_helper.rb |
perobs-3.0.0 | test/spec_helper.rb |