suture 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f6ebe7f915f49384613a6ec4ae23a9e82bc0f29
4
- data.tar.gz: 1479148b3eecb03cc09d09d8d6e0b3b2f6c467c6
3
+ metadata.gz: b85695a4967326f52934d89536d89a749ca42691
4
+ data.tar.gz: 70092c4e19a5478dd662eb8b5705c7293fa53e57
5
5
  SHA512:
6
- metadata.gz: 52215cdc09e9056acc5063264ccf934174e5aa631e6901bd2cadc7f148477395e67afdde033bc72608cd57d962899b97a46627e21a4104478451bfb6edd88a43
7
- data.tar.gz: d1c41b9ca302fb723a52512b585face587571344eb609433264ffc4948367de712f8a13b83a44de9c4a1e8eb9331c3f2c5f0a3b22c3080098c8e33c14c85537c
6
+ metadata.gz: 3d7f7e208612e27abb444e3ae1eaadbf16777907f8055abf3445d76e54d9d888a3cbade775e9a0fb4aae04fefd6ef8e1fb0981f4c485da196e777b6a2860ee33
7
+ data.tar.gz: 37808b036aa84b24c1247a3dba9a7bf6a096498b21aadac5a908c7e369238ece4ed5937f485f0f597cd36a5f833eb36248025ddeb768964e2f827516df9969a1
@@ -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
@@ -35,6 +35,6 @@ task :changelog_commit do
35
35
  system cmd
36
36
  end
37
37
 
38
- task :release => [:changelog, :changelog_commit, :release]
38
+ Rake::Task[:release].enhance([:changelog, :changelog_commit])
39
39
 
40
40
  task :default => :everything
@@ -1,3 +1,3 @@
1
1
  module Suture
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: suture
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Searls