helios-tracker 0.0.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 +7 -0
- data/.ruby-version +1 -0
- data/Gemfile +3 -0
- data/config/database.yml +25 -0
- data/lib/helios_tracker/engine.rb +5 -0
- data/lib/helios_tracker/version.rb +5 -0
- metadata +106 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a496bc5169788a1c1fc3655f928f7b493137b4421d2138666686b2d921a35802
|
|
4
|
+
data.tar.gz: 7eb796537bca7f003082b13002bb6fb2b950c48d4a5698f9e53c6f4aa5e92a71
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 379ec3dd8d9c8cfe760fc853668f4c285381ee732984cd28904bd9ad66511d1cfba16066f178dc164cfc3b78381c5f525ec7cad0e7abc6548609b20cc5750c82
|
|
7
|
+
data.tar.gz: 278e4be3f8374e22657b89fdfc9bf49fe011364f1102b4354e60adaf74ba81b1ac4cc2b370e16ab9cbedd112b1a4aa1a572e87b758ce00c6053ff442e7e7c53d
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.2.4
|
data/Gemfile
ADDED
data/config/database.yml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SQLite. Versions 3.8.0 and up are supported.
|
|
2
|
+
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem "sqlite3"
|
|
6
|
+
#
|
|
7
|
+
default: &default
|
|
8
|
+
adapter: sqlite3
|
|
9
|
+
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
|
|
10
|
+
timeout: 5000
|
|
11
|
+
|
|
12
|
+
development:
|
|
13
|
+
<<: *default
|
|
14
|
+
database: dummy/db/development.sqlite3
|
|
15
|
+
|
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
|
17
|
+
# re-generated from your development database when you run "rake".
|
|
18
|
+
# Do not set this db to the same as development or production.
|
|
19
|
+
test:
|
|
20
|
+
<<: *default
|
|
21
|
+
database: dummy/db/test.sqlite3
|
|
22
|
+
|
|
23
|
+
production:
|
|
24
|
+
<<: *default
|
|
25
|
+
database: dummy/db/production.sqlite3
|
metadata
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: helios-tracker
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Jason Fleetwood-Boldt
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-05-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '5.1'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '5.1'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: ffaker
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2.16'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '2.16'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: universal_track_manager
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.16'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.16'
|
|
55
|
+
description: Tracks click rates, signups, logins, and daily app interactions via REST
|
|
56
|
+
API. Targets automatically move from cold to warm or warm to hot as they engage
|
|
57
|
+
— increasing Crusader send frequency in real time.
|
|
58
|
+
email: jason@heliosflow.ai
|
|
59
|
+
executables: []
|
|
60
|
+
extensions: []
|
|
61
|
+
extra_rdoc_files: []
|
|
62
|
+
files:
|
|
63
|
+
- ".ruby-version"
|
|
64
|
+
- Gemfile
|
|
65
|
+
- config/database.yml
|
|
66
|
+
- lib/helios_tracker/engine.rb
|
|
67
|
+
- lib/helios_tracker/version.rb
|
|
68
|
+
homepage: https://heliosflow.ai?utm_source=rubygems.org&utm_campaign=rubygems_link
|
|
69
|
+
licenses:
|
|
70
|
+
- MIT
|
|
71
|
+
metadata:
|
|
72
|
+
source_code_uri: https://github.com/heliosdev-shop/helios-tracker
|
|
73
|
+
homepage: https://heliosflow.ai?utm_source=rubygems.org&utm_campaign=rubygems_link
|
|
74
|
+
post_install_message: |
|
|
75
|
+
---------------------------------------------
|
|
76
|
+
Welcome to Helios Tracker!
|
|
77
|
+
|
|
78
|
+
To get started, run:
|
|
79
|
+
rails generate helios_tracker:install
|
|
80
|
+
rails db:migrate
|
|
81
|
+
|
|
82
|
+
Then set your API key in your environment:
|
|
83
|
+
SELF_API_KEY=your_secret_key_here
|
|
84
|
+
|
|
85
|
+
Edit config/initializers/helios_tracker.rb to configure
|
|
86
|
+
your user scope, fields, and visit tracking.
|
|
87
|
+
---------------------------------------------
|
|
88
|
+
rdoc_options: []
|
|
89
|
+
require_paths:
|
|
90
|
+
- lib
|
|
91
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
|
+
requirements:
|
|
98
|
+
- - ">="
|
|
99
|
+
- !ruby/object:Gem::Version
|
|
100
|
+
version: '0'
|
|
101
|
+
requirements: []
|
|
102
|
+
rubygems_version: 3.5.22
|
|
103
|
+
signing_key:
|
|
104
|
+
specification_version: 4
|
|
105
|
+
summary: Implements Helios Crusader Email Tracking https://heliosflow.ai/
|
|
106
|
+
test_files: []
|