Thomas E Enebo
Thomas E Enebo
@kmalski @lopex and I realized the other week that the ECMA settings were made during the development of the now dead DynJS project and were not sourced from oniguruma. So...
@kmalski I can see it is marked OP2_OPTION_PERL and that when it sees '^' will set multi true and single false. Not completely sure on direction here but ECMA OR'ing...
@kmalski I think the long term solution would be to remove OP2_OPTION_PERL from ECMA Syntax but this is more complicated since in Parser#parseEnclose we get a lot of behavior from...
You could also just try removing OP2_OPTION_PERL and see if you can see anything break. I suspect yes but _RUBY does not set it and they have many similar features.
So I just looked at this and the wild thing is that in order to rewrite short if's (?:) you need to pass string source or original source. That seems...
@ccmywish Your script runs for me. I printed out $: to show what loaded: ```ruby require 'jdbc/sqlite3' Jdbc::SQLite3.load_driver Java::org.sqlite.JDBC url = "jdbc:sqlite:test.db" con = java.sql.DriverManager.get_connection url statement = con.create_statement statement.execute("create...
@ccmywish Interesting. So sequel is using the same gem internally but somehow loading it. I will see if I see anything on Windows but tracing through sequel execution maybe will...
@ccmywish I tried on windows and it is not loading for me either. The jar file is loading so it doubly confusing.
@simi I somewhat agree with @eregon opinion on these messages and that I personally would only want to see a message like this if it fixed something I should-not/cannot ignore...
@simi Yeah. I misread that. I guess we will just ENV["RUBYGEMS_PREVENT_UPDATE_SUGGESTION"] if we decide not to provide this with the rubygems we ship with. Looking at the PR there are...