fund_america 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- NGVlZTdjMDU5ZDJmODBhNDRkZDZkYjg0YzhkNGJjNDBlNDU2NTNhOA==
5
- data.tar.gz: !binary |-
6
- MTA5ZWQyYmI3OTcxNzIyZGMwZjI0ZTgzNDc5MTQ2OTE3YmJhNzRmNQ==
2
+ SHA1:
3
+ metadata.gz: e0f42180494cb38d3149478610069d136d006e28
4
+ data.tar.gz: 41f09846466b38523c7a143ad3193202d998cddb
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MTk1MzAzZjM2MmU3NzE2ZTQzZmRmYjE4Njc2MDM0NjlmYjlhZjQzN2VhMjNi
10
- MmI5OTI5N2JkZTljZmFiYjgxNjFhOGZkNGM4NDU2YzEwMzhhNzY4NTk5NjYw
11
- MDgzNWZhODNjYzMyNTdjZDcwZDRmODc4ZTk3MzRhMjg2YjQ2MDA=
12
- data.tar.gz: !binary |-
13
- NmE2YjI0OWEzODZhY2JiZjRkNGIzOGM1YTRlN2EzZGI0OTI2OGQ5M2JiYmVj
14
- N2ExNmM5NTAzMGYwNjNlNzE3NTk0ZDAwNjRkOTUwNDVjYWU0YjkxMDExMTg5
15
- NmQwMWJlZmY5MWFhNmNmODYwMTY1ODNmMTg0YjNhYmQ1NDM5MGE=
6
+ metadata.gz: e454c54c54d947c4bd1990eaf1b658b66cf3411e838a54804051a7c29c907100bea287eee277aba5a523cfa435fc4c0515165223783111afc63a05c096af00a2
7
+ data.tar.gz: 39a9ad60f694d1c08f118e227903f0eb89d027540a685a1293fc95cbac6c1d16b57673c1c856059c6c531712a37f998ede5c9cb4362be180c9181348700873e0
@@ -6,35 +6,35 @@ module FundAmerica
6
6
  # Usage: FundAmerica::AchAuthorization.list
7
7
  # Output: Returns list of ach_authorizations
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'ach_authorizations')
9
+ API::request(:get, 'ach_authorizations')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/ach_authorizations (POST)
13
13
  # Usage: FundAmerica::AchAuthorization.create(options)
14
14
  # Output: Creates a new ach_authorization
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'ach_authorizations', options)
16
+ API::request(:post, 'ach_authorizations', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/ach_authorizations/:id (GET)
20
20
  # Usage: FundAmerica::AchAuthorization.details(ach_authorization_id)
21
21
  # Output: Returns the details of an ach_authorization with matching id
22
22
  def details(ach_authorization_id)
23
- API::request(:get, FundAmerica.base_uri + "ach_authorizations/#{ach_authorization_id}")
23
+ API::request(:get, "ach_authorizations/#{ach_authorization_id}")
24
24
  end
25
25
 
26
26
  # End point: https://apps.fundamerica.com/api/ach_authorizations/:id (DELETE)
27
27
  # Usage: FundAmerica::AchAuthorization.delete(ach_authorization_id)
28
28
  # Output: Deletes an ach_authorization with matching id
29
29
  def delete(ach_authorization_id)
30
- API::request(:delete, FundAmerica.base_uri + "ach_authorizations/#{ach_authorization_id}")
30
+ API::request(:delete, "ach_authorizations/#{ach_authorization_id}")
31
31
  end
32
32
 
33
33
  # End point: https://apps.fundamerica.com/api/ach_authorizations/agreement_html (GET)
34
34
  # Usage: FundAmerica::AchAuthorization.agreement_html
35
35
  # Output: Returns the ACH authorization HTML
36
36
  def agreement_html
37
- API::request(:get, FundAmerica.base_uri + "ach_authorizations/agreement_html")
37
+ API::request(:get, "ach_authorizations/agreement_html")
38
38
  end
39
39
 
40
40
  # End point: https://apps.fundamerica.com/api/ach_tokens (POST)
@@ -46,7 +46,7 @@ module FundAmerica
46
46
  # have to be taken in a common file separately or clubbed with related
47
47
  # end point set. To be discussed further on approach
48
48
  def ach_tokens(options)
49
- API::request(:post, FundAmerica.base_uri + 'ach_tokens', options)
49
+ API::request(:post, 'ach_tokens', options)
50
50
  end
51
51
 
52
52
  end
@@ -7,6 +7,7 @@ module FundAmerica
7
7
  # Handles response and errors
8
8
  def request method, uri, options={}
9
9
  options = FundAmerica.basic_auth.merge!({:body => options})
10
+ uri = FundAmerica.base_uri + uri unless uri.include?('test_mode')
10
11
  response = HTTParty.send(method, uri, options)
11
12
  parsed_response = JSON.parse(response.body)
12
13
  if response.code.to_i == 200
@@ -30,13 +31,13 @@ module FundAmerica
30
31
  # End point: https://apps.fundamerica.com/api/investorsuitabilitytokens (POST)
31
32
  # Usage: FundAmerica::API.investor_suitabilitytokens(options)
32
33
  def investor_suitabilitytokens(options)
33
- API::request(:post, FundAmerica.base_uri + 'investorsuitabilitytokens', options)
34
+ API::request(:post, 'investorsuitabilitytokens', options)
34
35
  end
35
36
 
36
37
  # End point: https://apps.fundamerica.com/api/ledger_entries/:id (GET)
37
38
  # Usage: FundAmerica::API.ledger_entry(ledger_entry_id)
38
39
  def ledger_entry(ledger_entry_id)
39
- API::request(:get, FundAmerica.base_uri + "ledger_entries/#{ledger_entry_id}")
40
+ API::request(:get, "ledger_entries/#{ledger_entry_id}")
40
41
  end
41
42
  end
42
43
  end
@@ -9,7 +9,7 @@ module FundAmerica
9
9
  # The API class request method is a common method that takes care of
10
10
  # making API request, handling response and errors
11
11
  def info
12
- API::request(:get, FundAmerica.base_uri + 'info')
12
+ API::request(:get, 'info')
13
13
  end
14
14
  end
15
15
  end
@@ -6,21 +6,21 @@ module FundAmerica
6
6
  # Usage: FundAmerica::BackgroundCheck.list
7
7
  # Output: Returns list of background_checks
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'background_checks')
9
+ API::request(:get, 'background_checks')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/background_checks (POST)
13
13
  # Usage: FundAmerica::BackgroundCheck.create(options)
