Nikolay Shebanov

Results 84 comments of Nikolay Shebanov

Such widget can be very accurate since all this watching, starring, forking and following features were introduced.

I thought that it is a ruby on rails feature, but I was wrong. In fact, [Spree](http://spreecommerce.com) has the same behaviors - it is possible to override templates in spree.

Looks good enough, thank you for your work! Hope @ejholmes will take a look.

+1 for this. Can't understand if disabling parser_rules is available via wysihtml5 config option. If it's not, there's no other way.

How about building a schema based on an existing TypedDict class? There's a plenty of information that can be inferred from the type definition, similar to `marshmallow-dataclass`.

Could you also provide an example code of the task?

Well, I made a rough experiment and it looks like the behavior can be easily patched. ``` ruby 3.times { worksheet.insert_row(15) } worksheet.merged_cells.each do |cell| next unless cell.ref.row_range.min >= 15...

Also I think we should copy merge info from the shifted row. That's exactly what Mac Numbers app does (can't check it in real Excel). And in the end the...

Found extra bug related to insert: ``` ruby worksheet.insert_row(row_index) # Here is everything ok: worksheet[row_index][0].change_contents("some string") # Here I get validate_worksheet exception: worksheet[row_index][2].change_contents("some_other_string") ``` Can't understand what is happening here...

@weshatheleopard well, let's think what we can do to update references?