├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── xlsxtream.rb └── xlsxtream │ ├── columns.rb │ ├── errors.rb │ ├── row.rb │ ├── shared_string_table.rb │ ├── version.rb │ ├── workbook.rb │ ├── worksheet.rb │ ├── xml.rb │ └── zip_kit_writer.rb ├── test ├── test_helper.rb ├── xlsxtream │ ├── columns_test.rb │ ├── row_test.rb │ ├── shared_string_table_test.rb │ ├── workbook_test.rb │ ├── worksheet_test.rb │ ├── xml_test.rb │ └── zip_kit_writer_test.rb └── xlsxtream_test.rb └── xlsxtream.gemspec /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/xlsxtream.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream.rb -------------------------------------------------------------------------------- /lib/xlsxtream/columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/columns.rb -------------------------------------------------------------------------------- /lib/xlsxtream/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/errors.rb -------------------------------------------------------------------------------- /lib/xlsxtream/row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/row.rb -------------------------------------------------------------------------------- /lib/xlsxtream/shared_string_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/shared_string_table.rb -------------------------------------------------------------------------------- /lib/xlsxtream/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module Xlsxtream 3 | VERSION = '3.2.0' 4 | end 5 | -------------------------------------------------------------------------------- /lib/xlsxtream/workbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/workbook.rb -------------------------------------------------------------------------------- /lib/xlsxtream/worksheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/worksheet.rb -------------------------------------------------------------------------------- /lib/xlsxtream/xml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/xml.rb -------------------------------------------------------------------------------- /lib/xlsxtream/zip_kit_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/lib/xlsxtream/zip_kit_writer.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/xlsxtream/columns_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/columns_test.rb -------------------------------------------------------------------------------- /test/xlsxtream/row_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/row_test.rb -------------------------------------------------------------------------------- /test/xlsxtream/shared_string_table_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/shared_string_table_test.rb -------------------------------------------------------------------------------- /test/xlsxtream/workbook_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/workbook_test.rb -------------------------------------------------------------------------------- /test/xlsxtream/worksheet_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/worksheet_test.rb -------------------------------------------------------------------------------- /test/xlsxtream/xml_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/xml_test.rb -------------------------------------------------------------------------------- /test/xlsxtream/zip_kit_writer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream/zip_kit_writer_test.rb -------------------------------------------------------------------------------- /test/xlsxtream_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/test/xlsxtream_test.rb -------------------------------------------------------------------------------- /xlsxtream.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixbuenemann/xlsxtream/HEAD/xlsxtream.gemspec --------------------------------------------------------------------------------