14
14
  # Output: Creates a new background_check
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'background_checks', options)
16
+ API::request(:post, 'background_checks', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/background_checks/:id (GET)
20
20
  # Usage: FundAmerica::BackgroundCheck.details(background_check_id)
21
21
  # Output: Returns the details of an background_check with matching id
22
22
  def details(background_check_id)
23
- API::request(:get, FundAmerica.base_uri + "background_checks/#{background_check_id}")
23
+ API::request(:get, "background_checks/#{background_check_id}")
24
24
  end
25
25
 
26
26
  end
@@ -5,7 +5,7 @@ module FundAmerica
5
5
  # End point: https://apps.fundamerica.com/api/bank_info/:routing_number (GET)
6
6
  # Usage: FundAmerica::BankInfo.info(routing_number)
7
7
  def info(routing_number)
8
- API::request(:get, FundAmerica.base_uri + "bank_info/#{routing_number}")
8
+ API::request(:get, "bank_info/#{routing_number}")
9
9
  end
10
10
  end
11
11
  end
@@ -6,8 +6,8 @@ module FundAmerica
6
6
  # Usage: FundAmerica::BankTransferMethod.details(bank_transfer_method_id)
7
7
  # Output: Returns the details of a bank transfer method with matching id
8
8
  def details(bank_transfer_method_id)
9
- API::request(:get, FundAmerica.base_uri + "bank_transfer_methods/#{bank_transfer_method_id}")
9
+ API::request(:get, "bank_transfer_methods/#{bank_transfer_method_id}")
10
10
  end
11
11
  end
12
12
  end
13
- end
13
+ end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::BillingLog.list
7
7
  # Output: Returns list of billing_logs
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'billing_logs')
9
+ API::request(:get, 'billing_logs')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/billing_logs/:id (GET)
13
13
  # Usage: FundAmerica::BillingLog.details(billing_log_id)
14
14
  # Output: Returns the details of an billing_log with matching id
15
15
  def details(billing_log_id)
16
- API::request(:get, FundAmerica.base_uri + "billing_logs/#{billing_log_id}")
16
+ API::request(:get, "billing_logs/#{billing_log_id}")
17
17
  end
18
18
 
19
19
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::CancelOfferingRequest.list
7
7
  # Output: Returns list of cancel_offering_requests
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'cancel_offering_requests')
9
+ API::request(:get, 'cancel_offering_requests')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/cancel_offering_requests (POST)
13
13
  # Usage: FundAmerica::CancelOfferingRequest.create(options)
14
14
  # Output: Creates a new cancel_offering_request
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'cancel_offering_requests', options)
16
+ API::request(:post, 'cancel_offering_requests', options)
17
17
  end
18
18
 
19
19
  # End point: https://sandbox.fundamerica.com/api/test_mode/cancel_offering_requests/:id (PATCH)
@@ -29,7 +29,7 @@ module FundAmerica
29
29
  # Usage: FundAmerica::CancelOfferingRequest.details(cancel_offering_request_id)
30
30
  # Output: Returns the details of an cancel_offering_request with matching id
31
31
  def details(cancel_offering_request_id)
32
- API::request(:get, FundAmerica.base_uri + "cancel_offering_requests/#{cancel_offering_request_id}")
32
+ API::request(:get, "cancel_offering_requests/#{cancel_offering_request_id}")
33
33
  end
34
34
 
35
35
  end
@@ -6,7 +6,7 @@ module FundAmerica
6
6
  # Usage: FundAmerica::CloseOfferingRequest.list
7
7
  # Output: Returns list of close_offering_requests
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'close_offering_requests')
9
+ API::request(:get, 'close_offering_requests')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/close_offering_requests (POST)
@@ -15,7 +15,7 @@ module FundAmerica
15
15
 
16
16
  # TODO - Test creation of close offering once offering has reached goal
17
17
  def create(options)
