producer-core 0.5.2 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ce3292de80f4a5ad11ba230b7d608ba0c6f93a0a
4
- data.tar.gz: a99e00821bbd050d312f0c2fc55296b5ebe7bdb0
3
+ metadata.gz: fe0e6e00501be89b11538f89e014ea2d7be16d29
4
+ data.tar.gz: 5b98d55955060e08436d27d59711da43fe4cb567
5
5
  SHA512:
6
- metadata.gz: e4a4bbc92388b63b098211fb5e317fdb54288137f519842c106c7a76a6a16323d1509c28450a065f84822145f2308c3877139b80baf5e82e3d30841d668644de
7
- data.tar.gz: 406357ca9a0cd97e3b1367c2ce059046811903127d62cccfd223edba2f6719b60d0a1d8e9272927a5718d2bca11b5c582cd2c9d095a163bbb9b0698e7831102c
6
+ metadata.gz: 354712e35137ad8c7aa6e8eebc449de20fe2cd55dc91411dd1c8589c7ae028a082b0035ad8313d2b48ef25513f9f33973939bd1413487351812d33a325b171d4
7
+ data.tar.gz: 0c806c38132ad2223a2e6bd21d5be4b60391e2e037c531883727bab6eec1431ae769c3f90341b4893da687c5c0d42646e9429ab757bd8e91d0d4772b1b97894c
@@ -20,6 +20,10 @@ Then /^the remote directory "([^"]+)" must exist$/ do |path|
20
20
  check_directory_presence [path], true
21
21
  end
22
22
 
23
+ Then /^the remote file "([^"]+)" must exist$/ do |path|
24
+ check_file_presence [path], true
25
+ end
26
+
23
27
  Then /^the remote file "([^"]+)" must contain "([^"]+)"$/ do |path, content|
24
28
  check_file_content path, content, true
25
29
  end
@@ -28,6 +32,10 @@ Then /^the remote file "([^"]+)" must contain exactly "([^"]+)"$/ do |path, cont
28
32
  check_file_content path, content
29
33
  end
30
34
 
35
+ Then /^the remote file "([^"]+)" must contain exactly:$/ do |path, content|
36
+ check_file_content path, content
37
+ end
38
+
31
39
  Then /^the remote file "([^"]+)" must match \/([^\/]+)\/$/ do |path, pattern|
32
40
  check_file_content path, /#{pattern}/, true
33
41
  end
@@ -1,5 +1,5 @@
1
1
  module Producer
2
2
  module Core
3
- VERSION = '0.5.2'.freeze
3
+ VERSION = '0.5.3'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: producer-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibault Jouan