Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 664 Bytes

DEVELOP.md

File metadata and controls

29 lines (22 loc) · 664 Bytes

Run tests

Run CrateDB on port 44200.

docker run --rm -it --publish=44200:4200 crate:5.1.1 \
  -Cdiscovery.type=single-node \
  -Ccluster.routing.allocation.disk.threshold_enabled=false

Install project and invoke test suite.

bundle install
bundle exec rspec

Release Process

Business as usual, but in case you forgot, here it is.

  • update VERSION in lib/activerecord-crate-adapter/version.rb
  • update history.txt to reflect the changes of this release
  • Do the traditional trinity of:
gem update --system
gem build gem build activerecord-crate-adapter.gemspec
gem push activerecord-crate-adapter-<version>.gem