18
- API::request(:post, FundAmerica.base_uri + 'close_offering_requests', options)
18
+ API::request(:post, 'close_offering_requests', options)
19
19
  end
20
20
 
21
21
  # End point: https://sandbox.fundamerica.com/api/test_mode/close_offering_requests/:id (PATCH)
@@ -31,7 +31,7 @@ module FundAmerica
31
31
  # Usage: FundAmerica::CloseOfferingRequest.details(close_offering_request_id)
32
32
  # Output: Returns the details of an close_offering_request with matching id
33
33
  def details(close_offering_request_id)
34
- API::request(:get, FundAmerica.base_uri + "close_offering_requests/#{close_offering_request_id}")
34
+ API::request(:get, "close_offering_requests/#{close_offering_request_id}")
35
35
  end
36
36
 
37
37
  end
@@ -6,23 +6,23 @@ module FundAmerica
6
6
  # Usage: FundAmerica::Distribution.list
7
7
  # Output: Returns list of distributions
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'distributions')
9
+ API::request(:get, 'distributions')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/investment_payments/:id (GET)
13
13
  # Usage: FundAmerica::Distribution.details(distribution_id)
14
14
  # Output: Returns the details of a distribution with matching id
15
15
  def details(distribution_id)
16
- API::request(:get, FundAmerica.base_uri + "distributions/#{distribution_id}")
16
+ API::request(:get, "distributions/#{distribution_id}")
17
17
  end
18
18
 
19
19
  # End point: https://apps/fundamerica.com/api/distributions/:id/investor_payments
20
20
  # Usage: FundAmerica::Distribution.investor_payments(distribution_id)
21
21
  # Output: Returns the investor_payments associated with distribution
22
22
  def investor_payments(distribution_id, page, per)
23
- API::request(:get, FundAmerica.base_uri + "distributions/#{distribution_id}/investor_payments?page=#{page}&per=#{per}")
23
+ API::request(:get, "distributions/#{distribution_id}/investor_payments?page=#{page}&per=#{per}")
24
24
  end
25
25
 
26
26
  end
27
27
  end
28
- end
28
+ end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::ElectronicSignature.details(electronic_signature_id)
7
7
  # Output: Returns details of electronic_signature with matching id
8
8
  def details(electronic_signature_id)
9
- API::request(:get, FundAmerica.base_uri + "electronic_signatures/#{electronic_signature_id}")
9
+ API::request(:get, "electronic_signatures/#{electronic_signature_id}")
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/electronic_signatures/:id (PATCH)
13
13
  # Usage: FundAmerica::ElectronicSignature.update(electronic_signature_id, options)
14
14
  # Output: Updates an electronic_signature
15
15
  def update(electronic_signature_id, options)
16
- API::request(:patch, FundAmerica.base_uri + "electronic_signatures/#{electronic_signature_id}", options)
16
+ API::request(:patch, "electronic_signatures/#{electronic_signature_id}", options)
17
17
  end
18
18
 
19
19
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::EmailLog.list
7
7
  # Output: Returns list of email_logs
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'email_logs')
9
+ API::request(:get, 'email_logs')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/email_logs/:id (GET)
13
13
  # Usage: FundAmerica::EmailLog.details(email_log_id)
14
14
  # Output: Returns the details of an email_log with matching id
15
15
  def details(email_log_id)
16
- API::request(:get, FundAmerica.base_uri + "email_logs/#{email_log_id}")
16
+ API::request(:get, "email_logs/#{email_log_id}")
17
17
  end
18
18
 
19
19
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::Entity.list
7
7
  # Output: Returns list of entities
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'entities')
9
+ API::request(:get, 'entities')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/entities (POST)
13
13
  # Usage: FundAmerica::Entity.create(options)
14
14
  # Output: Creates a new entity - person or company
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'entities', options)
16
+ API::request(:post, 'entities', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/entities/:id (PATCH)
@@ -29,7 +29,7 @@ module FundAmerica
29
29
  # Usage: FundAmerica::Entity.details(entity_id), request options &_expand[<attribute_name>]=1
30
30
  # Output: Returns the details of an entity with matching id
31
31
  def details(entity_id, request_options = "")
32
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}" + request_options)
32
+ API::request(:get, "entities/#{entity_id}" + request_options)
33
33
  end
34
34
 
35
35
  # End point: https://apps.fundamerica.com/api/entities/:id (DELETE)
@@ -43,47 +43,74 @@ module FundAmerica
43
43
  # where you action cannot be taken (such as attempting to cancel an invested investment)
44
44
  # This request has to be tested with production mode in final testing phase
45
45
  def delete(entity_id)
46
- API::request(:delete, FundAmerica.base_uri + "entities/#{entity_id}")
46
+ API::request(:delete, "entities/#{entity_id}")
47
47
  end
48
48
 
49
49
  # End point: https://apps.fundamerica.com/api/entities/:entity_id/ach_authorizations (GET)
50
50
  # Usage: FundAmerica::Entity.ach_authorizations(entity_id)
51
51
  # Output: Returns ACH authorizations of an entity
52
52
  def ach_authorizations(entity_id)
53
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/ach_authorizations")
53
+ API::request(:get, "entities/#{entity_id}/ach_authorizations")
54
54
  end
55
55
 
