fund_america 0.0.5 → 0.0.6
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/fund_america/entity.rb +7 -0
- data/lib/fund_america/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 136d970c9bce8151a127ce98ab90f8a6e2952009
|
4
|
+
data.tar.gz: 59427c4157ebc98a365294f0ccd83c5ace8f54ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93266a647c58cfe28d31d372bd2fd05b4f2a3f2f706355b6f55e543708e78b0dc68a4c423e00d9d2f01ac458c879311dc03170b35b2c3035a71fa3537f9861a4
|
7
|
+
data.tar.gz: 8b69f0eecae5db59295b2fedfddd718390d282fbaf3a58daaa93b1b3f7a794b1c6c4b1bb0297e58215e446b966cfab7e5035ade4fd80b9c87c927c44a0077b5e
|
data/lib/fund_america/entity.rb
CHANGED
@@ -112,6 +112,13 @@ module FundAmerica
|
|
112
112
|
API::request(:get, "entities/#{entity_id}/relationships_as_parent")
|
113
113
|
end
|
114
114
|
|
115
|
+
# https://apps.fundamerica.com/api/entities/:id/investor_accreditation (GET)
|
116
|
+
# Usage: FundAmerica::Entity.investor_accreditation
|
117
|
+
# Output: Returns entity specific investor accreditation information
|
118
|
+
def investor_accreditation(entity_id)
|
119
|
+
API::request(:get, "entities/#{entity_id}/investor_accreditation")
|
120
|
+
end
|
121
|
+
|
115
122
|
end
|
116
123
|
end
|
117
124
|
end
|
data/lib/fund_america/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fund_america
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sanjay Vedula
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -163,7 +163,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
version: '0'
|
164
164
|
requirements: []
|
165
165
|
rubyforge_project:
|
166
|
-
rubygems_version: 2.5.
|
166
|
+
rubygems_version: 2.4.5.1
|
167
167
|
signing_key:
|
168
168
|
specification_version: 4
|
169
169
|
summary: Ruby gem for easy implementation of FundAmerica API in ruby, rails, sinatra
|