dtas.git  about / heads / tags
duct tape audio suite for *nix
blob 0b704ca53864df633529676f5a662eace6de2a40 706 bytes (raw)
$ git show 0.12.x-stable:lib/dtas.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
# Copyright (C) 2013-2015 all contributors <dtas-all@nongnu.org>
# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
module DTAS # :nodoc:
  # try to use the monotonic clock in Ruby >= 2.1, it is immune to clock
  # offset adjustments and generates less garbage (Float vs Time object)
  begin
    ::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
    def self.now
      ::Process.clock_gettime(::Process::CLOCK_MONOTONIC)
    end
  rescue NameError, NoMethodError
    def self.now # Ruby <= 2.0
      Time.now.to_f
    end
  end

  @null = nil
  def self.null
    @null ||= File.open('/dev/null', 'r+')
  end
end

require_relative 'dtas/compat_onenine'
require_relative 'dtas/spawn_fix'

git clone git://80x24.org/dtas.git
git clone https://80x24.org/dtas.git