mparticle 1.0.1 → 1.0.2
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/lib/mparticle/models/application_state_transition_event.rb +1 -1
- data/lib/mparticle/models/breadcrumb_event.rb +1 -1
- data/lib/mparticle/models/commerce_event.rb +1 -1
- data/lib/mparticle/models/crash_report_event.rb +1 -1
- data/lib/mparticle/models/event_data.rb +1 -1
- data/lib/mparticle/models/first_run_event.rb +1 -1
- data/lib/mparticle/models/network_performance_event.rb +1 -1
- data/lib/mparticle/models/opt_out_event.rb +1 -1
- data/lib/mparticle/models/product.rb +1 -1
- data/lib/mparticle/models/profile_event.rb +1 -1
- data/lib/mparticle/models/push_message_event.rb +1 -1
- data/lib/mparticle/models/push_registration_event.rb +1 -1
- data/lib/mparticle/models/screen_view_event.rb +1 -1
- data/lib/mparticle/models/session_end_event.rb +1 -1
- data/lib/mparticle/models/session_start_event.rb +1 -1
- data/mparticle.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 656a4ac9e5f0ea681059900df218871330bcad52
|
4
|
+
data.tar.gz: 8ea0c83770ddb09b72178d7471a87ed90d14ee3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77d98f32789a8c20aa291102e6e05a776db4606967cd99cd0830e673ae279b0c16b775d98f3a1889ba80203f58538573716312d7b37f75f2014ad673a733cd02
|
7
|
+
data.tar.gz: 6ad18b651d901cb382fabff1c2d383545415c964b42a0c3fa1d47f37455d04058c0f70b22743f72e7addcaabb30a3a2aa666bf8ec31c3b2b8417744824a917c6
|
@@ -146,7 +146,7 @@ module MParticle
|
|
146
146
|
end
|
147
147
|
|
148
148
|
if attributes.has_key?(:'custom_attributes')
|
149
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
149
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
150
150
|
self.custom_attributes = value
|
151
151
|
end
|
152
152
|
end
|
@@ -105,7 +105,7 @@ module MParticle
|
|
105
105
|
end
|
106
106
|
|
107
107
|
if attributes.has_key?(:'custom_attributes')
|
108
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
108
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
109
109
|
self.custom_attributes = value
|
110
110
|
end
|
111
111
|
end
|
@@ -121,7 +121,7 @@ module MParticle
|
|
121
121
|
end
|
122
122
|
|
123
123
|
if attributes.has_key?(:'custom_attributes')
|
124
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
124
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
125
125
|
self.custom_attributes = value
|
126
126
|
end
|
127
127
|
end
|
@@ -105,7 +105,7 @@ module MParticle
|
|
105
105
|
end
|
106
106
|
|
107
107
|
if attributes.has_key?(:'custom_attributes')
|
108
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
108
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
109
109
|
self.custom_attributes = value
|
110
110
|
end
|
111
111
|
end
|
@@ -117,7 +117,7 @@ module MParticle
|
|
117
117
|
end
|
118
118
|
|
119
119
|
if attributes.has_key?(:'custom_attributes')
|
120
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
120
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
121
121
|
self.custom_attributes = value
|
122
122
|
end
|
123
123
|
end
|
@@ -110,7 +110,7 @@ module MParticle
|
|
110
110
|
end
|
111
111
|
|
112
112
|
if attributes.has_key?(:'custom_attributes')
|
113
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
113
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
114
114
|
self.custom_attributes = value
|
115
115
|
end
|
116
116
|
end
|
@@ -126,7 +126,7 @@ module MParticle
|
|
126
126
|
end
|
127
127
|
|
128
128
|
if attributes.has_key?(:'custom_attributes')
|
129
|
-
if (value = attributes[:'custom_attributes']).is_a?(
|
129
|
+
if (value = attributes[:'custom_attributes']).is_a?(Hash)
|
130
130
|
self.custom_attributes = value
|
131
131
|
end
|
132
132
|
end
|
data/mparticle.gemspec
CHANGED