⚠️ Breaking change
require 'rubyzen' now loads only Rubyzen's core API. It no longer loads the RSpec matchers. You now need to explicitly require the respective adapter of your testing framework:
- RSpec:
require 'rubyzen/rspec' - Minitest:
require 'rubyzen/minitest'
rspec is also no longer a runtime dependency. RSpec users need to manually add gem 'rspec' (or rspec-rails) in their Gemfile, if they don't have it already.
Migrating from 0.1.x
- Simply replace
require 'rubyzen'withrequire 'rubyzen/rspec'.
✨ Highlights
- Minitest support (#32). Write lint rules with Minitest using
assert_zen_empty/assert_zen_true/assert_zen_false. Userequire 'rubyzen/minitest'to access these assertions.
What's Changed
- Update README.md by Stelios Frantzeskakis (@steliosfran) in #27
- Use GitHub Pages for Rubyzen documentation by Stelios Frantzeskakis (@steliosfran) in #28
- Add jobs link to our README.md by Eric Silverberg (@esilverberg) in #30
- Add Minitest support by Stelios Frantzeskakis (@steliosfran) in #32
Full Changelog: 0.1.0...0.2.0