mailerlite 1.10.0 → 1.11.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 +4 -4
- data/README.md +1 -0
- data/lib/mailerlite/client.rb +3 -0
- data/lib/mailerlite/configuration.rb +1 -1
- data/lib/mailerlite/connection.rb +2 -0
- data/lib/mailerlite/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2566cc48dc509e5ae5b9984347813da13573ab846edb846e498d54188fb92b3e
|
4
|
+
data.tar.gz: 7a7006913f5787884709151a9f32fcd9b9ffc5463951e132a8aa074e6d32da40
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32ed1cef86c7256be4d286199ef4e0bd76e48664866189bdab9e08338ebf86bc4fc0726453b866ae913719072560582d1993f27699f2920ef30adc37acc1a229
|
7
|
+
data.tar.gz: aad3f7cd3244010bd9bd2826e7ff8743fee62d97252572b605ccc9e58384f43f994317a7c68f013c03c5ccd96727ce04d4cbc9b34794790139736ccde057dbfa
|
data/README.md
CHANGED
data/lib/mailerlite/client.rb
CHANGED
@@ -26,8 +26,11 @@ module MailerLite
|
|
26
26
|
#
|
27
27
|
# @param options [Hash] A customizable set of options.
|
28
28
|
# @option options [String] :api_key API Key provider from MailerLite.
|
29
|
+
# @option options [String] :timeout optional open/read timeout Integer in
|
30
|
+
# seconds
|
29
31
|
def initialize(options = {})
|
30
32
|
config.api_key = options[:api_key] if options[:api_key]
|
33
|
+
config.timeout = options[:timeout] if options[:timeout]
|
31
34
|
end
|
32
35
|
|
33
36
|
# @return [Configuration]
|
@@ -9,7 +9,7 @@ module MailerLite
|
|
9
9
|
# Default User Agent header string.
|
10
10
|
USER_AGENT = "MailerLite Ruby v#{MailerLite::VERSION}"
|
11
11
|
|
12
|
-
attr_accessor :api_key
|
12
|
+
attr_accessor :api_key, :timeout
|
13
13
|
attr_writer :url, :user_agent
|
14
14
|
|
15
15
|
# Takes url provided from configuration or uses default one.
|
data/lib/mailerlite/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mailerlite
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justas Palumickas
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|