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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1314729bc6ffc052a1c3ee29cf3b4b36ce076ecfdf36198433388393f37b2dcd
4
- data.tar.gz: 412607bdc3f5710b5f45d18945021010f78f0573c4ed82fc751aa3fa31ec39d7
3
+ metadata.gz: 6848b536ec0675ce2919095c572d47f9363c5b7c331bf2a7b189088bb8208fd2
4
+ data.tar.gz: ce6c4341b3dc860d0ace5b7e4808fb4c4aea8c3ba2ba31b9325fe2e47d491252
5
5
  SHA512:
6
- metadata.gz: df451253342918a0d18ed260c6823f1b062b31f24624d78277c74beecc84662d8570e923288b5bf00718a444f4cda7add067913aff9cbc3077d353986deeb6f8
7
- data.tar.gz: e18f900dddd1e2df784485242b1be63670c18e50513eb724c54c870ec67410b29858a88cf02a6b388c31129b7c7b99dd7c38594495e689196072e14c085ac0de
6
+ metadata.gz: 6f1d2ca9b219df729fb9be7e03b5ec7c1ac8357d1529e4f2f2f5081888a99ad2dadea730905ab85941f296a4bbeb4754ccabb0d8ac359a4ed6b20272c7917f35
7
+ data.tar.gz: 20cdedd0c0a10e1563808d5944613580b75530077280c86d075d66d7ecfd7bf49fb53018279b7c993786def1132862cdffb1c93e36dfbfb56f491c8e6fa80007
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # manymessage changelog
2
2
 
3
- ## [0.0.1] - 2022-10-08
3
+ ## [0.1.0] - 2022-10-08
4
4
 
5
5
  - Initial release!
6
+
7
+ ## [0.1.1] - 2022-10-09
8
+
9
+ - Changed to using `contacts-cli` as binary name instead of `contacts_cli`
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- manymessage (0.1.0)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Manymessage
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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/contacts_cli"
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]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manymessage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - jltml