rumble 0.3 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/features/cli.feature +2 -2
- data/lib/rumble.rb +2 -2
- data/lib/rumble/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: 996685adb974a9ba90e1bc9d13add7128960fc9b
|
4
|
+
data.tar.gz: d7131676f786111af9045039b86c7e279222c323
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8774f81469e210f471afe7f3192355210421469105108bb6263b76f23513570cf841117644646aa6873d9b2aeef37820775100c06107c074e8eeef569e34f315
|
7
|
+
data.tar.gz: 72ddb4f0925174a353926354fbc8d742cd78209f666bc3c33e68f0be0aa8ad580fd36f00c2537a3e3c5c31fa2b830da6ae0bfa826728334d075e1f9101c70531
|
data/features/cli.feature
CHANGED
@@ -17,6 +17,6 @@ Feature: Command Line Processing
|
|
17
17
|
How are you?
|
18
18
|
|
19
19
|
"""
|
20
|
-
When I run bin/rumble with "--test yegor256@gmail.com --host test --user test --password test --subject test --letter a.liquid --from me@example.com --dry"
|
21
|
-
Then Stdout contains "Sent
|
20
|
+
When I run bin/rumble with "--test yegor256@gmail.com --host test --user test --password test --subject test --letter a.liquid --from me@example.com --dry --resume test@example.com"
|
21
|
+
Then Stdout contains "Sent 0 email"
|
22
22
|
And Exit code is zero
|
data/lib/rumble.rb
CHANGED
@@ -86,8 +86,8 @@ module Rumble
|
|
86
86
|
text = Redcarpet::Markdown.new(Redcarpet::Render::StripDown)
|
87
87
|
.render(markdown)
|
88
88
|
if ignore
|
89
|
-
if opts[:resume] != email
|
90
|
-
puts "ignored, waiting for #{opts[:resume]}"
|
89
|
+
if @opts[:resume] != email
|
90
|
+
puts "ignored, waiting for #{@opts[:resume]}"
|
91
91
|
next
|
92
92
|
end
|
93
93
|
ignore = false
|
data/lib/rumble/version.rb
CHANGED