Project

General

Profile

Activity

From 07/03/2016 to 07/09/2016

07/09/2016

11:19 PM Bug #12579 (Closed): Backport rubygems fix from upstream repo for Ruby 2.2.x (2)
It's difference backport request with #12248
rubygems fixes failure of installation on NFS. I attached patch that ...
hsbt (Hiroshi SHIBATA)
08:42 PM Feature #12578 (Rejected): Instance Variables Assigned In parameters ( ala Crystal? )
When I first saw the instance assignments in Crystal, I was floored... I have looked at all 18 pages in this tracker ... lankford (Matt Lankford)
12:49 PM Bug #12577 (Rejected): Is '$' punctuation or not? Inconsistency between us-ascii and UTF-8
US-ASCII thinks '$' is punctuation. UTF-8 thinks it's not.
This means that the following two scripts:
```
# en...
duerst (Martin Dürst)
12:55 AM Bug #12576 (Closed): SEGV when interrupting tail recursion
The following program causes SEGV when interrupted by SIGINT.
```ruby
RubyVM::InstructionSequence.compile_option ...
shugo (Shugo Maeda)
12:17 AM Feature #12086: using: option for instance_eval etc.
Nobuyoshi Nakada wrote:
> Shugo Maeda wrote:
> > It looks cool, but there are two problems here:
> >
> > 1. We h...
shugo (Shugo Maeda)
12:05 AM Feature #12574: Remove TRUE, FALSE, and NIL
Nobuyoshi Nakada wrote:
> Deprecate them first?
Sounds reasonable.
I found that tool/mkconfig.rb uses them.......
shugo (Shugo Maeda)

07/08/2016

