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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0f42180494cb38d3149478610069d136d006e28
4
- data.tar.gz: 41f09846466b38523c7a143ad3193202d998cddb
3
+ metadata.gz: 136d970c9bce8151a127ce98ab90f8a6e2952009
4
+ data.tar.gz: 59427c4157ebc98a365294f0ccd83c5ace8f54ab
5
5
  SHA512:
6
- metadata.gz: e454c54c54d947c4bd1990eaf1b658b66cf3411e838a54804051a7c29c907100bea287eee277aba5a523cfa435fc4c0515165223783111afc63a05c096af00a2
7
- data.tar.gz: 39a9ad60f694d1c08f118e227903f0eb89d027540a685a1293fc95cbac6c1d16b57673c1c856059c6c531712a37f998ede5c9cb4362be180c9181348700873e0
6
+ metadata.gz: 93266a647c58cfe28d31d372bd2fd05b4f2a3f2f706355b6f55e543708e78b0dc68a4c423e00d9d2f01ac458c879311dc03170b35b2c3035a71fa3537f9861a4
7
+ data.tar.gz: 8b69f0eecae5db59295b2fedfddd718390d282fbaf3a58daaa93b1b3f7a794b1c6c4b1bb0297e58215e446b966cfab7e5035ade4fd80b9c87c927c44a0077b5e
@@ -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
@@ -3,5 +3,5 @@ module FundAmerica
3
3
  # The format is Major dot Minor dot patch
4
4
  # Check the FundAmerica changelog regularly and add changes from it
5
5
  # Increase the patch number
6
- VERSION = "0.0.5"
6
+ VERSION = "0.0.6"
7
7
  end
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.5
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-06-17 00:00:00.000000000 Z
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.2
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