pullbox 0.1.10 → 0.2.0

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: 456138ab8b2e062b29f4237c05b9ec10ea0d00fc27da401dd3709615234d7c4a
4
- data.tar.gz: 5acc4af815c96bc117720517965eaeeadb647292a74db4c88680c9399f4b643f
3
+ metadata.gz: efe523cef1c2e7dffd2baf7e4f373c9e9c0338cb1272826567d06af07854d416
4
+ data.tar.gz: 13546093176e0a147dac857d72cb81cad50bdbaa9bcab2bda8f99989e7b4fefb
5
5
  SHA512:
6
- metadata.gz: 5ec811becfaadee439f23804ff230f80280a1f486d43f4a368ad8b19214825f22f00fe10e60e866bb569e86d1e535f77f70bbc6ef58e79354ce8b2c06fd9d76b
7
- data.tar.gz: eca174a172baec3e5603b84db56ac28203b8fad390e9ddcc4dc6c9b1f52ecf1bb1c19e84a84b2c0309bdecad9263cac28cdf1548cc7f30860f55b0f98d067f55
6
+ metadata.gz: 6fa7e4264fa447932e7bc302e30af0b768d53b62ae9e617d02e544c1e12dba14928e8f9942433e44f6cb08a2624ad6b363a5b9c8cf90aade6da12e969be6e60b
7
+ data.tar.gz: 8634df7ed2508fbd8db1c40fe2366e2e66a0bc85f276e17a4b35917fd1f78d2ee471a3e5a33aacb3a139827affe5b14bcf906e2106b4e4dadfde8461dbd3736b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.10 - 0.1.12] - 2023-09-28
4
+
5
+ - Refactor of `mailmate_beta`, usage is now `mailmate beta`
6
+
3
7
  ## [0.1.9] - 2023-03-19
4
8
 
5
9
  - Add option to start app in `move_app`.
data/Gemfile CHANGED
@@ -8,5 +8,3 @@ gemspec
8
8
  gem "rake", "~> 13.0"
9
9
 
10
10
  gem "minitest", "~> 5.0"
11
-
12
- gem "thor", "~> 1.2"
data/Gemfile.lock CHANGED
@@ -1,9 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pullbox (0.1.9)
4
+ pullbox (0.1.11)
5
5
  nokogiri (~> 1.12)
6
6
  plist (~> 3.6)
7
+ thor (~> 1.2)
7
8
 
8
9
  GEM
9
10
  remote: https://rubygems.org/
@@ -11,19 +12,21 @@ GEM
11
12
  minitest (5.18.0)
12
13
  nokogiri (1.14.2-arm64-darwin)
13
14
  racc (~> 1.4)
15
+ nokogiri (1.14.2-x86_64-linux)
16
+ racc (~> 1.4)
14
17
  plist (3.7.0)
15
18
  racc (1.6.2)
16
19
  rake (13.0.6)
17
- thor (1.2.2)
20
+ thor (1.2.1)
18
21
 
19
22
  PLATFORMS
20
23
  arm64-darwin-22
24
+ x86_64-linux
21
25
 
22
26
  DEPENDENCIES
23
27
  minitest (~> 5.0)
24
28
  pullbox!
25
29
  rake (~> 13.0)
26
- thor (~> 1.2)
27
30
 
28
31
  BUNDLED WITH
29
32
  2.4.10
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pullbox
4
- VERSION = "0.1.10"
4
+ VERSION = "0.2.0"
5
5
  end
data/pullbox.gemspec ADDED
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/pullbox/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "pullbox"
7
+ spec.version = Pullbox::VERSION
8
+ spec.authors = ["PuLLi"]
9
+ spec.email = ["the@pulli.dev"]
10
+
11
+ spec.summary = "Just a small toolbox for AppleScript, DEVONthink and MailMate"
12
+ spec.description = "Enables you to write ruby code for AppleScript, DEVONthink and MailMate features."
13
+ spec.homepage = "https://github.com/the-pulli/pullbox"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
17
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/the-pulli/pullbox"
21
+ spec.metadata["changelog_uri"] = "https://github.com/the-pulli/pullbox/blob/main/CHANGELOG.md"
22
+
23
+ # Specify which files should be added to the gem when it is released.
24
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25
+ spec.files = Dir.chdir(__dir__) do
26
+ `git ls-files -z`.split("\x0").reject do |f|
27
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
28
+ end
29
+ end
30
+ spec.bindir = "exe"
31
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ["lib"]
33
+
34
+ # Uncomment to register a new dependency of your gem
35
+ spec.add_dependency "nokogiri", "~> 1.12"
36
+ spec.add_dependency "plist", "~> 3.6"
37
+ spec.add_dependency "thor", "~> 1.2"
38
+
39
+ # For more information and examples about making a new gem, check out our
40
+ # guide at: https://bundler.io/guides/creating_gem.html
41
+ spec.metadata["rubygems_mfa_required"] = "true"
42
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pullbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PuLLi
@@ -38,6 +38,20 @@ dependencies:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '3.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: thor
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.2'
41
55
  description: Enables you to write ruby code for AppleScript, DEVONthink and MailMate
42
56
  features.
43
57
  email:
@@ -59,6 +73,7 @@ files:
59
73
  - lib/pullbox/devonthink.rb
60
74
  - lib/pullbox/mailmate.rb
61
75
  - lib/pullbox/version.rb
76
+ - pullbox.gemspec
62
77
  - sig/pullbox.rbs
63
78
  homepage: https://github.com/the-pulli/pullbox
64
79
  licenses: