
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Excelerate is a gem that adds a modern Ruby API to the classic ParseExcel library. ParseExcel does a wonderful job of pulling the data out of an Excel file, but its usability is lacking. Excelerate is intended to address those woes.
Install via standard gem installation:
gem install excelerate
Add to Gemfile
:
gem 'excelerate'
Open a file via URL:
Excelerate.open 'http://example.com/example.xls'
Open a local file:
Excelerate.open 'example.xls'
Select a worksheet:
workbook = Excelerate.open(file)
first_sheet = workbook.first
second_sheet = workbook[1]
Get column headers:
first_sheet.column_headers
Loop through all cells:
first_sheet.each_cell { |cell| puts cell }
Loop through rows or columns:
first_sheet.rows.each { |row| puts row }
first_sheet.columns.each { |row| puts columns }
Grab an individual row or column:
first_sheet.row(4)
first_sheet.column(4)
attr_reader
for instance variablesJust issue a pull request!
Released under the MIT license:
FAQs
Unknown package
We found that excelerate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.