flutter 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/lib/flutter/minitest.rb +2 -0
- data/lib/flutter/rspec.rb +2 -0
- data/lib/flutter/version.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0daff4637dd21ecf8d1b03a3a63462f8a4d2cdabd36323348093e4d94dbba057
|
4
|
+
data.tar.gz: 6245d89c2e32a14c419dd888822766c2e99e9423d38d57280c6586a357649023
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc30fd26343a5668793299c43a7361edb635f45f62693a8cbb9383d2eb910dd021cb738746cca92cd56b24a6fecbabb002e4d0e4f2476624aa8d5965ab9271b8
|
7
|
+
data.tar.gz: 572a637813788adb8ef674b97381976e3b4e56adc75ba70aa903e20f38bd564b956f092b8e8a1388844f139bf96cea868d18c188d5eb5333dd0f7e4bdeb3c2e1
|
data/CHANGELOG.md
CHANGED
@@ -5,13 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
7
|
## Unreleased
|
8
|
+
## 0.2.3 - 2022-10-04
|
9
|
+
### Fixed
|
10
|
+
- Disable filtering when Flutter.enabled=false
|
11
|
+
|
8
12
|
## 0.2.2 - 2022-10-03
|
9
13
|
### Added
|
10
14
|
- Document configuration options in README
|
11
15
|
|
12
16
|
### Changed
|
13
|
-
- Delay requiring source files explicitely and only in the case where
|
14
|
-
- Ensure the previous test->coverage mapping is merged with current
|
17
|
+
- Delay requiring source files explicitely and only in the case where the constant cannot be found
|
18
|
+
- Ensure the previous test->coverage mapping is merged with current one when the test fails.
|
15
19
|
|
16
20
|
## 0.2.1
|
17
21
|
### Fixed
|
data/lib/flutter/minitest.rb
CHANGED
data/lib/flutter/rspec.rb
CHANGED
@@ -17,6 +17,8 @@ module Flutter
|
|
17
17
|
|
18
18
|
module ClassMethods
|
19
19
|
def filtered_examples
|
20
|
+
return super unless Flutter.enabled
|
21
|
+
|
20
22
|
Flutter::RSpec.filtered ||= Set.new
|
21
23
|
Flutter::RSpec.total ||= Set.new
|
22
24
|
Flutter::RSpec.tracker.reset! if Flutter.enabled && Flutter.config.reset_storage
|
data/lib/flutter/version.rb
CHANGED