README.md in fast_excel-0.1.4 vs README.md in fast_excel-0.1.5

- old
+ new

@@ -1,11 +1,16 @@ # Ultra Fast Excel Writter for Ruby ```ruby workbook = FastExcel.open("hello_world_ffi.xlsx", constant_memory: true) -worksheet = workbook.add_worksheet("Garuda Payments") +workbook.default_format.set( + font_size: 0, # user's default + font_family: "Arial" +) +worksheet = workbook.add_worksheet("Example Report") + bold = workbook.bold_cell_format worksheet.set_column(0, 0, FastExcel::DEF_COL_WIDTH, bold) price = workbook.number_format("#,##0.00") worksheet.set_column(1, 1, 20, price) @@ -32,7 +37,7 @@ end workbook.close ``` -This repositiry and gem contain precompiled [libxlsxwriter](https://github.com/jmcnamara/libxlsxwriter) for MacOs, Linux with glibc and Alpine Linux +This repositiry and gem contain sources of [libxlsxwriter](https://github.com/jmcnamara/libxlsxwriter)