mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
ceb05f746b
* Drop support for Mongo Mapper. * Refactor Appraisal
25 lines
555 B
Markdown
25 lines
555 B
Markdown
## Install dependency matrix
|
|
|
|
appraisal install
|
|
|
|
This will re-generate Gemfiles in `gemfile` folder
|
|
|
|
Use rvm gemsets or similar to avoid global gem pollution
|
|
|
|
## Run specs
|
|
|
|
For all supported Rails/ORM combinations:
|
|
|
|
appraisal rspec
|
|
|
|
Or for specific one:
|
|
|
|
appraisal rails_4.2 rspec
|
|
|
|
Or for one particular test file
|
|
|
|
appraisal rails_4.2_mongoid_5 rspec spec/unit/persistence/mongoid_persistence_multiple_spec.rb
|
|
|
|
Or down to one test case
|
|
|
|
appraisal rails_4.2_mongoid_5 rspec spec/unit/persistence/mongoid_persistence_multiple_spec.rb:92
|