Sha256: dba668ee771a9a44f2966794eec11d5c59f8e48fac53d1f81e01abaf9856ccc9

Contents?: true

Size: 1.2 KB

Versions: 54

Compression:

Stored size: 1.2 KB

Contents

# Contributing to sqlite3-ruby

**This document is a work-in-progress.**

This doc is a short introduction on how to modify and maintain the sqlite3-ruby gem.


## Building gems

As a prerequisite please make sure you have `docker` correctly installed, so that you're able to cross-compile the native gems.

Run `bin/build-gems` which will package gems for all supported platforms, and run some basic sanity tests on those packages using `bin/test-gem-set` and `bin/test-gem-file-contents`.


## Updating the version of libsqlite3

Update `/dependencies.yml` to reflect:

- the version of libsqlite3
- the URL from which to download
- the checksum of the file, which will need to be verified manually (see comments in that file)


## Making a release

A quick checklist:

- [ ] make sure CI is green!
- [ ] update `CHANGELOG.md` and `lib/sqlite3/version.rb` including `VersionProxy::{MINOR,TINY}`
- [ ] create a git tag using a format that matches the pattern `v\d+\.\d+\.\d+`, e.g. `v1.3.13`
- [ ] run `bin/build-gems` and make sure it completes and all the tests pass
- [ ] `for g in gems/*.gem ; do gem push $g ; done`
- [ ] create a release at https://github.com/sparklemotion/sqlite3-ruby/releases and include sha2 checksums

Version data entries

54 entries across 54 versions & 1 rubygems

Version Path
sqlite3-1.6.5 CONTRIBUTING.md
sqlite3-1.6.5-x86_64-linux CONTRIBUTING.md
sqlite3-1.6.5-x86_64-darwin CONTRIBUTING.md
sqlite3-1.6.5-x86-linux CONTRIBUTING.md
sqlite3-1.6.5-x64-mingw32 CONTRIBUTING.md
sqlite3-1.6.5-x64-mingw-ucrt CONTRIBUTING.md
sqlite3-1.6.5-arm64-darwin CONTRIBUTING.md
sqlite3-1.6.5-arm-linux CONTRIBUTING.md
sqlite3-1.6.5-aarch64-linux CONTRIBUTING.md
sqlite3-1.6.5.rc1 CONTRIBUTING.md
sqlite3-1.6.5.rc1-x86_64-linux CONTRIBUTING.md
sqlite3-1.6.5.rc1-x86_64-darwin CONTRIBUTING.md
sqlite3-1.6.5.rc1-x86-linux CONTRIBUTING.md
sqlite3-1.6.5.rc1-x64-mingw32 CONTRIBUTING.md
sqlite3-1.6.5.rc1-x64-mingw-ucrt CONTRIBUTING.md
sqlite3-1.6.5.rc1-arm64-darwin CONTRIBUTING.md
sqlite3-1.6.5.rc1-arm-linux CONTRIBUTING.md
sqlite3-1.6.5.rc1-aarch64-linux CONTRIBUTING.md
sqlite3-1.6.4 CONTRIBUTING.md
sqlite3-1.6.4-x86_64-linux CONTRIBUTING.md