contacts_client 0.0.54.pre.c → 0.0.54
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.
- data/app/models/padma_contact.rb +0 -6
- metadata +35 -29
- checksums.yaml +0 -7
data/app/models/padma_contact.rb
CHANGED
|
@@ -45,12 +45,6 @@ class PadmaContact < LogicalModel
|
|
|
45
45
|
# setter for adding tags on creation or update
|
|
46
46
|
attribute :new_tag_names
|
|
47
47
|
|
|
48
|
-
# accessor for service to cache local version of contact
|
|
49
|
-
attribute :local_contact
|
|
50
|
-
|
|
51
|
-
# accessor for service to cache local version of account-contact relationship
|
|
52
|
-
attribute :current_account_contact
|
|
53
|
-
|
|
54
48
|
has_many :contact_attributes
|
|
55
49
|
has_many :attachments
|
|
56
50
|
has_many :tags
|
metadata
CHANGED
|
@@ -1,41 +1,46 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: contacts_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.54
|
|
4
|
+
version: 0.0.54
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Dwayne Macgowan
|
|
8
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
+
date: 2020-07-09 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: railties
|
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
+
none: false
|
|
16
18
|
requirements:
|
|
17
|
-
- -
|
|
19
|
+
- - ! '>='
|
|
18
20
|
- !ruby/object:Gem::Version
|
|
19
21
|
version: '3.1'
|
|
20
22
|
type: :runtime
|
|
21
23
|
prerelease: false
|
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
23
26
|
requirements:
|
|
24
|
-
- -
|
|
27
|
+
- - ! '>='
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '3.1'
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
|
28
31
|
name: logical_model
|
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
+
none: false
|
|
30
34
|
requirements:
|
|
31
|
-
- -
|
|
35
|
+
- - ! '>='
|
|
32
36
|
- !ruby/object:Gem::Version
|
|
33
37
|
version: 0.6.5
|
|
34
38
|
type: :runtime
|
|
35
39
|
prerelease: false
|
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
37
42
|
requirements:
|
|
38
|
-
- -
|
|
43
|
+
- - ! '>='
|
|
39
44
|
- !ruby/object:Gem::Version
|
|
40
45
|
version: 0.6.5
|
|
41
46
|
description: This is client library for padma-Contacts-ws
|
|
@@ -45,50 +50,51 @@ executables: []
|
|
|
45
50
|
extensions: []
|
|
46
51
|
extra_rdoc_files: []
|
|
47
52
|
files:
|
|
48
|
-
- app/models/
|
|
53
|
+
- app/models/tag.rb
|
|
54
|
+
- app/models/contacts_merge.rb
|
|
55
|
+
- app/models/occupation.rb
|
|
56
|
+
- app/models/identification.rb
|
|
57
|
+
- app/models/date_attribute.rb
|
|
58
|
+
- app/models/email.rb
|
|
49
59
|
- app/models/attachment.rb
|
|
60
|
+
- app/models/padma_contact.rb
|
|
50
61
|
- app/models/avatar.rb
|
|
62
|
+
- app/models/history_entry.rb
|
|
51
63
|
- app/models/contact_attribute.rb
|
|
52
64
|
- app/models/contact_attribute/custom_keys.rb
|
|
53
|
-
- app/models/contacts_merge.rb
|
|
54
65
|
- app/models/custom_attribute.rb
|
|
55
|
-
- app/models/date_attribute.rb
|
|
56
|
-
- app/models/email.rb
|
|
57
|
-
- app/models/history_entry.rb
|
|
58
|
-
- app/models/identification.rb
|
|
59
|
-
- app/models/occupation.rb
|
|
60
|
-
- app/models/padma_contact.rb
|
|
61
|
-
- app/models/social_network_id.rb
|
|
62
|
-
- app/models/tag.rb
|
|
63
66
|
- app/models/telephone.rb
|
|
67
|
+
- app/models/address.rb
|
|
68
|
+
- app/models/social_network_id.rb
|
|
64
69
|
- app/validators/email_format_validator.rb
|
|
65
|
-
-
|
|
70
|
+
- lib/contacts_client.rb
|
|
66
71
|
- lib/contacts/belongs_to_contact.rb
|
|
67
72
|
- lib/contacts/railties.rb
|
|
68
73
|
- lib/contacts/shared_examples.rb
|
|
69
|
-
-
|
|
74
|
+
- config/initializers/contacts_client.rb
|
|
70
75
|
homepage: ''
|
|
71
76
|
licenses: []
|
|
72
|
-
|
|
73
|
-
post_install_message:
|
|
77
|
+
post_install_message:
|
|
74
78
|
rdoc_options: []
|
|
75
79
|
require_paths:
|
|
76
80
|
- lib
|
|
77
81
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
82
|
+
none: false
|
|
78
83
|
requirements:
|
|
79
|
-
- -
|
|
84
|
+
- - ! '>='
|
|
80
85
|
- !ruby/object:Gem::Version
|
|
81
86
|
version: '0'
|
|
82
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
|
+
none: false
|
|
83
89
|
requirements:
|
|
84
|
-
- -
|
|
90
|
+
- - ! '>='
|
|
85
91
|
- !ruby/object:Gem::Version
|
|
86
|
-
version:
|
|
92
|
+
version: '0'
|
|
87
93
|
requirements: []
|
|
88
|
-
rubyforge_project:
|
|
89
|
-
rubygems_version:
|
|
90
|
-
signing_key:
|
|
91
|
-
specification_version:
|
|
94
|
+
rubyforge_project:
|
|
95
|
+
rubygems_version: 1.8.23.2
|
|
96
|
+
signing_key:
|
|
97
|
+
specification_version: 3
|
|
92
98
|
summary: Client library for padma-contacts-ws
|
|
93
99
|
test_files: []
|
|
94
|
-
has_rdoc:
|
|
100
|
+
has_rdoc:
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 17781b0e225848055aea3a4da3edf703f88e671c
|
|
4
|
-
data.tar.gz: d88cadad8ba67bccda1703d954291f6742c838f5
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: 010bd95dfd95de0c217e48fb4d047e869b22c34da7760a23a4e2cc7b66b07d8e3b5087bcf13f86ef1721b7e001ddc332531e99330fda33987cadf50ba7a42fd3
|
|
7
|
-
data.tar.gz: 208f81d3ddc3d62d7562792d90cefc70a2f4ed1fc38f60e5c95c44af793f5603e3ee85072caabdfcce6ad8a6bbe5b3e674f90e2cbf3f17b09a340b603edffc36
|