00:07
shellac has quit [Quit: Computer has gone to sleep.]
00:20
rrutkowski has joined #jruby
00:24
rrutkowski has quit [Client Quit]
00:25
rrutkowski_ has joined #jruby
00:29
rrutkowski_ has quit [Client Quit]
00:30
rrutkowski has joined #jruby
00:34
<
GitHub41 >
[jruby] byteit101 opened issue #5005: JRuby IRB readline issue on linux under a non-forked PTY
https://git.io/vNoLl
00:38
rrutkowski has quit [Quit: rrutkowski]
00:40
rrutkowski has joined #jruby
00:43
rrutkowski has quit [Read error: Connection reset by peer]
01:00
cremes has quit [Quit: cremes]
01:03
rrutkowski has joined #jruby
01:22
rrutkowski has quit [Quit: rrutkowski]
01:23
rrutkowski has joined #jruby
01:27
yosafbridge has quit [Quit: Leaving]
01:29
rrutkowski has quit [Read error: Connection reset by peer]
01:30
rrutkowski has joined #jruby
01:31
rrutkowski has quit [Read error: Connection reset by peer]
01:31
rrutkowski has joined #jruby
01:34
rrutkowski has quit [Client Quit]
01:37
yosafbridge has joined #jruby
01:40
rrutkowski has joined #jruby
02:00
rrutkowski has quit [Quit: rrutkowski]
02:01
rrutkowski has joined #jruby
02:11
rrutkowski has quit [Quit: rrutkowski]
02:17
rrutkowski has joined #jruby
02:45
cremes has joined #jruby
02:49
cremes has quit [Client Quit]
03:50
akp has quit [Remote host closed the connection]
04:24
cremes has joined #jruby
04:25
cremes has quit [Client Quit]
04:34
akp has joined #jruby
04:34
cremes has joined #jruby
04:58
cremes has quit [Quit: cremes]
05:44
akp has quit [Remote host closed the connection]
05:58
clayton has quit [Ping timeout: 248 seconds]
06:04
clayton has joined #jruby
06:45
akp has joined #jruby
06:50
akp has quit [Ping timeout: 248 seconds]
07:01
byteit101 has quit [Ping timeout: 255 seconds]
08:07
Puffball has joined #jruby
08:39
claudiuinberlin has joined #jruby
08:45
shellac has joined #jruby
09:07
shellac has quit [Quit: Computer has gone to sleep.]
09:55
shellac has joined #jruby
10:11
drbobbeaty has quit [Ping timeout: 276 seconds]
11:25
baroquebobcat has quit [Remote host closed the connection]
11:31
akp has joined #jruby
11:35
akp has quit [Ping timeout: 246 seconds]
11:38
claudiuinberlin has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
12:17
claudiuinberlin has joined #jruby
12:17
claudiuinberlin has quit [Client Quit]
12:23
drbobbeaty has joined #jruby
12:46
claudiuinberlin has joined #jruby
13:01
drbobbeaty has joined #jruby
13:12
bbrowning_away is now known as bbrowning
13:31
akp has joined #jruby
13:40
akp has quit [Remote host closed the connection]
14:08
akp has joined #jruby
14:25
akp_ has joined #jruby
14:28
akp has quit [Ping timeout: 256 seconds]
14:55
<
headius >
good morning!
14:55
<
GitHub120 >
jruby/jruby-9.1 eae124d Charles Oliver Nutter: Install and use haveged to further blunt some rand issues.
14:55
rrutkowski has quit [Quit: rrutkowski]
15:25
<
GitHub191 >
[jruby] yui-knk opened pull request #5006: Fix test coerce2 (jruby-9.1...fix_test_coerce2)
https://git.io/vNKGI
15:29
Gauf has joined #jruby
15:32
jrafanie has joined #jruby
15:33
Gauf has quit [Client Quit]
15:34
Gauf has joined #jruby
15:35
<
Gauf >
I am trying to re-set a private final field in a java class in jruby, is it possible?
15:35
<
headius >
heh well I would recommend against it, but it's possible to do almost anything
15:36
<
headius >
use `field_accessor :your_field_name` in the reopened class and if we can make it settable it will do so
15:36
<
Gauf >
I have to access "modifiers" field in a class, trying like `SomeClass.java_class.java_class.declared_field("modifiers")`
15:36
<
Gauf >
Ahdid not try that!
15:38
<
Gauf >
Hmm get a security error, so maybe it is impossible after all.
15:39
<
GitHub27 >
jruby/master 5fb48a7 Charles Oliver Nutter: Merge branch 'jruby-9.1'
15:40
<
GitHub155 >
jruby/jruby-9.1 b85fa82 Charles Oliver Nutter: Merge branch 'fix_method_inspect_4995' into jruby-9.1
15:44
<
headius >
Gauf: how are you running JRuby?
15:44
<
headius >
normally security should allow this, but Java 9 has locked some things down so that could prevent it
15:45
<
Gauf >
java 8u151 and jruby 1.7.23
15:46
<
Gauf >
no sure if I answered your question
15:48
<
headius >
can you show me the script and error?
15:48
<
headius >
I mean, it may not be possible, but I didn't think Java 8 locked down final mutation
15:49
<
GitHub161 >
jruby/master 0cb4e8d Charles Oliver Nutter: Merge branch 'jruby-9.1'
16:02
xardion has quit [Remote host closed the connection]
16:05
<
GitHub108 >
[jruby] enebo closed pull request #5006: Fix test coerce2 (jruby-9.1...fix_test_coerce2)
https://git.io/vNKGI
16:05
<
GitHub177 >
jruby/jruby-9.1 a559b81 yui-knk: Remove `Rational#div`...
16:05
<
GitHub177 >
jruby/jruby-9.1 6edca41 yui-knk: Remove `Rational#modulo` and `Rational#%`...
16:05
<
GitHub177 >
jruby/jruby-9.1 c4957fc yui-knk: Define `Numeric#%`...
16:07
<
headius >
ahh sorry, I forgot we actually try to enforce final ourselves here
16:08
xardion has joined #jruby
16:08
<
Gauf >
Yeah I looked at the code also and it seems so! Thx for your help!
16:10
<
headius >
you should still be able to do it with reflection if you really have to though
16:11
<
Gauf >
Its for a test, I will just relent and adapt the code for it. At some point I was just trying to do this to see if it could be done.
16:25
cremes has joined #jruby
17:02
shellac has quit [Quit: Leaving]
17:07
<
GitHub102 >
jruby/jruby-9.1 cce8776 Charles Oliver Nutter: Fix PTY by being more permissive of fcntl flags. Fixes #5004....
17:19
<
GitHub25 >
[jruby] headius closed issue #4888: jruby-jars 9.1.15.0 cannot start jirb on win7/jdk8_60 [java.lang.NoClassDefFoundError]
https://git.io/vblp9
17:32
cremes has quit [Quit: cremes]
17:34
jrafanie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17:36
jrafanie has joined #jruby
17:40
cremes has joined #jruby
17:44
shellac has joined #jruby
17:46
olle has quit [Quit: olle]
18:04
shellac has quit [Quit: Computer has gone to sleep.]
18:49
cremes has quit [Quit: cremes]
19:00
cremes has joined #jruby
19:03
shellac has joined #jruby
19:03
cremes has quit [Client Quit]
19:22
Gauf has joined #jruby
19:29
<
GitHub124 >
[jruby] enebo closed pull request #4818: Raise Errno::EISDIR when opening a directory for reading on Windows (master...file_open_read_raise_eisdir_on_windows)
https://git.io/vdMk8
19:29
<
GitHub17 >
jruby/master 73846e9 Thomas E Enebo: Merge pull request #4818 from philr/file_open_read_raise_eisdir_on_windows...
19:29
<
GitHub17 >
jruby/master 74b1970 Thomas E Enebo: Merge branch 'master' into file_open_read_raise_eisdir_on_windows
19:29
<
GitHub17 >
jruby/master c483cf1 Phil Ross: Raise Errno::EISDIR when opening a directory for reading on Windows.
19:33
rrutkowski has joined #jruby
19:54
akp_ has quit [Remote host closed the connection]
20:08
Puffball has quit [Remote host closed the connection]
20:12
Gauf has joined #jruby
20:20
akp has joined #jruby
20:30
akp has quit [Remote host closed the connection]
20:41
<
GitHub9 >
[jruby] headius opened issue #5007: Enumerator#next proceeds to next iteration without being called again
https://git.io/vN6et
20:43
<
GitHub20 >
jruby/jruby-9.1 c9bfede Charles Oliver Nutter: Don't view the same buffer; it might be updated while in use....
20:51
<
GitHub117 >
[jruby] headius closed issue #4903: Weird error using IO.copy_stream, IO duck types and enumerators
https://git.io/vbiU9
21:08
cremes has joined #jruby
21:13
Puffball has joined #jruby
21:19
cremes has quit [Quit: cremes]
21:21
akp has joined #jruby
21:48
shellac has joined #jruby
21:50
Puffball has quit [Remote host closed the connection]
21:55
Puffball has joined #jruby
22:03
baroquebobcat has joined #jruby
22:10
<
GitHub67 >
jruby/jruby-9.1 2cb38f3 Charles Oliver Nutter: Semi-silently ignore close_on_exec= on Windows for now....
22:10
<
GitHub150 >
[jruby] headius closed issue #4910: Regression with TCPSocket#close_on_exec on windows
https://git.io/vbDuf
22:18
bbrowning is now known as bbrowning_away
22:19
shellac has quit [Quit: Computer has gone to sleep.]
22:32
drbobbeaty has quit [Quit: My MacBook Pro has gone to sleep. ZZZzzz…]
22:34
<
GitHub163 >
jruby/bytelist_love fea43fb Thomas E. Enebo: More backtrace correction for encodings.
22:34
<
GitHub163 >
jruby/bytelist_love b7ee8ea Thomas E. Enebo: Add more backtrace support properly printing out method name. This commit is...
22:34
<
GitHub163 >
jruby/bytelist_love 9fe13cc Thomas E. Enebo: Update local_variables to use bytelistsi instead of Strings
22:36
akp has quit [Remote host closed the connection]
22:41
shellac has joined #jruby
22:46
<
GitHub52 >
[jruby] headius opened issue #5009: IO#close_on_exec= seems to have no effect on JDK sockets
https://git.io/vN6cB
23:01
<
GitHub35 >
jruby/bytelist_love cee507c Thomas E. Enebo: local_variables needs to acquire properly encoded bytes to check their first...
23:10
cremes has joined #jruby
23:26
shellac has quit [Quit: Computer has gone to sleep.]
23:37
akp has joined #jruby
23:39
Puffball has quit [Remote host closed the connection]
23:42
akp has quit [Ping timeout: 240 seconds]
23:59
rrutkowski has quit [Remote host closed the connection]