56
56
  # End point: https://apps.fundamerica.com/api/entities/:id/cash_blotter (GET)
57
57
  # Usage: FundAmerica::Entity.cash_blotter(entity_id)
58
58
  def cash_blotter(entity_id)
59
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/cash_blotter")
59
+ API::request(:get, "entities/#{entity_id}/cash_blotter")
60
60
  end
61
61
 
62
62
  # End point: https://apps.fundamerica.com/api/entities/:id/investor_suitability (GET)
63
63
  # Usage: FundAmerica::Entity.investor_suitability_details(entity_id)
64
64
  def investor_suitability_details(entity_id)
65
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/investor_suitability")
65
+ API::request(:get, "entities/#{entity_id}/investor_suitability")
66
66
  end
67
67
 
68
68
  # End point: https://apps.fundamerica.com/api/entities/:id/investor_suitability (PATCH)
69
69
  # Usage: FundAmerica::Entity.investor_suitability_update(entity_id, options)
70
70
  def investor_suitability_update(entity_id, options)
71
- API::request(:patch, FundAmerica.base_uri + "entities/#{entity_id}/investor_suitability", options)
71
+ API::request(:patch, "entities/#{entity_id}/investor_suitability", options)
72
72
  end
73
73
 
74
74
  # End point: https://apps.fundamerica.com/api/entities/:id/investor_payments (GET)
75
75
  # Usage: FundAmerica::Entity.investor_payments(entity_id)
76
76
  def investor_payments(entity_id)
77
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/investor_payments")
77
+ API::request(:get, "entities/#{entity_id}/investor_payments")
78
78
  end
79
79
 
80
80
  # https://apps.fundamerica.com/api/entities/:id/bank_transfer_methods (GET)
81
81
  # Usage: FundAmerica::Entity.bank_transfer_methods
82
82
  # Output: Returns Bank Transfer Method informations of an entity
83
83
  def bank_transfer_method(entity_id)
84
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/bank_transfer_methods")
84
+ API::request(:get, "entities/#{entity_id}/bank_transfer_methods")
85
85
  end
86
86
 
87
+ # https://apps.fundamerica.com/api/entities/:id/child_entities (GET)
88
+ # Usage: FundAmerica::Entity.child_entities
89
+ # Output: Returns child entities of an entity
90
+ def child_entities(entity_id)
91
+ API::request(:get, "entities/#{entity_id}/child_entities")
92
+ end
93
+
94
+ # https://apps.fundamerica.com/api/entities/:id/parent_entities (GET)
95
+ # Usage: FundAmerica::Entity.parent_entities
96
+ # Output: Returns parent entities of an entity
97
+ def parent_entities(entity_id)
98
+ API::request(:get, "entities/#{entity_id}/parent_entities")
99
+ end
100
+
101
+ # https://apps.fundamerica.com/api/entities/:id/relationships_as_child (GET)
102
+ # Usage: FundAmerica::Entity.relationships_as_child
103
+ # Output: Returns relationships_as_child details for entity
104
+ def relationships_as_child(entity_id)
105
+ API::request(:get, "entities/#{entity_id}/relationships_as_child")
106
+ end
107
+
108
+ # https://apps.fundamerica.com/api/entities/:id/relationships_as_parent (GET)
109
+ # Usage: FundAmerica::Entity.relationships_as_parent
110
+ # Output: Returns relationships_as_parent details for entity
111
+ def relationships_as_parent(entity_id)
112
+ API::request(:get, "entities/#{entity_id}/relationships_as_parent")
113
+ end
87
114
 
88
115
  end
89
116
  end
@@ -6,21 +6,21 @@ module FundAmerica
6
6
  # Usage: FundAmerica::EntityRelationship.list
7
7
  # Output: Returns list of entity_relationships
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'entity_relationships')
9
+ API::request(:get, 'entity_relationships')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/entity_relationships (POST)
13
13
  # Usage: FundAmerica::EntityRelationship.create(options)
14
14
  # Output: Creates a new entity_relationship
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'entity_relationships', options)
16
+ API::request(:post, 'entity_relationships', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/entity_relationships/:id (PATCH)
20
20
  # Usage: FundAmerica::EntityRelationship.update(entity_relationship_id, options)
21
21
  # Output: Updates an entity_relationship
22
22
  def update(entity_relationship_id, options)
23
- end_point_url = FundAmerica.base_uri + "entity_relationships/#{entity_relationship_id}"
23
+ end_point_url = "entity_relationships/#{entity_relationship_id}"
24
24
  API::request(:patch, end_point_url, options)
25
25
  end
26
26
 
@@ -28,14 +28,14 @@ module FundAmerica
28
28
  # Usage: FundAmerica::EntityRelationship.details(entity_relationship_id)
29
29
  # Output: Returns the details of an entity_relationship with matching id
30
30
  def details(entity_relationship_id)
31
- API::request(:get, FundAmerica.base_uri + "entity_relationships/#{entity_relationship_id}")
31
+ API::request(:get, "entity_relationships/#{entity_relationship_id}")
32
32
  end
33
33
 
34
34
  # End point: https://apps.fundamerica.com/api/entity_relationships/:id (DELETE)
35
35
  # Usage: FundAmerica::EntityRelationship.delete(entity_relationship_id)
36
36
  # Output: Deletes an entity_relationship with matching id
37
37
  def delete(entity_relationship_id)
38
- API::request(:delete, FundAmerica.base_uri + "entity_relationships/#{entity_relationship_id}")
38
+ API::request(:delete, "entity_relationships/#{entity_relationship_id}")
39
39
  end
40
40
 
41
41
  end
@@ -6,21 +6,21 @@ module FundAmerica
6
6
  # Usage: FundAmerica::EscrowAgreement.list
7
7
  # Output: Returns list of escrow_agreements
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'escrow_agreements')
9
+ API::request(:get, 'escrow_agreements')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/escrow_agreements (POST)
13
13
  # Usage: FundAmerica::EscrowAgreement.create(options)
