caramdache

Results 37 comments of caramdache

It's a little difficult to debug given there are 667 entries in the keychain unfortunately. BTW, is there a reason that out of these 667 entries, only 521 appear in...

And how I import the entries into the iCloud keychain instead? I've always found weird that Apple has kept both and don't quite understand why some entries endup in one...

> diff_obj.Diff_Timeout = 5 Thanks, this is a lifesaver!

@weshatheleopard I am trying to use this branch and it returns a type error. It seems `DrawingFile` is defined both in `drawing.rb` and `storage.rb`: ``` -bash-4.2$ ruby ccs.rb Traceback (most...

@weshatheleopard could you also please sync this branch this master?

Here's a real example: ```ruby > cell => # > color = cell.get_cell_font.color => # > color.get_rgb(cell.worksheet.workbook) => nil > theme = color.theme => 0 > theme_color = cell.worksheet.workbook.theme.get_theme_color(theme) =>...

Here's a more elaborate version. ```ruby module RubyXL module CellConvenienceMethods def borders merged_cells.flat_map { |cell| [:top, :left, :right, :bottom].filter_map { |direction| direction if cell.get_border(direction) } }.uniq end def merged_cells worksheet.merged_cells.each...

> Yeah that works, and being able to get/set properties of the entire merged cell. Some properties are not set at the global merged cell level, but at the level...