coeus_analytics 0.1.1

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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/coeus.rb +24 -0
  3. metadata +43 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f88bcaa7bdb816e0085b467fa74c113a8583cbee489a38e49a591f0d9c90bb45
4
+ data.tar.gz: f80f94562ab3bec0cd86917b380b68b9524666081952944113b3b751aaf40507
5
+ SHA512:
6
+ metadata.gz: d8729a06e91e54770bf6207a92d9812ea9472b63590d57eab26c9b72d3819c3bba10b5097b74b38e75ed938e5be2aa367b0a4166b2e71c71101a55b11cb1da0e
7
+ data.tar.gz: d8f3e84698d11450c4f020dd416f1ac31ba8f98c66a039203c169d60a1b224e007dce8c6b6131a150d7e91d08e19a22659adbc8968a1ef57eb0ca208e0c53922
data/lib/coeus.rb ADDED
@@ -0,0 +1,24 @@
1
+ require 'net/https'
2
+ require 'httparty'
3
+
4
+ class Coeus
5
+ def self.send_event(integration_id, event_type, payload)
6
+
7
+ data = {
8
+ integration_id: integration_id,
9
+ event: event_type,
10
+ payload: payload
11
+ }
12
+
13
+ result = HTTParty.post(
14
+ "https://getcoeus.com/api/v1/events",
15
+ body: data.to_json,
16
+ headers: {
17
+ "Content-Type": "application/json"
18
+ },
19
+ verify: false
20
+ )
21
+
22
+ puts result.code
23
+ end
24
+ end
metadata ADDED
@@ -0,0 +1,43 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: coeus_analytics
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Brian Kenny
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-07-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Track the metrics that matter
14
+ email: brian@minicorphq.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/coeus.rb
20
+ homepage: https://rubygems.org/gems/coeus_analytics
21
+ licenses:
22
+ - MIT
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubygems_version: 3.1.4
40
+ signing_key:
41
+ specification_version: 4
42
+ summary: Coeus Analytics SDK
43
+ test_files: []