06:45 PM Feature #12573: Introduce a straightforward way to discover whether a process is running
I tried to get Ruby to compile on a Windows 2012R2 VM, and I think I was partially successful. It appears that `test_... will_in_wi (William Johnston)
03:08 PM Feature #12573: Introduce a straightforward way to discover whether a process is running
I've updated the PR to fix this round of comments. If there are more comments, I'll address them, otherwise, what els... will_in_wi (William Johnston)
02:23 PM Feature #12573: Introduce a straightforward way to discover whether a process is running
I don't have a Windows machine to set this up and test. I'll try and do so. It was commented on the PR that there are... will_in_wi (William Johnston)
12:47 AM Feature #12573: Introduce a straightforward way to discover whether a process is running
What about Windows? Does this work as-is? shyouhei (Shyouhei Urabe)
01:07 PM Feature #12574: Remove TRUE, FALSE, and NIL
Deprecate them first? nobu (Nobuyoshi Nakada)
09:54 AM Feature #12574 (Closed): Remove TRUE, FALSE, and NIL
I believe `TRUE`, `FALSE`, and `NIL` are no longer used.
Why not remove them?
shugo (Shugo Maeda)
12:58 PM Feature #12086: using: option for instance_eval etc.
Shugo Maeda wrote:
> It looks cool, but there are two problems here:
>
> 1. We have to write `using RaddDjur::DSL...
nobu (Nobuyoshi Nakada)
08:02 AM Feature #12086: using: option for instance_eval etc.
Yukihiro Matsumoto wrote:
> I like the idea, but I understand this makes implementation harder (especially for perfo...
shugo (Shugo Maeda)
07:56 AM Feature #12086: using: option for instance_eval etc.
Nobuyoshi Nakada wrote:
> I'm against `instance_eval` under the hood by libraries.
I used to be against it too, b...
shugo (Shugo Maeda)
12:51 PM Bug #12575 (Closed): Conditional jump or move depends on uninitialised value(s) at rb_wait_for_single_fd (thread.c:3864)
Applied in changeset r55613.
----------
* thread.c (rb_wait_for_single_fd): Clean up fds.revents every time
before...
ngoto (Naohisa Goto)
12:46 PM Bug #12575 (Closed): Conditional jump or move depends on uninitialised value(s) at rb_wait_for_single_fd (thread.c:3864)
x86_64 の Debian GNU/Linux 8 にて、valgrind上でdrbのテストを実行すると、以下のレポートが出ました。
(r55612 にて確認)
```
$ valgrind ./ruby test/ru...
ngoto (Naohisa Goto)
12:34 PM Bug #12569 (Closed): There is no any warnings or errors with wrong comma after last attr_accessor attribute
Try with `-w` option. nobu (Nobuyoshi Nakada)
07:22 AM Feature #12533 (Assigned): Refinements: allow modules inclusion, in which the module can call internal methods which it defines.
Matz, what do you think of this?
Local rebinding may be worth considering, but there is a trade-off.
shugo (Shugo Maeda)
07:18 AM Feature #12534 (Feedback): Refinements: refine modules as well
There is an implementation difficulty when refining modules and calling `super` in that refinement.
One solution i...
shugo (Shugo Maeda)
01:36 AM Feature #12217: Introducing Enumerable#sum for precision compensated summation and revert r54237
> For example, [false].sum returns 0.
I reported this undocumented behavior as a bug several months ago.
https://...
mrkn (Kenta Murata)
01:25 AM Feature #12217: Introducing Enumerable#sum for precision compensated summation and revert r54237
Richard Schneeman wrote:
> Would be nice if we could match behavior with Rails Enumerable#sum https://github.com/rai...
akr (Akira Tanaka)

07/07/2016

10:40 PM Feature #12573: Introduce a straightforward way to discover whether a process is running
Pull request: https://github.com/ruby/ruby/pull/1399 will_in_wi (William Johnston)
10:39 PM Feature #12573: Introduce a straightforward way to discover whether a process is running
Fix formatting. will_in_wi (William Johnston)
10:38 PM Feature #12573 (Open): Introduce a straightforward way to discover whether a process is running
## Background
The best present solution is to kill the process with a signal of 0, and then evaluate the exit code...
will_in_wi (William Johnston)
08:04 PM Bug #12569 (Rejected): There is no any warnings or errors with wrong comma after last attr_accessor attribute
In second sample we don't have any warnings or errors with wrong comma after last attr_accessor attribute and withou... [email protected] (Roman Krasavtsev)
07:59 PM Feature #12217: Introducing Enumerable#sum for precision compensated summation and revert r54237
Would be nice if we could match behavior with Rails Enumerable#sum https://github.com/rails/rails/blob/3d716b9e66e334... schneems (Richard Schneeman)
06:59 PM Bug #12568 (Closed): wrong ArgumentError if an array is given for instance_exec with optional argument
Applied in changeset r55609.
----------
* vm_args.c (setup_parameters_complex): don't raise ArgumentError
if an ar...
naruse (Yui NARUSE)
06:50 PM Bug #12568 (Closed): wrong ArgumentError if an array is given for instance_exec with optional argument
From Ruby 2.2 to trunk, it wrongly raise ArgumentError as follows:
Sample code:
```ruby
instance_exec([1,2,3])...
naruse (Yui NARUSE)
06:06 PM Misc #12567 (Closed): Where is parser.bundle ?
Hello,
Ruby 2.3 add native json support.
The `json` **gemspec** files, list :
* json.rb
* json/add/bigdecim...
waghanza (Marwan Rabbâa)
05:27 PM Bug #12566 (Closed): IO.copy_stream : tty/command-line events not being passed around
nobu (Nobuyoshi Nakada)
03:52 PM Bug #12566: IO.copy_stream : tty/command-line events not being passed around
```
$stdin.raw!
```
You can close, found the solution.
chucke (Tiago Cardoso)
03:12 PM Bug #12566 (Rejected): IO.copy_stream : tty/command-line events not being passed around
Coming from here: http://stackoverflow.com/questions/38248911/ruby-when-copying-streams-how-to-make-it-pass-input-cha... chucke (Tiago Cardoso)
05:21 PM Bug #12545: Ruby 2.3.1 compilation error [Windows]
According to [MSDN][1], `NET_LUID` is used since Windows Vista released in 2006.
Visual C++ 8.0 was released in 2005...
nobu (Nobuyoshi Nakada)
01:14 AM Bug #12545: Ruby 2.3.1 compilation error [Windows]
Ivan Serdyuk wrote:
> Various versions of Microsoft compiler gave same errors.
Can you say which ones, exactly? W...
duerst (Martin Dürst)
04:01 PM Bug #12549: List files with CC0 license in LEGAL file
And missing/strerror.c.
You can use `find -exec {} +` and `grep -l`, or `grep -r --include`.
```
find . \( -na...
nobu (Nobuyoshi Nakada)
03:11 PM Bug #12535: are there 2 sleep methods defined?
If you want to overwrite the method globally, prepend the module to `Kernel` instead of the singleton class of it. nobu (Nobuyoshi Nakada)
03:09 PM Bug #12535: are there 2 sleep methods defined?
@Nobu, can you check my last comment? I think this is a valid concern, as in "the same method defined in two objects". chucke (Tiago Cardoso)
12:56 PM Bug #12564: Sometimes test_settracefunc.rb segfaults in exec_hooks_body (vm_trace.c)
This occasionally also occurs on Solaris 10 running on Sparc CPU.
http://rubyci.s3.amazonaws.com/unstable10s/ruby-...
ngoto (Naohisa Goto)
11:12 AM Bug #12565: SEGV when using &:foo with tail call optimization
@nobu Please fix it if you come up with a better solution.
It seems that Ruby 2.2 or earlier doesn't have this probl...
shugo (Shugo Maeda)
11:08 AM Bug #12565 (Closed): SEGV when using &:foo with tail call optimization
Applied in changeset r55605.
----------
* vm_args.c (vm_caller_setup_arg_block): disable symbol block
argument opt...
shugo (Shugo Maeda)
11:07 AM Bug #12565: SEGV when using &:foo with tail call optimization
The debug information is as follows:
```
(eval):2: [BUG] Segmentation fault at 0x00000000000010
ruby 2.4.0dev (2...
shugo (Shugo Maeda)
10:57 AM Bug #12565 (Closed): SEGV when using &:foo with tail call optimization
The following script causes SEGV:
```ruby
RubyVM::InstructionSequence.compile_option = {
:tailcall_optimizatio...
shugo (Shugo Maeda)
03:37 AM Bug #12561: OpenSSL::Cipher#key= silently truncates key strings.
I agree with Kazuki's judgment about backporting to the stable branches.
BTW is there any entry about this change in...
nagachika (Tomoyuki Chikanaga)
01:48 AM Bug #12561 (Closed): OpenSSL::Cipher#key= silently truncates key strings.
Thank you for reporting!
I believe it is a bug, r55146 fixed it in trunk. Unfortunately it looks like some applica...
rhenium (Kazuki Yamaguchi)
01:09 AM Feature #12553: IO.readlines(filename, chomp: true)
とりあえず。
https://github.com/ruby/ruby/compare/trunk...nobu:feature/12553-chomp-option
nobu (Nobuyoshi Nakada)

07/06/2016

11:50 PM Bug #12564 (Closed): Sometimes test_settracefunc.rb segfaults in exec_hooks_body (vm_trace.c)
I'm not really sure which test segfaults but I think it's test_tracepoint_with_multithreads
This might be similar ...
davispuh (Dāvis Mosāns)
08:40 PM Bug #12563 (Closed): backport 49758,50356
49758,50356 is required to run `make test-rubyspec` because without them rubyspec fails to build option/capi/ext.
ht...
naruse (Yui NARUSE)
08:37 PM Bug #12562 (Closed): URI merge removes empty segment contrary to RFC 3986
## Background
This bug surfaced while testing against a server whose router expects an empty segment. The server r...
john_elrick (John Elrick)
08:27 PM Bug #12561 (Closed): OpenSSL::Cipher#key= silently truncates key strings.
Not entirely sure if this is a bug or a feature request, so please recategorize if I got it wrong.
Setting the key...
xavierholt (Kevin Burk)
08:05 PM Bug #12545: Ruby 2.3.1 compilation error [Windows]
Various versions of Microsoft compiler gave same errors. Might suggestion is that it is some sort of typdef related r... local.tourist.kiev (Ivan Serdyuk)
06:20 PM Bug #12560 (Closed): backport r55602
They may fail parallel test-all.
* ruby_2_3: https://travis-ci.org/ruby/ruby/builds/141708115
* ruby_2_2: https:/...
naruse (Yui NARUSE)
03:21 PM Bug #11964 (Assigned): __callee__ in aliased methods defined in a module returns an incorrect value
usa (Usaku NAKAMURA)
03:16 PM Feature #12558: Ruby does not support alternative server name in SSL connection
FWIW, it looks like there was Net::HTTP#enable_post_connection_check option (r13499, 2007-09-23), but it was removed ... rhenium (Kazuki Yamaguchi)
08:12 AM Feature #12558 (Rejected): Ruby does not support alternative server name in SSL connection
In server keystore file, it specifies Owner like Owner: CN=default.server. When used SSL connection to connect to the... gangshen (gang shen)
02:11 PM Bug #12391: backport r55063
ruby_2_2 r55598 merged revision(s) 54168. usa (Usaku NAKAMURA)
01:55 PM Bug #12391: backport r55063
r54168 が入ってないとむしろ症状が悪化していました……。 usa (Usaku NAKAMURA)
01:26 PM Bug #12559 (Closed): ./enc/iso_8859_14.c, line 253: error: syntax error near / with old fcc on Solaris 10
Applied in changeset r55597.
----------
enc/iso_8859_14.c: Fix compile error by old version of fcc on Solaris 10.
[B...
ngoto (Naohisa Goto)
01:08 PM Bug #12559 (Closed): ./enc/iso_8859_14.c, line 253: error: syntax error near / with old fcc on Solaris 10
Solaris 10上の古い Fujitsu C Compiler (fcc) にて、以下のコンパイルエラーが発生します。
```
fcc -G -o .ext/sparc64-solaris2.10/enc/iso_8859...
ngoto (Naohisa Goto)
06:49 AM Bug #12557 (Closed): backport r55581 (Net::HTTP should raise error when CR/LF in a request line)
This is a ticket for backport management. The issue was already fixed on trunk.
Let's treat r55581 and r55582 as a b...
nagachika (Tomoyuki Chikanaga)
06:46 AM Bug #12556 (Closed): backport r55579 (Net::FTP should raise error when CR/LF in a line)
Let's treat r55579 as a bugfix and backport into stable branches. nagachika (Tomoyuki Chikanaga)
03:28 AM Bug #12548: Rounding modes inconsistency between round versus sprintf
I agree that can be a point. I changed the subject. shyouhei (Shyouhei Urabe)
03:19 AM Feature #12484: Optimizing Rational
> but it's an another story IMHO.
I agree with you.
mrkn (Kenta Murata)

07/05/2016

06:36 PM Bug #12555 (Rejected): Cannot resume a fiber that was earlier transferred from, then transferred back to, and then yielded
Consider the following code snippet:
~~~
require 'fiber'
fiber2 = nil
fiber1 = Fiber.new do
puts "In Fib...
amukher1 (Arindam Mukherjee)
04:38 PM Bug #12554: yamlに渡すファイルポインタを自分でcloseしないと動作が変
ありがとうございます。
GCのcloseに頼ったコードを書いていたみたいです。
気を付けたいと思います。
uy (西行寺 うゆ)
02:03 PM Bug #12554: yamlに渡すファイルポインタを自分でcloseしないと動作が変
西行寺 うゆ wrote:
> rubyのファイルポインタは、スコープを抜けたら処理系側でcloseされているものと思ったんですが
それは誤解です。
参照されなくなったFileオブジェクトは、GCされる時にcloseされる可...
usa (Usaku NAKAMURA)
01:47 PM Bug #12554 (Rejected): yamlに渡すファイルポインタを自分でcloseしないと動作が変

rubyのファイルポインタは、スコープを抜けたら処理系側でcloseされているものと思ったんですが
yamlで読み書きを行う場合に動作がおかしいような気がします
このスクリプトを実行すると、それなりの確率で以下のエラーが出...
uy (西行寺 うゆ)
01:03 PM Bug #12536: SIGABRT during GC on Debian GNU/Linux 8 (x86_64) due to insufficient string buffer allocation related with term fill
>エンコーディング設定時に上記から呼ばれる rb_str_fill_terminator() がバグっていたことが判明しました。
r55575 にて、エンコーディング設定時=termlen変更時には、
rb_str_chang...
ngoto (Naohisa Goto)
11:49 AM Feature #12542 (Closed): Bump version to json-2.0.1
Applied in changeset r55576.
----------
* ext/json/*, test/json/*: Update json-2.0.1.
Changes of 2.0.0: https://gi...
hsbt (Hiroshi SHIBATA)
09:33 AM Feature #12542: Bump version to json-2.0.1
作業どもです、コミットしてください naruse (Yui NARUSE)
11:10 AM Bug #12545: Ruby 2.3.1 compilation error [Windows]
I don't see any problems with cygwin, so this problem may be compiler-specific. Can you try with another compiler? (e... duerst (Martin Dürst)
08:59 AM Bug #12545: Ruby 2.3.1 compilation error [Windows]
Martin Dürst wrote:
> Can this bug be reproduced on trunk?
Yes. As also as for 2.1.9, 2.2.5
local.tourist.kiev (Ivan Serdyuk)
06:04 AM Bug #12545 (Feedback): Ruby 2.3.1 compilation error [Windows]
Can this bug be reproduced on trunk? duerst (Martin Dürst)
09:51 AM Feature #10098: [PATCH] Timing-safe string comparison for OpenSSL::HMAC
Yui, I'm a little confused. The patch you have in your comment looks timing-safe to me. Also I suggest taking a look ... arrtchiu (Matt U)
09:31 AM Feature #12553: IO.readlines(filename, chomp: true)
ごもっともだと思います。 duerst (Martin Dürst)
09:11 AM Feature #12553 (Closed): IO.readlines(filename, chomp: true)
IO.readlinesやIO.foreach、IO#each_lineなどは戻り値(またはブロックパラメータ)のそれぞれの「行」に改行を含みます。
POSIXの "Line" の定義は末尾の改行を含んでのものなので非常に正しい...
naruse (Yui NARUSE)
09:07 AM Bug #12548: Rounding modes inconsistency between round versus sprintf
Having read a bit more I see that there are indeed multiple possible ways of handling tie-breaking i.e. when a value ... unclekiki (Kieran McCusker)
03:01 AM Bug #12548: Rounding modes inconsistency between round versus sprintf
I doubt if this is a bug or not. The rounding mode you describe is so-called "round to the nearest even" which is de... shyouhei (Shyouhei Urabe)
08:13 AM Bug #12552 (Closed): You may have encountered a bug in the Ruby interpreter or extension libraries.
Major (Phumzani Major)
04:48 AM Feature #3511: rb_path_to_class should call custom const_defined? methods
I've attached an updated patch for current ruby trunk, which I think is a little more consistent with non-lazily-defi... oggy (George Ogata)
02:09 AM Bug #12209 (Closed): Array#pack("G") problem
Applied in changeset r55573.
----------
* pack.c (pack_pack): use union instead of bare variable to ease
optimizat...
naruse (Yui NARUSE)

07/04/2016

09:46 PM Misc #12529: LEGAL file covering all the license information within Ruby
Hi,
As I could see that below sub issue pages have been created. So, I sent my patch file as an attachment for eac...
jaruga (Jun Aruga)
08:56 PM Feature #12550: List files with SIL license in LEGAL file
Hi,
Thank you for your creating the issue page.
I would send you my patch as an attachment.
Could you check this?
...
jaruga (Jun Aruga)
10:14 AM Feature #12550 (Closed): List files with SIL license in LEGAL file
From https://bugs.ruby-lang.org/issues/12529:
lib/rdoc/generator/template/darkfish/css/fonts.css
It must be SIL l...
duerst (Martin Dürst)
08:40 PM Bug #12549: List files with CC0 license in LEGAL file
Hi,
I would send my patch to fix this.
Could you check it?
Thanks.
jaruga (Jun Aruga)
10:11 AM Bug #12549 (Closed): List files with CC0 license in LEGAL file
From https://bugs.ruby-lang.org/issues/12529:
Additional files with CC0 (Public Domain license)
```
find -name "...
duerst (Martin Dürst)
03:06 PM Bug #12551 (Closed): Exception accessing file with long path on windows
Accessing file with a long file name causes this exception:
C:/Projects/Head/Build/cm/testdir01/testdir02/testdir0...
Maturin (Lars Benner)
09:24 AM Bug #12538: hostsを書き換えてwebrickで書いたプロキシ―に繋いでいるとrubyが落ちる
-d オプションを付けて実行してみました
正常にdumpされてるかは分かりませんが
コンソールに流していたログは保存出来たので上げておきます
uy (西行寺 うゆ)
04:35 AM Bug #12538 (Feedback): hostsを書き換えてwebrickで書いたプロキシ―に繋いでいるとrubyが落ちる
提示された proxy のスクリプトと hosts.txt を使ってしばらく運用してみましたが、再現できませんでした。
(2.3.1p112 (2016-04-26 revision 54768) [x86_64-darwin15]...
nagachika (Tomoyuki Chikanaga)
09:20 AM Bug #12548 (Closed): Rounding modes inconsistency between round versus sprintf
Hi
I've found this possible bug with `sprintf` in our production code, but it
seems very odd that no one has repo...
unclekiki (Kieran McCusker)
09:07 AM Bug #12547 (Closed): Remove ONIG_UNICODE_VERSION_... in enc/unicode/case-folding.rb, casefold.h
r55546 defined four macros starting with ONIG_UNICODE_VERSION_...
I haven't found any place where they are used. I d...
duerst (Martin Dürst)
08:54 AM Feature #12546 (Closed): Remove UnicodeNormalize::UNICODE_VERSION
UnicodeNormalize::UNICODE_VERSION is defined in lib/unicode_normalize/tables.rb, but we now also have RbConfig::CONFI... duerst (Martin Dürst)

07/03/2016

10:27 PM Bug #12545 (Closed): Ruby 2.3.1 compilation error [Windows]
Greetings. Having problems with compilation:
```
Microsoft (R) Program Maintenance Utility Version 8.00.50727.42
...
local.tourist.kiev (Ivan Serdyuk)
04:25 PM Bug #12544 (Closed): Segfault on ruby-head
Log is available here: https://travis-ci.org/getsentry/raven-ruby/jobs/142024230
Following the steps in the log sh...
nateberkopec (Nate Berkopec)
01:40 PM Bug #12535: are there 2 sleep methods defined?
Yes I am. My point being, I can't overwrite the sleep method only in one place, as it is apparently defined in two di... chucke (Tiago Cardoso)
09:30 AM Bug #12526 (Closed): Error trying to compile enc/euc_jp.c
This problem was fixed by 'svn up'. I have no idea why the files in question (enc/jis/props.h) was empty. duerst (Martin Dürst)
07:01 AM Bug #9154 (Closed): Support for OpenSSL with MD5 disabled for certificate verification
Closing this as it is already fixed. rhenium (Kazuki Yamaguchi)
06:59 AM Feature #10420 (Closed): Cannot set IV length to OpenSSL::Cipher
Thanks for providing a patch! I made it in a generic way. Please see:
https://github.com/ruby/openssl/pull/58
rhenium (Kazuki Yamaguchi)
06:53 AM Feature #8667 (Closed): Unable to set OpenSSL GCM iv_length in Ruby
I think this is good to have. I thought about changing Cipher#iv= first, too, but I didn't because of the current (2.... rhenium (Kazuki Yamaguchi)
06:04 AM Bug #10115 (Closed): Error in OpenSSL documentation section: Loading a key
Strictly speaking, it is not incorrect - PKey::RSA#public? always returns true. But indeed it is very unfriendly. Tha... rhenium (Kazuki Yamaguchi)
05:27 AM Bug #8673 (Closed): User rest-client PUT request core dumped
I reproduced it. Thanks.
https://github.com/ruby/openssl/pull/56
I believe McClain's is another bug. If it stil...
rhenium (Kazuki Yamaguchi)
03:41 AM Bug #11774 (Feedback): OpenSSL::PKey.read produces ArgumentError on invalid passphrases
OpenSSL does not give the information what type of key is contained in the PEM when an error occurs. So it's impossib... rhenium (Kazuki Yamaguchi)
03:28 AM Bug #6703 (Rejected): openssl: using a newly registered extension
(from ossl_ext_bug.rb)
> ef.create_extension('hurr','This is a test')
It doesn't work because OpenSSL (X509V3_EXT...
rhenium (Kazuki Yamaguchi)
03:02 AM Bug #9848 (Third Party's Issue): OpenSSL::SSL::SSLContext の SSLv2 利用不可サーバへの接続時のデフォルト設定の応答について
OpenSSL は SSLv23_method() を使用したとき可能ならば SSL 2.0 形式の Client Hello を送信しますが、それが原因ではないでしょうか。
Ruby 1.8.7p299 と 1.9.3p484...
rhenium (Kazuki Yamaguchi)
02:02 AM Bug #6227: [mingw] openssl backport causing test error
I confirmed that this issue is no longer exist in the current RubyInstaller build versions.
I checked below versio...
moritat (Tsuyoshi Morita)
 

Also available in: Atom