manymessage 0.1.0 → 0.1.1
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 +5 -1
- data/Gemfile.lock +3 -1
- data/lib/manymessage/version.rb +1 -1
- data/lib/manymessage.rb +1 -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: 6848b536ec0675ce2919095c572d47f9363c5b7c331bf2a7b189088bb8208fd2
|
|
4
|
+
data.tar.gz: ce6c4341b3dc860d0ace5b7e4808fb4c4aea8c3ba2ba31b9325fe2e47d491252
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f1d2ca9b219df729fb9be7e03b5ec7c1ac8357d1529e4f2f2f5081888a99ad2dadea730905ab85941f296a4bbeb4754ccabb0d8ac359a4ed6b20272c7917f35
|
|
7
|
+
data.tar.gz: 20cdedd0c0a10e1563808d5944613580b75530077280c86d075d66d7ecfd7bf49fb53018279b7c993786def1132862cdffb1c93e36dfbfb56f491c8e6fa80007
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
manymessage (0.1.
|
|
4
|
+
manymessage (0.1.1)
|
|
5
5
|
imessage (~> 0.4.0)
|
|
6
6
|
json (~> 2.6)
|
|
7
7
|
os (~> 1.1)
|
|
@@ -85,6 +85,8 @@ GEM
|
|
|
85
85
|
wisper (2.0.1)
|
|
86
86
|
|
|
87
87
|
PLATFORMS
|
|
88
|
+
x86_64-darwin-19
|
|
89
|
+
x86_64-darwin-20
|
|
88
90
|
x86_64-darwin-21
|
|
89
91
|
|
|
90
92
|
DEPENDENCIES
|
data/lib/manymessage/version.rb
CHANGED
data/lib/manymessage.rb
CHANGED
|
@@ -28,7 +28,7 @@ module Manymessage
|
|
|
28
28
|
abort Paint["No input file specified with list of contacts", :red, :bold] unless options[:input_path]
|
|
29
29
|
abort Paint["No message file specified", :red, :bold] unless options[:input_path]
|
|
30
30
|
input_path = options[:input_path]
|
|
31
|
-
contacts_cli_path = options[:contacts_cli_path] || Pathname.new(__dir__).parent.to_s + "/exe/
|
|
31
|
+
contacts_cli_path = options[:contacts_cli_path] || Pathname.new(__dir__).parent.to_s + "/exe/contacts-cli"
|
|
32
32
|
|
|
33
33
|
if File.exist?(contacts_cli_path) || File.which("contacts-cli")
|
|
34
34
|
puts Paint["→ contacts-cli already found; skipping download and chmod", :faint]
|