everylog_ruby_client 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0091fc177ec856590641ae34febf5b74e34e8bb845a8247ba4c8e1e57990073b'
4
- data.tar.gz: 34d4f1f516b3e7c873ad7c421e95d0d23ea29a324a3210be3a942942d2f790cd
3
+ metadata.gz: d39da808eb820cc4ee1b6050bb39181825b34e853dfe17f4169019f62e4b4837
4
+ data.tar.gz: 2fbc6ea5bcca09b405cf0057da2b7d45360ceb5f876e95226a98cb012ad17432
5
5
  SHA512:
6
- metadata.gz: 3ee894514fe05cd94539be8a1dfa41f10231fbd555f7bb487acf91d699c6b06bab1e458a74c432b1ebf53e519e4ad5c6ecc6b5d760a95168713b01231bd0a633
7
- data.tar.gz: 8e90731907fa8ce90ee0e4d4ea3f3432e2783f43fe223dfeb24b5c02b5c1c12231b45f3f5088924eee1c45b9e0a5d5447679cbf47ee78b64ea3e5b9017aa8413
6
+ metadata.gz: 7252c4298498c8b6304bd975e4192a8068cde49b1ae8299cd1bf1bd6bb366fb9592d64e15303c93b33c7708787f67db0e7a8e4892200e8b6eb8502f175148646
7
+ data.tar.gz: 4899921c1743e8b35f1471ef2f513723e87a8602bf149669327765e91592bda7f961629abdf17db11e5a8ac61d0cbf7f141c82e36c33e346838dfb3e7ba37dae
data/README.md CHANGED
@@ -24,11 +24,12 @@ require 'everylog_ruby_client'
24
24
 
25
25
  # @param [Hash] options
26
26
  # @option options [String] :api_key for authenticate against EveryLog server
27
+ # @option options [String] :projectId name of the project
27
28
  # @option options [String] :everylog_url (https://api.everylog.io/api/v1/log-entries) to reach Everlog server
28
- $EveryLogClient = EveryLog::Client.instance.setup(api_key: <YOUR_API_KEY>)
29
+ $EveryLogClient = EveryLog::Client.instance.setup(api_key: <YOUR_API_KEY>, projectId: <YOUR_PROJECT_NAME>)
29
30
 
30
31
  # @param [Hash] options
31
- # @option options [String] :projectId name of the project
32
+ # @option notify_options [String, options[:projectId]] :projectId name of the project
32
33
  # @option options [String] :title to display in the application and if enabled in the notification
33
34
  # @option options [String] :summary is a not so long text to display on the application and if enabled in the notification
34
35
  # @option options [String] :body it can contain a long text simple formatted, no html to display in the application
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EveryLogRubyClient
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
  end
@@ -10,14 +10,14 @@ module EveryLog
10
10
 
11
11
  SETUP_DEFAULTS = {
12
12
  api_key: nil,
13
+ projectId: nil,
13
14
  everylog_url: "https://api.everylog.io/api/v1/log-entries"
14
15
  }.freeze
15
16
 
16
17
  NOTIFY_DEFAULTS = {
17
- projectId: nil,
18
- title: nil,
19
- summary: nil,
20
- body: nil,
18
+ title: "Empty notification",
19
+ summary: "Empty summary",
20
+ body: "Empty body",
21
21
  tags: [],
22
22
  link: "",
23
23
  push: false
@@ -27,20 +27,22 @@ module EveryLog
27
27
 
28
28
  # @param [Hash] options
29
29
  # @option options [String] :api_key for authenticate against Everylog server
30
+ # @option options [String] :projectId name of the project
30
31
  # @option options [String] :everylog_url (https://api.everylog.io/api/v1/log-entries) to reach Everlog server
31
32
  def setup(options = {})
32
33
  @options = _parse_options(options, SETUP_DEFAULTS)
33
34
  self
34
35
  end
35
36
 
36
- # @param [Hash] options
37
- # @option options [String] :projectId name of the project
38
- # @option options [String] :title to display in the application and if enabled in the notification
39
- # @option options [String] :summary is a not so long text to display on the application and if enabled in the notification
40
- # @option options [String] :body it can contain a long text simple formatted, no html to display in the application
41
- # @option options [Array] :tags it can be used to categorize the notification, must be strings
42
- # @option options [String] :link it can be used to display on the application and if enabled in the notification
43
- # @option options [Boolean] :push if True, a push notification is sent to application
37
+ # @param [Hash] notify_options
38
+ # @option notify_options [String, options[:projectId]] :projectId name of the project
39
+ # @option notify_options [String] :title to display in the application and if enabled in the notification
40
+ # @option notify_options [String] :summary is a not so long text to display on the application and if enabled in the notification
41
+ # @option notify_options [String] :body it can contain a long text simple formatted, no html to display in the application
42
+ # @option notify_options [Array] :tags it can be used to categorize the notification, must be strings
43
+ # @option notify_options [String] :link it can be used to display on the application and if enabled in the notification
44
+ # @option notify_options [Boolean] :push if True, a push notification is sent to application
45
+
44
46
  def notify(notify_options = {})
45
47
  @notify_options = _parse_options(notify_options, NOTIFY_DEFAULTS)
46
48
  uri = URI(options[:everylog_url])
@@ -48,7 +50,8 @@ module EveryLog
48
50
  "Content-Type": "application/json",
49
51
  "Authorization": "Bearer #{options[:api_key]}"
50
52
  })
51
- req.body = @notify_options.to_json
53
+ merged_options = { projectId: options[:projectId] }.merge(@notify_options)
54
+ req.body = merged_options.to_json
52
55
  res = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
53
56
  http.request(req)
54
57
  end
@@ -72,5 +75,5 @@ module EveryLog
72
75
 
73
76
  result_parsed_options
74
77
  end
75
- end
76
- end
78
+ end
79
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: everylog_ruby_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gilberto Maccacaro
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-22 00:00:00.000000000 Z
11
+ date: 2022-04-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: " A simple Ruby with no external dependencies, to easily integrate
14
14
  with Everylog API\n"
@@ -28,9 +28,9 @@ licenses:
28
28
  metadata:
29
29
  bug_tracker_uri: https://github.com/everylogsaas/everylog_ruby_client/issues
30
30
  changelog_uri: https://github.com/everylogsaas/everylog_ruby_client/blob/master/CHANGELOG.md
31
- documentation_uri: https://www.rubydoc.info/gems/everylog_ruby_client/1.0.2
31
+ documentation_uri: https://www.rubydoc.info/gems/everylog_ruby_client/1.0.3
32
32
  homepage_uri: https://github.com/everylogsaas/everylog_ruby_client
33
- source_code_uri: https://github.com/everylogsaas/everylog_ruby_client/tree/v1.0.2
33
+ source_code_uri: https://github.com/everylogsaas/everylog_ruby_client/tree/v1.0.3
34
34
  post_install_message:
35
35
  rdoc_options: []
36
36
  require_paths: