suture 0.3.1 → 0.3.2
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 +44 -0
- data/Rakefile +1 -1
- data/lib/suture/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b85695a4967326f52934d89536d89a749ca42691
|
|
4
|
+
data.tar.gz: 70092c4e19a5478dd662eb8b5705c7293fa53e57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d7f7e208612e27abb444e3ae1eaadbf16777907f8055abf3445d76e54d9d888a3cbade775e9a0fb4aae04fefd6ef8e1fb0981f4c485da196e777b6a2860ee33
|
|
7
|
+
data.tar.gz: 37808b036aa84b24c1247a3dba9a7bf6a096498b21aadac5a908c7e369238ece4ed5937f485f0f597cd36a5f833eb36248025ddeb768964e2f827516df9969a1
|
data/CHANGELOG.md
CHANGED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## [v0.3.1](https://github.com/testdouble/suture/tree/v0.3.1) (2016-08-23)
|
|
4
|
+
[Full Changelog](https://github.com/testdouble/suture/compare/v0.3.0...v0.3.1)
|
|
5
|
+
|
|
6
|
+
## [v0.3.0](https://github.com/testdouble/suture/tree/v0.3.0) (2016-08-23)
|
|
7
|
+
[Full Changelog](https://github.com/testdouble/suture/compare/v0.2.0...v0.3.0)
|
|
8
|
+
|
|
9
|
+
**Closed issues:**
|
|
10
|
+
|
|
11
|
+
- Reset logging config when resetting suture [\#27](https://github.com/testdouble/suture/issues/27)
|
|
12
|
+
- Add global Suture.config method \(and Suture.reset!\) [\#25](https://github.com/testdouble/suture/issues/25)
|
|
13
|
+
- Limit error messages printed by VerificationFailed [\#22](https://github.com/testdouble/suture/issues/22)
|
|
14
|
+
- Logging configuration [\#21](https://github.com/testdouble/suture/issues/21)
|
|
15
|
+
- Log out activities [\#20](https://github.com/testdouble/suture/issues/20)
|
|
16
|
+
- Add comparator API [\#14](https://github.com/testdouble/suture/issues/14)
|
|
17
|
+
- Set SUTURE\_ENV & raise/warn [\#12](https://github.com/testdouble/suture/issues/12)
|
|
18
|
+
- Verify: API to delete a row from calls [\#10](https://github.com/testdouble/suture/issues/10)
|
|
19
|
+
- Verify: Implement random order [\#9](https://github.com/testdouble/suture/issues/9)
|
|
20
|
+
- Verify: implement time\_limit [\#8](https://github.com/testdouble/suture/issues/8)
|
|
21
|
+
- Verify: Implement call\_limit [\#7](https://github.com/testdouble/suture/issues/7)
|
|
22
|
+
- fail\_fast configuration [\#6](https://github.com/testdouble/suture/issues/6)
|
|
23
|
+
- Verify a single call [\#5](https://github.com/testdouble/suture/issues/5)
|
|
24
|
+
|
|
25
|
+
## [v0.2.0](https://github.com/testdouble/suture/tree/v0.2.0) (2016-08-21)
|
|
26
|
+
[Full Changelog](https://github.com/testdouble/suture/compare/v0.1.0...v0.2.0)
|
|
27
|
+
|
|
28
|
+
**Closed issues:**
|
|
29
|
+
|
|
30
|
+
- store schema table with major version [\#16](https://github.com/testdouble/suture/issues/16)
|
|
31
|
+
- Add uniq index on name+args [\#13](https://github.com/testdouble/suture/issues/13)
|
|
32
|
+
- Allow configuration of different sqlite location [\#11](https://github.com/testdouble/suture/issues/11)
|
|
33
|
+
- Suture.verify method [\#4](https://github.com/testdouble/suture/issues/4)
|
|
34
|
+
|
|
35
|
+
## [v0.1.0](https://github.com/testdouble/suture/tree/v0.1.0) (2016-08-19)
|
|
36
|
+
**Closed issues:**
|
|
37
|
+
|
|
38
|
+
- Record a call [\#3](https://github.com/testdouble/suture/issues/3)
|
|
39
|
+
- Create/Initialize a sqlite database [\#2](https://github.com/testdouble/suture/issues/2)
|
|
40
|
+
- Create a new Suture [\#1](https://github.com/testdouble/suture/issues/1)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
data/Rakefile
CHANGED
data/lib/suture/version.rb
CHANGED