README.md in m-1.4.2 vs README.md in m-1.5.0
- old
+ new
@@ -34,21 +34,21 @@
If you’re using Bundler, you’ll need to include it in your Gemfile. Toss it into the test group:
``` ruby
group :test do
- gem 'm', '~> 1.3.1'
+ gem 'm', '~> 1.5.0'
end
```
Developing a RubyGem? Add m as a development dependency.
``` ruby
Gem::Specification.new do |gem|
# ...
- gem.add_development_dependency "m", "~> 1.3.1"
+ gem.add_development_dependency "m", "~> 1.5.0"
end
```
m works on Ruby 2.0+ only.
@@ -111,9 +111,21 @@
..
Finished tests in 0.001293s, 1546.7904 tests/s, 3093.5808 assertions/s.
1 tests, 2 assertions, 0 failures, 0 errors, 0 skips
+
+If you want to run all the tests in a directory as well as its subdirectories, use the `-r` flag:
+
+ $ m -r test/models
+ "Searching provided directory for tests recursively"
+ Run options:
+
+ ..
+
+ Finished in 3.459902s, 45.0880 runs/s, 87.5747 assertions/s.
+
+ 156 tests, 303 assertions, 0 failures, 0 errors, 13 skips
SUPPORT
=======