14
14
  # Output: Creates a new escrow_agreement
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'escrow_agreements', options)
16
+ API::request(:post, 'escrow_agreements', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/escrow_agreements/:id (GET)
20
20
  # Usage: FundAmerica::EscrowAgreement.details(escrow_agreement_id)
21
21
  # Output: Returns the details of an escrow_agreement with matching id
22
22
  def details(escrow_agreement_id)
23
- API::request(:get, FundAmerica.base_uri + "escrow_agreements/#{escrow_agreement_id}")
23
+ API::request(:get, "escrow_agreements/#{escrow_agreement_id}")
24
24
  end
25
25
 
26
26
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::EscrowServiceApplication.list
7
7
  # Output: Returns list of escrow_service_applications
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'escrow_service_applications')
9
+ API::request(:get, 'escrow_service_applications')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/escrow_service_applications (POST)
13
13
  # Usage: FundAmerica::EscrowServiceApplication.create(options)
14
14
  # Output: Creates a new escrow_service_application
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'escrow_service_applications', options)
16
+ API::request(:post, 'escrow_service_applications', options)
17
17
  end
18
18
 
19
19
  # End point: https://sandbox.fundamerica.com/api/test_mode/escrow_service_applications/:id (PATCH)
@@ -28,7 +28,7 @@ module FundAmerica
28
28
  # Usage: FundAmerica::EscrowServiceApplication.details(escrow_service_application_id)
29
29
  # Output: Returns the details of an escrow_service_application with matching id
30
30
  def details(escrow_service_application_id)
31
- API::request(:get, FundAmerica.base_uri + "escrow_service_applications/#{escrow_service_application_id}")
31
+ API::request(:get, "escrow_service_applications/#{escrow_service_application_id}")
32
32
  end
33
33
 
34
34
  end
@@ -6,16 +6,16 @@ module FundAmerica
6
6
  # Usage: FundAmerica::Holding.list
7
7
  # Output: Returns list of holdings
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'holdings')
9
+ API::request(:get, 'holdings')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/holdings/:id (GET)
13
13
  # Usage: FundAmerica::Holding.details(Holding_id)
14
14
  # Output: Returns the details of a Holding with matching id
15
15
  def details(holding_id)
16
- API::request(:get, FundAmerica.base_uri + "holdings/#{holding_id}")
16
+ API::request(:get, "holdings/#{holding_id}")
17
17
  end
18
18
 
19
19
  end
20
20
  end
21
- end
21
+ end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::Investment.list
7
7
  # Output: Returns list of investments
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'investments')
9
+ API::request(:get, 'investments')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/investments (POST)
13
13
  # Usage: FundAmerica::Investment.create(options)
14
14
  # Output: Creates a new investment
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'investments', options)
16
+ API::request(:post, 'investments', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/investments/:id (PATCH)
@@ -29,28 +29,28 @@ module FundAmerica
29
29
  # Usage: FundAmerica::Investment.details(investment_id)
30
30
  # Output: Returns the details of an investment with matching id
31
31
  def details(investment_id)
32
- API::request(:get, FundAmerica.base_uri + "investments/#{investment_id}")
32
+ API::request(:get, "investments/#{investment_id}")
33
33
  end
34
34
 
35
35
  # End point: https://apps.fundamerica.com/api/investments/:id (DELETE)
36
36
  # Usage: FundAmerica::Investment.delete(investment_id)
37
37
  # Output: Deletes an investment with matching id
38
38
  def delete(investment_id)
39
- API::request(:delete, FundAmerica.base_uri + "investments/#{investment_id}")
39
+ API::request(:delete, "investments/#{investment_id}")
40
40
  end
41
41
 
42
42
  # End point: https://apps.fundamerica.com/api/investments/:id/billing_logs (GET)
43
43
  # Usage: FundAmerica::Investment.billing_logs(investment_id)
44
44
  # Output: Returns billing logs of an investment with matching id
45
45
  def billing_logs(investment_id)
46
- API::request(:get, FundAmerica.base_uri + "investments/#{investment_id}/billing_logs")
46
+ API::request(:get, "investments/#{investment_id}/billing_logs")
47
47
  end
48
48
 
49
49
  # End point: https://apps.fundamerica.com/api/investments/:id/investment_payments (GET)
50
50
  # Usage: FundAmerica::Investment.investment_payments(investment_id)
51
51
  # Output: Returns investment_payments of an investment with matching id
52
52
  def investment_payments(investment_id)
53
- API::request(:get, FundAmerica.base_uri + "investments/#{investment_id}/investment_payments")
53
+ API::request(:get, "investments/#{investment_id}/investment_payments")
54
54
  end
55
55
 
56
56
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::InvestmentPayment.list
7
7
  # Output: Returns list of investment_payments
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'investment_payments')
9
+ API::request(:get, 'investment_payments')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/investment_payments/:id (GET)
13
13
  # Usage: FundAmerica::InvestmentPayment.details(investment_payment_id)
