mailchain_connector_imap 0.1.4 → 0.1.5

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.
@@ -1,5 +1,5 @@
1
- # frozen_string_literal: true
2
-
3
- module MailchainConnectorImap
4
- VERSION = '0.1.4'
5
- end
1
+ # frozen_string_literal: true
2
+
3
+ module MailchainConnectorImap
4
+ VERSION = '0.1.5'
5
+ end
@@ -1,38 +1,38 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/mailchain_connector_imap/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'mailchain_connector_imap'
7
- spec.version = MailchainConnectorImap::VERSION
8
- spec.authors = ['Tim B']
9
- spec.email = ['team@mailchain.xyz']
10
-
11
- spec.summary = 'An IMAP connector for the Mailchain API'
12
- spec.description = 'Send your Mailchain messages to your email inbox with the IMAP connector for the Mailchain API'
13
- spec.homepage = 'https://mailchain.xyz/mailchain-connectors/imap'
14
- spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
15
- spec.license = 'Apache2.0'
16
-
17
- spec.metadata['homepage_uri'] = spec.homepage
18
- spec.metadata['source_code_uri'] = 'https://github.com/mailchain/mailchain-connector-imap'
19
- spec.metadata['changelog_uri'] = 'https://github.com/mailchain/mailchain-connector-imap/releases'
20
-
21
- # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
- end
26
- spec.bindir = 'exe'
27
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
- spec.require_paths = ['lib']
29
-
30
- spec.add_development_dependency 'bundle', '~> 2.0'
31
- spec.add_development_dependency 'pry', '~> 0.13'
32
- spec.add_development_dependency 'rake', '~> 12.0'
33
- spec.add_development_dependency 'rspec', '~> 3.0'
34
-
35
- spec.add_runtime_dependency 'httparty', '~> 0.18', '>= 0.18.0'
36
- spec.add_runtime_dependency 'mail', '~> 2.7', '>= 2.7.1'
37
- spec.add_runtime_dependency 'tty-prompt', '~> 0.21', '>= 0.21.0'
38
- end
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/mailchain_connector_imap/version'
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'mailchain_connector_imap'
7
+ spec.version = MailchainConnectorImap::VERSION
8
+ spec.authors = ['Tim B']
9
+ spec.email = ['team@mailchain.xyz']
10
+
11
+ spec.summary = 'An IMAP connector for the Mailchain API'
12
+ spec.description = 'Send your Mailchain messages to your email inbox with the IMAP connector for the Mailchain API'
13
+ spec.homepage = 'https://mailchain.xyz/mailchain-connectors/imap'
14
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
15
+ spec.license = 'Apache2.0'
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = 'https://github.com/mailchain/mailchain-connector-imap'
19
+ spec.metadata['changelog_uri'] = 'https://github.com/mailchain/mailchain-connector-imap/releases'
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = 'exe'
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ['lib']
29
+
30
+ spec.add_development_dependency 'bundler', '~> 2.0'
31
+ spec.add_development_dependency 'pry', '~> 0.13'
32
+ spec.add_development_dependency 'rake', '~> 12.0'
33
+ spec.add_development_dependency 'rspec', '~> 3.0'
34
+
35
+ spec.add_runtime_dependency 'httparty', '~> 0.18', '>= 0.18.0'
36
+ spec.add_runtime_dependency 'mail', '~> 2.7', '>= 2.7.1'
37
+ spec.add_runtime_dependency 'tty-prompt', '~> 0.21', '>= 0.21.0'
38
+ end
metadata CHANGED
@@ -1,17 +1,17 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailchain_connector_imap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim B
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-14 00:00:00.000000000 Z
11
+ date: 2020-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundle
14
+ name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
@@ -144,6 +144,7 @@ files:
144
144
  - LICENSE
145
145
  - README.md
146
146
  - Rakefile
147
+ - SPECIFICATION.md
147
148
  - bin/console
148
149
  - bin/setup
149
150
  - exe/mailchain_connector_imap
@@ -162,7 +163,7 @@ metadata:
162
163
  homepage_uri: https://mailchain.xyz/mailchain-connectors/imap
163
164
  source_code_uri: https://github.com/mailchain/mailchain-connector-imap
164
165
  changelog_uri: https://github.com/mailchain/mailchain-connector-imap/releases
165
- post_install_message:
166
+ post_install_message:
166
167
  rdoc_options: []
167
168
  require_paths:
168
169
  - lib
@@ -178,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
179
  version: '0'
179
180
  requirements: []
180
181
  rubygems_version: 3.1.2
181
- signing_key:
182
+ signing_key:
182
183
  specification_version: 4
183
184
  summary: An IMAP connector for the Mailchain API
184
185
  test_files: []