diffy icon indicating copy to clipboard operation
diffy copied to clipboard

Easy Diffing in Ruby

Results 42 diffy issues
Sort by recently updated
recently updated
newest added

https://salsa.debian.org/vinay-keshava/ruby-diffy/-/jobs/3309498#L1071 Line number 1071 ARNING:reprotest.build:Not using sudo for domain_host; your build may fail. See man page for other options. WARNING:reprotest.build:Be sure to `echo 1 > /proc/sys/kernel/unprivileged_userns_clone` if on a Debian...

Error message: ``` Failure/Error: difference = Diffy::Diff.new(actual_str, expected_str).to_s NameError: uninitialized constant Diffy::Diff::Open3 diff, _stderr, _process_status = Open3.capture3(diff_bin, *(diff_options + @paths)) ^^^^^ Did you mean? OpenSSL # ./vendor/bundle/ruby/3.1.0/gems/diffy-3.4.2/lib/diffy/diff.rb:52:in `diff' # ./vendor/bundle/ruby/3.1.0/gems/diffy-3.4.2/lib/diffy/diff.rb:83:in...

```ruby # Note single quotes - \n is not a line break. puts Diffy::Diff.new('foo\nbar', 'boo\nfar').to_s(:html) ``` Expected: ```html foo\nbar boo\nfar ``` Actual: ```html foo bar boo far ```

Hi, first of all we really appreciate all of efforts diffy contributors are putting. Our product can not be thrived without diffy! We have been noticing an unexpected behavior when...

The CLI output of the `diffy` does not show whitespace at the end of the diff line ![image](https://user-images.githubusercontent.com/16985871/93665113-522c3280-fa74-11ea-8b2c-d0c16fdf3e43.png)

Currently if you diff a new file against a file that doesn't exist, it tells you there's no difference. I assume it's swallowing an error somewhere. What would be great...

It does not make any sense for that message to show up on comparison of two strings. I have not seen the code, but seems like you are taking two...

I am comparing to txt files with a context of just 50 lines and like how github's display compares file, I wanted to show "..." when skipping intermediate lines that...