diff options
Diffstat (limited to 'docs/posts/ruby-detect-running-implementation/index.html')
| -rw-r--r-- | docs/posts/ruby-detect-running-implementation/index.html | 175 |
1 files changed, 1 insertions, 174 deletions
diff --git a/docs/posts/ruby-detect-running-implementation/index.html b/docs/posts/ruby-detect-running-implementation/index.html index b2d700c..1613d13 100644 --- a/docs/posts/ruby-detect-running-implementation/index.html +++ b/docs/posts/ruby-detect-running-implementation/index.html @@ -1,174 +1 @@ -<!DOCTYPE html> -<html lang="ja-JP"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - - <title>[Ruby] 自身を実行している処理系の種類を判定する - REPL: Rest-Eat-Program Loop</title> - - <meta name="description" content="この記事は Qiita から移植してきたものです。 元 URL: https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791 Ruby という言語には複数の実装があるが、それらをスクリプト上からどのようにして programmatically に見分ければよいだろ"> - <meta name="author" content=""> - - <link href="https://blog.nsfisis.dev/an-old-hope.min.css" rel="stylesheet"> - <link href="https://blog.nsfisis.dev/style.css" rel="stylesheet"> - <link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet"> - - <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png"> - <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico"> - <meta name="generator" content="Hugo 0.88.1" /> - - - - <script> - function setTheme() { - if (window.matchMedia('(prefers-color-scheme: dark)').matches) { - document.body.classList.add('dark'); - return; - } - - const time = new Date(); - const prev = localStorage.getItem('date'); - const date = String(time.getMonth() + 1) + '.' + String(time.getDate()); - - const now = time.getTime(); - let sunrise; - let sunset; - - function setBodyClass() { - if (now > sunrise && now < sunset) return; - document.body.classList.add('dark'); - } - - if (date !== prev) { - fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215') - .then((res) => res.json()) - .then((data) => { - sunrise = data.sunrise.split(':').map(Number); - sunset = data.sunset.split(':').map(Number); - }) - .catch(() => { - sunrise = [7, 0]; - sunset = [19, 0]; - }) - .finally(() => { - sunrise = time.setHours(sunrise[0], sunrise[1], 0); - sunset = time.setHours(sunset[0], sunset[1], 0); - setBodyClass(); - localStorage.setItem('sunrise', sunrise); - localStorage.setItem('sunset', sunset); - }); - localStorage.setItem('date', date); - } else { - sunrise = Number(localStorage.getItem('sunrise')); - sunset = Number(localStorage.getItem('sunset')); - setBodyClass(); - } - } - </script> - </head> - <body class="single"> - <script> - setTheme(); - </script> - <header class="header"> - <nav class="nav"> - <p class="logo"><a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></p> - </nav> - </header> - <main class="main"> - - -<article class="post-single"> - <header class="post-header"> - <h1 class="post-title">[Ruby] 自身を実行している処理系の種類を判定する</h1> - <div class="post-meta">October 2, 2021</div> - </header> - <div class="post-content"><p>この記事は Qiita から移植してきたものです。 -元 URL: <a href="https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791">https://qiita.com/nsfisis/items/74d7ffeeebc51b20d791</a></p> -<hr> -<p>Ruby という言語には複数の実装があるが、それらをスクリプト上からどのようにして programmatically に見分ければよいだろうか。</p> -<p><code>Object</code> クラスに定義されている <code>RUBY_ENGINE</code> という定数がこの用途に使える。</p> -<p>参考: <a href="https://docs.ruby-lang.org/ja/latest/method/Object/c/RUBY_ENGINE.html">Object::RUBY_ENGINE</a></p> -<p>上記ページの例から引用する:</p> -<pre tabindex="0"><code class="language-shell-session" data-lang="shell-session">$ ruby-1.9.1 -ve 'p RUBY_ENGINE' -ruby 1.9.1p0 (2009-03-04 revision 22762) [x86_64-linux] -"ruby" -$ jruby -ve 'p RUBY_ENGINE' -jruby 1.2.0 (ruby 1.8.6 patchlevel 287) (2009-03-16 rev 9419) [i386-java] -"jruby" -</code></pre><p>それぞれの処理系がどのような値を返すかだが、stack overflow に良い質問と回答があった。</p> -<p><a href="https://stackoverflow.com/a/9894232">What values for RUBY_ENGINE correspond to which Ruby implementations?</a> より引用:</p> -<blockquote> -<table> -<thead> -<tr> -<th style="text-align:center">RUBY_ENGINE</th> -<th style="text-align:left">Implementation</th> -</tr> -</thead> -<tbody> -<tr> -<td style="text-align:center"><undefined></td> -<td style="text-align:left">MRI < 1.9</td> -</tr> -<tr> -<td style="text-align:center">‘ruby’</td> -<td style="text-align:left">MRI >= 1.9 or REE</td> -</tr> -<tr> -<td style="text-align:center">‘jruby’</td> -<td style="text-align:left">JRuby</td> -</tr> -<tr> -<td style="text-align:center">‘macruby’</td> -<td style="text-align:left">MacRuby</td> -</tr> -<tr> -<td style="text-align:center">‘rbx’</td> -<td style="text-align:left">Rubinius</td> -</tr> -<tr> -<td style="text-align:center">‘maglev’</td> -<td style="text-align:left">MagLev</td> -</tr> -<tr> -<td style="text-align:center">‘ironruby’</td> -<td style="text-align:left">IronRuby</td> -</tr> -<tr> -<td style="text-align:center">‘cardinal’</td> -<td style="text-align:left">Cardinal</td> -</tr> -</tbody> -</table> -</blockquote> -<p>なお、この質問・回答は 2014年になされたものであり、値は変わっている可能性がある。MRI (aka CRuby) については執筆時現在 (2020/12/8) も <code>'ruby'</code> が返ってくることを確認済み。</p> -<p>この表にない主要な処理系として、<a href="https://mruby.org">mruby</a> は <code>'mruby'</code> を返す。</p> -<p><a href="https://github.com/mruby/mruby/blob/ed29d74bfd95362eaeb946fcf7e865d80346b62b/include/mruby/version.h#L32-L35">mruby 該当部分のソース</a> より引用:</p> -<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-c" data-lang="c"><span style="color:#75715e">/* -</span><span style="color:#75715e"> * Ruby engine. -</span><span style="color:#75715e"> */</span> -<span style="color:#75715e">#define MRUBY_RUBY_ENGINE "mruby" -</span></code></pre></div></div> - <footer class="post-footer"> - <ul class="post-tags"> - <li><a href="https://blog.nsfisis.dev/tags/ruby">ruby</a></li> - </ul> - </footer> - -</article></main> -<footer class="footer"> - <span>© 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span> - <span>·</span> - <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span> - <span>·</span> - <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span> -</footer> -<script src="https://blog.nsfisis.dev/highlight.min.js"></script> -<script> - hljs.initHighlightingOnLoad(); -</script> -</body> -</html> - +<!DOCTYPE html><html><head><title>https://blog.nsfisis.dev/posts/2021-10-02/ruby-detect-running-implementation/</title><link rel="canonical" href="https://blog.nsfisis.dev/posts/2021-10-02/ruby-detect-running-implementation/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://blog.nsfisis.dev/posts/2021-10-02/ruby-detect-running-implementation/" /></head></html>
\ No newline at end of file |