14
14
  # Output: Returns the details of an investment_payment with matching id
15
15
  def details(investment_payment_id)
16
- API::request(:get, FundAmerica.base_uri + "investment_payments/#{investment_payment_id}")
16
+ API::request(:get, "investment_payments/#{investment_payment_id}")
17
17
  end
18
18
 
19
19
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::Investor.list
7
7
  # Output: Returns list of investors
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'investors')
9
+ API::request(:get, 'investors')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/investors (POST)
13
13
  # Usage: FundAmerica::Investor.create(options)
14
14
  # Output: Creates a new investor - proxy, joint, ira
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'investors', options)
16
+ API::request(:post, 'investors', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/investors/:id (PATCH)
@@ -29,9 +29,8 @@ module FundAmerica
29
29
  # Usage: FundAmerica::Investor.details(entity_id)
30
30
  # Output: Returns the details of an investor with matching id
31
31
  def details(investor_id)
32
- API::request(:get, FundAmerica.base_uri + "investors/#{investor_id}")
32
+ API::request(:get, "investors/#{investor_id}")
33
33
  end
34
34
  end
35
35
  end
36
36
  end
37
-
@@ -6,16 +6,16 @@ module FundAmerica
6
6
  # Usage: FundAmerica::InvestorPayment.list
7
7
  # Output: Returns list of investor_payments
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'investor_payments')
9
+ API::request(:get, 'investor_payments')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/investor_payments/:id (GET)
13
13
  # Usage: FundAmerica::InvestorPayment.details(investor_payment_id)
14
14
  # Output: Returns the details of an investor_payment with matching id
15
15
  def details(investor_payment_id)
16
- API::request(:get, FundAmerica.base_uri + "investor_payments/#{investor_payment_id}")
16
+ API::request(:get, "investor_payments/#{investor_payment_id}")
17
17
  end
18
18
 
19
19
  end
20
20
  end
21
- end
21
+ end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::Offering.list
7
7
  # Output: Returns list of offerings
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'offerings')
9
+ API::request(:get, 'offerings')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/offerings (POST)
13
13
  # Usage: FundAmerica::Offering.create(options)
