alpaca-tc
alpaca-tc
Ruby master ships with Psych 4.0.0 which makes YAML.load defaults to safe mode (https://github.com/ruby/psych/pull/487). Keep compatibility by using unsafe_load. --- - Add 3.0 and 3.1 to .travis.yml - Loose version...
I will be ready for review when rails 7.1 is released.
I want to break up the comment parsing in watson-ruby to smaller module. There are three reasons for this. - First, extracting comments from a file which contains compound filetype...
In the ruby regexp, `/\w/` is the same as `/[a-zA-Z0-9_]/`. Therefore when given `wp-config` to `[files]`, `filename.match(/(\.(\w+))$/)` can not get correct file_path. I think we need to fix this bug...
First of all, awesome work :)) It seems like a few watson-ruby's code is not ruby way. Therefore I want to refactor some files and add test. What do you...
The basic policy of Rails is that application code in the development environment is lazy loaded. For this reason, `class_name` is passed as a string rather than a class in...
**Before merging:** - [ ] Copy the table printed at the end of the latest benchmark results into the `README.md` and update this PR - [ ] If this change...
When the column of bitemporal_id_key is uuid, the uuid can be generated and specified before insertion into the DB. In this case, there is no need to update bitemporal_id_key in...
Fix `TypeError: Cannot read properties of null (reading 'length')`. I have not been able to reproduce the bug but it seems that `stringToUtf8Bytes` may return null. stringToUtf8Bytes returns null ↓...