pullbox 0.1.10 → 0.1.11

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: 3994c7b8b3c96b07b780a6a6abb024f1883b73711d4b0ce61e530c055a4a7b3c
4
+ data.tar.gz: adc3780652febf823d3df7f990b327acd8a94a6174a5a65f82ac34e064d24c80
5
5
  SHA512:
6
- metadata.gz: 5ec811becfaadee439f23804ff230f80280a1f486d43f4a368ad8b19214825f22f00fe10e60e866bb569e86d1e535f77f70bbc6ef58e79354ce8b2c06fd9d76b
7
- data.tar.gz: eca174a172baec3e5603b84db56ac28203b8fad390e9ddcc4dc6c9b1f52ecf1bb1c19e84a84b2c0309bdecad9263cac28cdf1548cc7f30860f55b0f98d067f55
6
+ metadata.gz: 42f064ff9174cd2225137459a6f1c85512d2c5186005c0c02cdb21179509c8513e2bb953238f00374ee9e774668c25e91de206319be70802ed34ce4e5c77f053
7
+ data.tar.gz: fcd1a1da129516d03e45f49b9af99fdf30016c8d49030b2615a3eb66b1dd15970e46c925eef1440646a6983c56586ddf3769b924863d5c29a4586b73a8cc26ac
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pullbox (0.1.9)
4
+ pullbox (0.1.10)
5
5
  nokogiri (~> 1.12)
6
6
  plist (~> 3.6)
7
7
 
@@ -11,6 +11,8 @@ GEM
11
11
  minitest (5.18.0)
12
12
  nokogiri (1.14.2-arm64-darwin)
13
13
  racc (~> 1.4)
14
+ nokogiri (1.14.2-x86_64-linux)
15
+ racc (~> 1.4)
14
16
  plist (3.7.0)
15
17
  racc (1.6.2)
16
18
  rake (13.0.6)
@@ -18,6 +20,7 @@ GEM
18
20
 
19
21
  PLATFORMS
20
22
  arm64-darwin-22
23
+ x86_64-linux
21
24
 
22
25
  DEPENDENCIES
23
26
  minitest (~> 5.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pullbox
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.11"
5
5
  end
data/pullbox.gemspec ADDED
@@ -0,0 +1,41 @@
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
+
38
+ # For more information and examples about making a new gem, check out our
39
+ # guide at: https://bundler.io/guides/creating_gem.html
40
+ spec.metadata["rubygems_mfa_required"] = "true"
41
+ 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.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - PuLLi
@@ -59,6 +59,7 @@ files:
59
59
  - lib/pullbox/devonthink.rb
60
60
  - lib/pullbox/mailmate.rb
61
61
  - lib/pullbox/version.rb
62
+ - pullbox.gemspec
62
63
  - sig/pullbox.rbs
63
64
  homepage: https://github.com/the-pulli/pullbox
64
65
  licenses: