{"id":13463199,"url":"https://github.com/cxn03651/write_xlsx","last_synced_at":"2025-03-25T06:31:48.177Z","repository":{"id":2016264,"uuid":"2951816","full_name":"cxn03651/write_xlsx","owner":"cxn03651","description":"Rubygem for create excel xlsx file","archived":false,"fork":false,"pushed_at":"2024-10-21T09:40:33.000Z","size":19019,"stargazers_count":286,"open_issues_count":46,"forks_count":64,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-10-29T13:50:44.219Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://cxn03651.github.io/write_xlsx/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cxn03651.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-12-10T03:28:20.000Z","updated_at":"2024-10-26T20:21:07.000Z","dependencies_parsed_at":"2023-02-16T12:31:48.325Z","dependency_job_id":"e2fa7bfa-ddba-47b8-882b-c0a16f3712ca","html_url":"https://github.com/cxn03651/write_xlsx","commit_stats":{"total_commits":1221,"total_committers":25,"mean_commits":48.84,"dds":0.2604422604422605,"last_synced_commit":"afb5d59c8ccf152159729757005c80545fabd488"},"previous_names":[],"tags_count":86,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxn03651%2Fwrite_xlsx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxn03651%2Fwrite_xlsx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxn03651%2Fwrite_xlsx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cxn03651%2Fwrite_xlsx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cxn03651","download_url":"https://codeload.github.com/cxn03651/write_xlsx/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245414016,"owners_count":20611357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-31T13:00:47.860Z","updated_at":"2025-03-25T06:31:43.166Z","avatar_url":"https://github.com/cxn03651.png","language":"Ruby","funding_links":[],"categories":["Documents \u0026 Reports","Ruby","Spreadsheets"],"sub_categories":["Reports \u0026 Spreadsheets"],"readme":"# write_xlsx\n\n[![Gem Version](https://badge.fury.io/rb/write_xlsx.png)](http://badge.fury.io/rb/write_xlsx)\n[![Build Status](https://travis-ci.org/cxn03651/write_xlsx.svg?branch=master)](https://travis-ci.org/cxn03651/write_xlsx)\n\ngem to create a new file in the Excel 2007+ XLSX format, and you can use the\nsame interface as writeexcel gem. write_xlsx is converted from Perl's module\n[Excel::Writer::XLSX](https://github.com/jmcnamara/excel-writer-xlsx)\n\n## Description\n\nReference doc : https://cxn03651.github.io/write_xlsx/\n\nThe WriteXLSX supports the following features:\n* Multiple worksheets\n* Strings and numbers\n* Unicode text\n* Cell formatting\n* Formulas (including array formats)\n* Images\n* Charts\n* Autofilters\n* Data validation\n* Conditional formatting\n* Macros\n* Tables\n* Shapes\n* Sparklines\n* Hyperlinks\n* Rich string formats\n* Defined names\n* Grouping/Outlines\n* Cell comments\n* Panes\n* Page set-up and printing options\n\nwrite_xlsx uses the same interface as writeexcel gem.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n    gem 'write_xlsx'\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install write_xlsx\n\n## Synopsis\n\nTo write a string, a formatted string, a number and a formula to\nthe first worksheet in an Excel XML spreadsheet called ruby.xlsx:\n\n    require 'rubygems'\n    require 'write_xlsx'\n\n    # Create a new Excel workbook\n    workbook = WriteXLSX.new('ruby.xlsx')\n\n    # Add a worksheet\n    worksheet = workbook.add_worksheet\n\n    # Add and define a format\n    format = workbook.add_format # Add a format\n    format.set_bold\n    format.set_color('red')\n    format.set_align('center')\n\n    # Write a formatted and unformatted string, row and column notation.\n    col = row = 0\n    worksheet.write(row, col, \"Hi Excel!\", format)\n    worksheet.write(1,   col, \"Hi Excel!\")\n\n    # Write a number and a formula using A1 notation\n    worksheet.write('A3', 1.2345)\n    worksheet.write('A4', '=SIN(PI()/4)')\n\n    workbook.close\n\n## Copyright\nOriginal Perl module was written by John McNamara(jmcnamara@cpan.org).\n\nConverted to ruby by Hideo NAKAMURA(nakamrua.hideo@gmail.com)\nCopyright (c) 2012-2024 Hideo NAKAMURA.\n\nSee LICENSE.txt for further details.\n\n## Contributing to write_xlsx\n\n* repsitory: https://github.com/cxn03651/write_xlsx\n* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet\n* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it\n* Fork the project\n* Start a feature/bugfix branch\n* Commit and push until you are happy with your contribution\n* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.\n* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcxn03651%2Fwrite_xlsx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcxn03651%2Fwrite_xlsx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcxn03651%2Fwrite_xlsx/lists"}