Sha256: e27b5afcd6fe33f8a5ce2ff5cd1c8a24ed315667d48dd913ef048f8fcc73dea2
Contents?: true
Size: 1.58 KB
Versions: 3
Compression:
Stored size: 1.58 KB
Contents
# gvl-tracing: Ruby gem for getting a timelinew view of GVL usage # Copyright (c) 2022 Ivo Anjo <ivo@ivoanjo.me> # # This file is part of gvl-tracing. # # 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. if ["jruby", "truffleruby"].include?(RUBY_ENGINE) raise \ "\n#{"-" * 80}\nSorry! This gem is unsupported on #{RUBY_ENGINE}. Since it relies on a lot of guts of MRI Ruby, " \ "it's impossible to make a direct port.\n" \ "Perhaps a #{RUBY_ENGINE} equivalent could be created -- help is welcome! :)\n#{"-" * 80}" end require "mkmf" create_makefile "gvl_tracing_native_extension"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
gvl-tracing-0.2.0 | ext/gvl_tracing_native_extension/extconf.rb |
gvl-tracing-0.1.1 | ext/gvl_tracing_native_extension/extconf.rb |
gvl-tracing-0.1.0 | ext/gvl_tracing_native_extension/extconf.rb |