lifecycle_api 1.1.4 → 1.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.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/lib/lifecycle_api/lifecycle.rb +0 -1
- data/lib/lifecycle_api/version.rb +1 -1
- metadata +1 -2
- data/lib/lifecycle_api/client.rb +0 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 540a84f3da57329c8f0e963e0d64b4a6309b1406
|
4
|
+
data.tar.gz: f2472ff93a1bcbc69601826a5ba83159a8f09434
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7de57345237a07c4d411459cc1343ec263a1363e8f9566835f51ecff692bff46aa19a6765c7e688e4c7b840fbbce082cad287e938ce05d69255380b469370592
|
7
|
+
data.tar.gz: 47d9bad9064047d9ba9b778e71de4f4fe1f58d32e4f1063852211e585428aaee067fed1035a911f479acbd40ec8d71b5a90c96f4020901b411fb30a46a7285cc
|
data/README.md
CHANGED
@@ -40,13 +40,13 @@ lifecycle.track 'event_id', 'unique_id'
|
|
40
40
|
|
41
41
|
```ruby
|
42
42
|
#Example of params variable to use with identify call
|
43
|
-
#
|
43
|
+
#NOTICE: .to_json at the end. The api will not be able
|
44
44
|
#to parse your request without this.
|
45
45
|
params = {:unique_id => "1234",
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
46
|
+
:first_name => "Nathan",
|
47
|
+
:last_name => "Mooney",
|
48
|
+
:email_address => "someone@getvenn.io",
|
49
|
+
:phone_number => "12345678913"
|
50
50
|
}.to_json
|
51
51
|
```
|
52
52
|
Use this gem to interact with your Lifecycle account. Easily identify users and track users with minimal code. If you are looking for packages in a language other than ruby, check out the TeamLifecycle organization for your desired language. It is our hope that by providing this gem, integration and usage of Lifecycle will be quick and easy.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lifecycle_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jake Mooney
|
@@ -128,7 +128,6 @@ files:
|
|
128
128
|
- bin/console
|
129
129
|
- bin/setup
|
130
130
|
- example.rb
|
131
|
-
- lib/lifecycle_api/client.rb
|
132
131
|
- lib/lifecycle_api/configuration.rb
|
133
132
|
- lib/lifecycle_api/lifecycle.rb
|
134
133
|
- lib/lifecycle_api/version.rb
|
data/lib/lifecycle_api/client.rb
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
# module Lifecycle
|
2
|
-
# class Client
|
3
|
-
# attr_accessor *Configuration::VALID_CONFIG_KEYS
|
4
|
-
#
|
5
|
-
# def initialize(api_key = :api_key)
|
6
|
-
# # Merge the config values from the module and those passed
|
7
|
-
# # to the client.
|
8
|
-
# merged_options = Lifecycle.options.merge(:api_key => api_key)
|
9
|
-
#
|
10
|
-
# # Copy the merged values to this client and ignore those
|
11
|
-
# # not part of our configuration
|
12
|
-
# Configuration::VALID_CONFIG_KEYS.each do |key|
|
13
|
-
# send("#{key}=", merged_options[key])
|
14
|
-
# end
|
15
|
-
# end
|
16
|
-
# end
|
17
|
-
# end
|