14
14
  # Output: Creates a new offering
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'offerings', options)
16
+ API::request(:post, 'offerings', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/offerings/:id (PATCH)
@@ -29,35 +29,35 @@ module FundAmerica
29
29
  # Usage: FundAmerica::Offering.details(offering_id)
30
30
  # Output: Returns the details of an offering with matching id
31
31
  def details(offering_id)
32
- API::request(:get, FundAmerica.base_uri + "offerings/#{offering_id}")
32
+ API::request(:get, "offerings/#{offering_id}")
33
33
  end
34
34
 
35
35
  # End point: https://apps.fundamerica.com/api/offerings/:id (DELETE)
36
36
  # Usage: FundAmerica::Offering.delete(offering_id)
37
37
  # Output: Deletes an offering with matching id
38
38
  def delete(offering_id)
39
- API::request(:delete, FundAmerica.base_uri + "offerings/#{offering_id}")
39
+ API::request(:delete, "offerings/#{offering_id}")
40
40
  end
41
41
 
42
42
  # End point: https://apps.fundamerica.com/api/offerings/:id/billing_logs (GET)
43
43
  # Usage: FundAmerica::Offering.billing_logs(offering_id)
44
44
  # Output: Returns billing logs of an offering with matching id
45
45
  def billing_logs(offering_id)
46
- API::request(:get, FundAmerica.base_uri + "offerings/#{offering_id}/billing_logs")
46
+ API::request(:get, "offerings/#{offering_id}/billing_logs")
47
47
  end
48
48
 
49
49
  # End point: https://apps.fundamerica.com/api/offerings/:id/escrow_ledger (GET)
50
50
  # Usage: FundAmerica::Offering.escrow_ledger(offering_id)
51
51
  # Output: Returns escrow_ledger of an offering with matching id
52
52
  def escrow_ledger(offering_id)
53
- API::request(:get, FundAmerica.base_uri + "offerings/#{offering_id}/escrow_ledger")
53
+ API::request(:get, "offerings/#{offering_id}/escrow_ledger")
54
54
  end
55
55
 
56
56
  # End point: https://apps.fundamerica.com/api/offerings/:id/investment_payments (GET)
57
57
  # Usage: FundAmerica::Offering.investment_payments(offering_id)
58
58
  # Output: Returns investment_payments of an offering with matching id
59
59
  def investment_payments(offering_id)
60
- API::request(:get, FundAmerica.base_uri + "offerings/#{offering_id}/investment_payments")
60
+ API::request(:get, "offerings/#{offering_id}/investment_payments")
61
61
  end
62
62
 
63
63
  end
@@ -6,44 +6,44 @@ module FundAmerica
6
6
  # Usage: FundAmerica::PlaidAuthentication.list(entity_id)
7
7
  # Output: Returns list of plaid_authentications
8
8
  def list(entity_id)
9
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication")
9
+ API::request(:get, "entities/#{entity_id}/plaid_authentication")
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/entities/:id/plaid_authentication (POST)
13
13
  # Usage: FundAmerica::PlaidAuthentication.create(entity_id, options)
14
14
  # Output: Creates a new plaid_authentication
15
15
  def create(entity_id, options)
16
- API::request(:post, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication", options)
16
+ API::request(:post, "entities/#{entity_id}/plaid_authentication", options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/entities/:id/plaid_authentication (DELETE)
20
20
  # Usage: FundAmerica::PlaidAuthentication.delete(entity_id)
21
21
  def delete(entity_id)
22
- API::request(:delete, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication")
22
+ API::request(:delete, "entities/#{entity_id}/plaid_authentication")
23
23
  end
24
24
 
25
25
  # End point: https://apps.fundamerica.com/api/entities/:id/plaid_authentication/institutions (GET)
26
26
  # Usage: FundAmerica::PlaidAuthentication.institutions(entity_id)
27
27
  def institutions(entity_id)
28
- API::request(:get, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication/institutions")
28
+ API::request(:get, "entities/#{entity_id}/plaid_authentication/institutions")
29
29
  end
30
30
 
31
31
  # End point: https://apps.fundamerica.com/api/entities/:id/plaid_authentication/mfa/device (POST)
32
32
  # Usage: FundAmerica::PlaidAuthentication.mfa_device(entity_id, options)
33
33
  def mfa_device(entity_id, options)
34
- API::request(:post, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication/mfa/device", options)
34
+ API::request(:post, "entities/#{entity_id}/plaid_authentication/mfa/device", options)
35
35
  end
36
36
 
37
37
  # End point: https://apps.fundamerica.com/api/entities/:id/plaid_authentication/mfa/questions (POST)
38
38
  # Usage: FundAmerica::PlaidAuthentication.mfa_questions(entity_id, options)
39
39
  def mfa_questions(entity_id, options)
40
- API::request(:post, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication/mfa/questions", options)
40
+ API::request(:post, "entities/#{entity_id}/plaid_authentication/mfa/questions", options)
41
41
  end
42
42
 
43
43
  # End point: https://apps.fundamerica.com/api/entities/:id/plaid_authentication/mfa/selections (POST)
44
44
  # Usage: FundAmerica::PlaidAuthentication.mfa_selections(entity_id, options)
45
45
  def mfa_selections(entity_id, options)
46
- API::request(:post, FundAmerica.base_uri + "entities/#{entity_id}/plaid_authentication/mfa/selections", options)
46
+ API::request(:post, "entities/#{entity_id}/plaid_authentication/mfa/selections", options)
47
47
  end
48
48
 
49
49
  end
@@ -6,21 +6,21 @@ module FundAmerica
6
6
  # Usage: FundAmerica::SubscriptionAgreement.list
7
7
  # Output: Returns list of subscription_agreements
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'subscription_agreements')
9
+ API::request(:get, 'subscription_agreements')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/subscription_agreements (POST)
13
13
  # Usage: FundAmerica::SubscriptionAgreement.create(options)
14
14
  # Output: Creates a new subscription_agreement
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'subscription_agreements', options)
16
+ API::request(:post, 'subscription_agreements', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/subscription_agreements/:id (GET)
20
20
  # Usage: FundAmerica::SubscriptionAgreement.details(subscription_agreement_id)
21
21
  # Output: Returns the details of an subscription_agreement with matching id
22
22
  def details(subscription_agreement_id)
23
- API::request(:get, FundAmerica.base_uri + "subscription_agreements/#{subscription_agreement_id}")
23
+ API::request(:get, "subscription_agreements/#{subscription_agreement_id}")
24
24
  end
25
25
 
26
26
  end
@@ -6,42 +6,42 @@ module FundAmerica
6
6
  # Usage: FundAmerica::SubscriptionAgreementTemplate.list
7
7
  # Output: Returns list of subscription_agreement_templates
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'subscription_agreement_templates')
9
+ API::request(:get, 'subscription_agreement_templates')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/subscription_agreement_templates (POST)
13
13
  # Usage: FundAmerica::SubscriptionAgreementTemplate.create(options)
14
14
  # Output: Creates a new subscription_agreement_template
15
15
  def create(options)
16
- API::request(:post, FundAmerica.base_uri + 'subscription_agreement_templates', options)
16
+ API::request(:post, 'subscription_agreement_templates', options)
17
17
  end
18
18
 
19
19
  # End point: https://apps.fundamerica.com/api/subscription_agreement_templates/:id (PATCH)
20
20
  # Usage: FundAmerica::SubscriptionAgreementTemplate.update(subscription_agreement_template_id, options)
21
21
  # Output: Updates an subscription_agreement_template
22
22
  def update(subscription_agreement_template_id, options)
23
- API::request(:patch, FundAmerica.base_uri + "subscription_agreement_templates/#{subscription_agreement_template_id}", options)
23
+ API::request(:patch, "subscription_agreement_templates/#{subscription_agreement_template_id}", options)
24
24
  end
25
25
 
26
26
  # End point: https://apps.fundamerica.com/api/subscription_agreement_templates/:id (GET)
27
27
  # Usage: FundAmerica::SubscriptionAgreementTemplate.details(subscription_agreement_template_id)
28
28
  # Output: Returns the details of an subscription_agreement_template with matching id
29
29
  def details(subscription_agreement_template_id)
30
- API::request(:get, FundAmerica.base_uri + "subscription_agreement_templates/#{subscription_agreement_template_id}")
30
+ API::request(:get, "subscription_agreement_templates/#{subscription_agreement_template_id}")
31
31
  end
32
32
 
33
33
  # End point: https://apps.fundamerica.com/api/subscription_agreement_templates/:id (DELETE)
34
34
  # Usage: FundAmerica::SubscriptionAgreementTemplate.delete(subscription_agreement_template_id)
35
35
  # Output: Deletes an subscription_agreement_template with matching id
36
36
  def delete(subscription_agreement_template_id)
37
- API::request(:delete, FundAmerica.base_uri + "subscription_agreement_templates/#{subscription_agreement_template_id}")
37
+ API::request(:delete, "subscription_agreement_templates/#{subscription_agreement_template_id}")
38
38
  end
39
39
 
40
40
  # Endpoint: https://apps.fundamerica.com/api/subscription_agreement_templates/boilerplate_html (GET)
41
41
  # Usage: FundAmerica::SubscriptionAgreementTemplate.boilerplate_html
42
42
  # Output: Returns boiler plate html
43
43
  def boilerplate_html
44
- API::request(:get, FundAmerica.base_uri + 'subscription_agreement_templates/boilerplate_html')
44
+ API::request(:get, 'subscription_agreement_templates/boilerplate_html')
45
45
  end
46
46
 
47
47
  end
@@ -6,7 +6,7 @@ module FundAmerica
6
6
  # Usage: FundAmerica::TradeReview.list
7
7
  # Output: Returns list of trade_reviews
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'trade_reviews')
9
+ API::request(:get, 'trade_reviews')
10
10
  end
11
11
 
12
12
  # End point: https://sandbox.fundamerica.com/api/test_mode/trade_reviews/:id (PATCH)
@@ -22,7 +22,7 @@ module FundAmerica
22
22
  # Usage: FundAmerica::TradeReview.details(trade_review_id)
23
23
  # Output: Returns the details of an trade_review with matching id
24
24
  def details(trade_review_id)
25
- API::request(:get, FundAmerica.base_uri + "trade_reviews/#{trade_review_id}")
25
+ API::request(:get, "trade_reviews/#{trade_review_id}")
26
26
  end
27
27
 
28
28
  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.4"
6
+ VERSION = "0.0.5"
7
7
  end
@@ -6,14 +6,14 @@ module FundAmerica
6
6
  # Usage: FundAmerica::WebhookLog.list
7
7
  # Output: Returns list of webhook_logs
8
8
  def list
9
- API::request(:get, FundAmerica.base_uri + 'webhook_logs')
9
+ API::request(:get, 'webhook_logs')
10
10
  end
11
11
 
12
12
  # End point: https://apps.fundamerica.com/api/webhook_logs/:id (GET)
13
13
  # Usage: FundAmerica::WebhookLog.details(webhook_log_id)
14
14
  # Output: Returns the details of an webhook_log with matching id
15
15
  def details(webhook_log_id)
16
- API::request(:get, FundAmerica.base_uri + "webhook_logs/#{webhook_log_id}")
16
+ API::request(:get, "webhook_logs/#{webhook_log_id}")
17
17
  end
18
18
 
19
19
  end
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fund_america
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
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-02-11 00:00:00.000000000 Z
11
+ date: 2016-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.9'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.9'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '10.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '10.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: pry
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: 0.10.1
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.10.1
55
55
  - !ruby/object:Gem::Dependency
@@ -70,14 +70,14 @@ dependencies:
70
70
  name: httparty
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ~>
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
75
  version: 0.13.3
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 0.13.3
83
83
  - !ruby/object:Gem::Dependency
@@ -102,9 +102,9 @@ executables: []
102
102
  extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
- - .gitignore
106
- - .rspec
107
- - .travis.yml
105
+ - ".gitignore"
106
+ - ".rspec"
107
+ - ".travis.yml"
108
108
  - Gemfile
109
109
  - LICENSE.txt
110
110
  - README.md
@@ -153,17 +153,17 @@ require_paths:
153
153
  - lib
154
154
  required_ruby_version: !ruby/object:Gem::Requirement
155
155
  requirements:
156
- - - ~>
156
+ - - "~>"
157
157
  - !ruby/object:Gem::Version
158
158
  version: 2.2.2
159
159
  required_rubygems_version: !ruby/object:Gem::Requirement
160
160
  requirements:
161
- - - ! '>='
161
+ - - ">="
162
162
  - !ruby/object:Gem::Version
163
163
  version: '0'
164
164
  requirements: []
165
165
  rubyforge_project:
166
- rubygems_version: 2.4.8
166
+ rubygems_version: 2.5.2
167
167
  signing_key:
168
168
  specification_version: 4
169
169
  summary: Ruby gem for easy implementation of FundAmerica API in ruby, rails, sinatra