lifecycle_api 1.1.4 → 1.1.5

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
  SHA1:
3
- metadata.gz: 1c4fee4e9c40d08ce8412d6fe2d22d5edd026205
4
- data.tar.gz: 7399d4d719114ece00f74e9e15f8a58d24cc7eb8
3
+ metadata.gz: 540a84f3da57329c8f0e963e0d64b4a6309b1406
4
+ data.tar.gz: f2472ff93a1bcbc69601826a5ba83159a8f09434
5
5
  SHA512:
6
- metadata.gz: d46ef1d63e95e73f8e9e225000078180d018603a5cdff6dd66374ddfeb1837244761b630b2c4d2f0d222467ab6a30ba5010b80a535721df436ce2f37329d38be
7
- data.tar.gz: 2739aaaa3e225a493886d1b58a0d7ca41a3488433bdc75b3c49fda0f570f77485f433154cc52c096980d0278b77757deb0f6b45c3fc843cd7b3390bab7879162
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
- #notice the .to_json at the end. The rest api will not be able
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
- :first_name => "Nathan",
47
- :last_name => "Mooney",
48
- :email_address => "someone@getvenn.io",
49
- :phone_number => "12345678913"
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.
@@ -1,6 +1,5 @@
1
1
  require "lifecycle_api/version"
2
2
  require "lifecycle_api/configuration"
3
- require "lifecycle_api/client"
4
3
  require "unirest"
5
4
 
6
5
  module Lifecycle
@@ -1,3 +1,3 @@
1
1
  module Lifecycle
2
- VERSION = "1.1.4"
2
+ VERSION = "1.1.5"
3
3
  end
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
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
@@ -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