intrinio-sdk 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +7 -0
  3. data/README.md +176 -0
  4. data/Rakefile +8 -0
  5. data/docs/ApiResponseCompanies.md +9 -0
  6. data/docs/ApiResponseCompanyFilings.md +10 -0
  7. data/docs/ApiResponseCompanyFundamentals.md +10 -0
  8. data/docs/ApiResponseCompanyHistoricalData.md +10 -0
  9. data/docs/ApiResponseCompanyNews.md +10 -0
  10. data/docs/ApiResponseCompanySecurities.md +10 -0
  11. data/docs/ApiResponseDataTags.md +9 -0
  12. data/docs/ApiResponseEconomicIndexHistoricalData.md +10 -0
  13. data/docs/ApiResponseEconomicIndices.md +9 -0
  14. data/docs/ApiResponseFilings.md +9 -0
  15. data/docs/ApiResponseHistoricalData.md +9 -0
  16. data/docs/ApiResponseNews.md +9 -0
  17. data/docs/ApiResponseReportedFinancials.md +10 -0
  18. data/docs/ApiResponseSICIndexHistoricalData.md +10 -0
  19. data/docs/ApiResponseSICIndices.md +9 -0
  20. data/docs/ApiResponseSecurities.md +9 -0
  21. data/docs/ApiResponseSecurityHistoricalData.md +10 -0
  22. data/docs/ApiResponseSecurityStockPriceAdjustments.md +10 -0
  23. data/docs/ApiResponseSecurityStockPrices.md +10 -0
  24. data/docs/ApiResponseStandardizedFinancials.md +10 -0
  25. data/docs/ApiResponseStockExchangeSecurities.md +10 -0
  26. data/docs/ApiResponseStockExchangeStockPriceAdjustments.md +10 -0
  27. data/docs/ApiResponseStockExchangeStockPrices.md +10 -0
  28. data/docs/ApiResponseStockExchanges.md +9 -0
  29. data/docs/ApiResponseStockMarketIndexHistoricalData.md +10 -0
  30. data/docs/ApiResponseStockMarketIndices.md +9 -0
  31. data/docs/Company.md +39 -0
  32. data/docs/CompanyApi.md +659 -0
  33. data/docs/CompanyFiling.md +17 -0
  34. data/docs/CompanyNews.md +13 -0
  35. data/docs/CompanyNewsSummary.md +12 -0
  36. data/docs/CompanySummary.md +12 -0
  37. data/docs/DataPointApi.md +96 -0
  38. data/docs/DataTag.md +17 -0
  39. data/docs/DataTagApi.md +184 -0
  40. data/docs/DataTagSummary.md +11 -0
  41. data/docs/EconomicIndex.md +19 -0
  42. data/docs/EconomicIndexSummary.md +18 -0
  43. data/docs/Filing.md +17 -0
  44. data/docs/FilingApi.md +142 -0
  45. data/docs/FilingSummary.md +16 -0
  46. data/docs/Fundamental.md +16 -0
  47. data/docs/FundamentalSummary.md +15 -0
  48. data/docs/FundamentalsApi.md +181 -0
  49. data/docs/HistoricalData.md +9 -0
  50. data/docs/HistoricalDataApi.md +64 -0
  51. data/docs/IndexApi.md +800 -0
  52. data/docs/ReportedFinancial.md +9 -0
  53. data/docs/ReportedTag.md +14 -0
  54. data/docs/SICIndex.md +12 -0
  55. data/docs/Security.md +34 -0
  56. data/docs/SecurityApi.md +420 -0
  57. data/docs/SecurityScreenClause.md +10 -0
  58. data/docs/SecurityScreenGroup.md +10 -0
  59. data/docs/SecurityScreenResult.md +9 -0
  60. data/docs/SecurityScreenResultData.md +10 -0
  61. data/docs/SecuritySummary.md +17 -0
  62. data/docs/StandardizedFinancial.md +9 -0
  63. data/docs/StockExchange.md +17 -0
  64. data/docs/StockExchangeApi.md +267 -0
  65. data/docs/StockMarketIndex.md +17 -0
  66. data/docs/StockMarketIndexSummary.md +16 -0
  67. data/docs/StockPrice.md +21 -0
  68. data/docs/StockPriceAdjustment.md +12 -0
  69. data/docs/StockPriceAdjustmentSummary.md +13 -0
  70. data/docs/StockPriceSummary.md +20 -0
  71. data/git_push.sh +55 -0
  72. data/intrinio-sdk.gemspec +45 -0
  73. data/lib/intrinio-sdk.rb +105 -0
  74. data/lib/intrinio-sdk/api/company_api.rb +885 -0
  75. data/lib/intrinio-sdk/api/data_point_api.rb +141 -0
  76. data/lib/intrinio-sdk/api/data_tag_api.rb +251 -0
  77. data/lib/intrinio-sdk/api/filing_api.rb +192 -0
  78. data/lib/intrinio-sdk/api/fundamentals_api.rb +261 -0
  79. data/lib/intrinio-sdk/api/historical_data_api.rb +100 -0
  80. data/lib/intrinio-sdk/api/index_api.rb +1079 -0
  81. data/lib/intrinio-sdk/api/security_api.rb +568 -0
  82. data/lib/intrinio-sdk/api/stock_exchange_api.rb +353 -0
  83. data/lib/intrinio-sdk/api_client.rb +389 -0
  84. data/lib/intrinio-sdk/api_error.rb +38 -0
  85. data/lib/intrinio-sdk/configuration.rb +209 -0
  86. data/lib/intrinio-sdk/models/api_response_companies.rb +200 -0
  87. data/lib/intrinio-sdk/models/api_response_company_filings.rb +209 -0
  88. data/lib/intrinio-sdk/models/api_response_company_fundamentals.rb +209 -0
  89. data/lib/intrinio-sdk/models/api_response_company_historical_data.rb +209 -0
  90. data/lib/intrinio-sdk/models/api_response_company_news.rb +209 -0
  91. data/lib/intrinio-sdk/models/api_response_company_securities.rb +209 -0
  92. data/lib/intrinio-sdk/models/api_response_data_tags.rb +200 -0
  93. data/lib/intrinio-sdk/models/api_response_economic_index_historical_data.rb +209 -0
  94. data/lib/intrinio-sdk/models/api_response_economic_indices.rb +200 -0
  95. data/lib/intrinio-sdk/models/api_response_filings.rb +200 -0
  96. data/lib/intrinio-sdk/models/api_response_historical_data.rb +200 -0
  97. data/lib/intrinio-sdk/models/api_response_news.rb +200 -0
  98. data/lib/intrinio-sdk/models/api_response_reported_financials.rb +209 -0
  99. data/lib/intrinio-sdk/models/api_response_securities.rb +200 -0
  100. data/lib/intrinio-sdk/models/api_response_security_historical_data.rb +209 -0
  101. data/lib/intrinio-sdk/models/api_response_security_stock_price_adjustments.rb +211 -0
  102. data/lib/intrinio-sdk/models/api_response_security_stock_prices.rb +211 -0
  103. data/lib/intrinio-sdk/models/api_response_sic_index_historical_data.rb +209 -0
  104. data/lib/intrinio-sdk/models/api_response_sic_indices.rb +200 -0
  105. data/lib/intrinio-sdk/models/api_response_standardized_financials.rb +209 -0
  106. data/lib/intrinio-sdk/models/api_response_stock_exchange_securities.rb +211 -0
  107. data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_price_adjustments.rb +211 -0
  108. data/lib/intrinio-sdk/models/api_response_stock_exchange_stock_prices.rb +211 -0
  109. data/lib/intrinio-sdk/models/api_response_stock_exchanges.rb +200 -0
  110. data/lib/intrinio-sdk/models/api_response_stock_market_index_historical_data.rb +209 -0
  111. data/lib/intrinio-sdk/models/api_response_stock_market_indices.rb +200 -0
  112. data/lib/intrinio-sdk/models/company.rb +498 -0
  113. data/lib/intrinio-sdk/models/company_filing.rb +278 -0
  114. data/lib/intrinio-sdk/models/company_news.rb +239 -0
  115. data/lib/intrinio-sdk/models/company_news_summary.rb +229 -0
  116. data/lib/intrinio-sdk/models/company_summary.rb +229 -0
  117. data/lib/intrinio-sdk/models/data_tag.rb +312 -0
  118. data/lib/intrinio-sdk/models/data_tag_summary.rb +219 -0
  119. data/lib/intrinio-sdk/models/economic_index.rb +299 -0
  120. data/lib/intrinio-sdk/models/economic_index_summary.rb +289 -0
  121. data/lib/intrinio-sdk/models/filing.rb +278 -0
  122. data/lib/intrinio-sdk/models/filing_summary.rb +269 -0
  123. data/lib/intrinio-sdk/models/fundamental.rb +302 -0
  124. data/lib/intrinio-sdk/models/fundamental_summary.rb +292 -0
  125. data/lib/intrinio-sdk/models/historical_data.rb +199 -0
  126. data/lib/intrinio-sdk/models/reported_financial.rb +198 -0
  127. data/lib/intrinio-sdk/models/reported_tag.rb +249 -0
  128. data/lib/intrinio-sdk/models/security.rb +453 -0
  129. data/lib/intrinio-sdk/models/security_screen_clause.rb +242 -0
  130. data/lib/intrinio-sdk/models/security_screen_group.rb +213 -0
  131. data/lib/intrinio-sdk/models/security_screen_result.rb +199 -0
  132. data/lib/intrinio-sdk/models/security_screen_result_data.rb +209 -0
  133. data/lib/intrinio-sdk/models/security_summary.rb +279 -0
  134. data/lib/intrinio-sdk/models/sic_index.rb +229 -0
  135. data/lib/intrinio-sdk/models/standardized_financial.rb +198 -0
  136. data/lib/intrinio-sdk/models/stock_exchange.rb +279 -0
  137. data/lib/intrinio-sdk/models/stock_market_index.rb +279 -0
  138. data/lib/intrinio-sdk/models/stock_market_index_summary.rb +269 -0
  139. data/lib/intrinio-sdk/models/stock_price.rb +352 -0
  140. data/lib/intrinio-sdk/models/stock_price_adjustment.rb +229 -0
  141. data/lib/intrinio-sdk/models/stock_price_adjustment_summary.rb +239 -0
  142. data/lib/intrinio-sdk/models/stock_price_summary.rb +342 -0
  143. data/lib/intrinio-sdk/version.rb +15 -0
  144. data/spec/api/company_api_spec.rb +233 -0
  145. data/spec/api/data_point_api_spec.rb +61 -0
  146. data/spec/api/data_tag_api_spec.rb +88 -0
  147. data/spec/api/filing_api_spec.rb +75 -0
  148. data/spec/api/fundamentals_api_spec.rb +86 -0
  149. data/spec/api/historical_data_api_spec.rb +53 -0
  150. data/spec/api/index_api_spec.rb +275 -0
  151. data/spec/api/security_api_spec.rb +161 -0
  152. data/spec/api/stock_exchange_api_spec.rb +113 -0
  153. data/spec/api_client_spec.rb +226 -0
  154. data/spec/configuration_spec.rb +42 -0
  155. data/spec/models/api_response_companies_spec.rb +48 -0
  156. data/spec/models/api_response_company_filings_spec.rb +54 -0
  157. data/spec/models/api_response_company_fundamentals_spec.rb +54 -0
  158. data/spec/models/api_response_company_historical_data_spec.rb +54 -0
  159. data/spec/models/api_response_company_news_spec.rb +54 -0
  160. data/spec/models/api_response_company_securities_spec.rb +54 -0
  161. data/spec/models/api_response_data_tags_spec.rb +48 -0
  162. data/spec/models/api_response_economic_index_historical_data_spec.rb +54 -0
  163. data/spec/models/api_response_economic_indices_spec.rb +48 -0
  164. data/spec/models/api_response_filings_spec.rb +48 -0
  165. data/spec/models/api_response_historical_data_spec.rb +48 -0
  166. data/spec/models/api_response_news_spec.rb +48 -0
  167. data/spec/models/api_response_reported_financials_spec.rb +54 -0
  168. data/spec/models/api_response_securities_spec.rb +48 -0
  169. data/spec/models/api_response_security_historical_data_spec.rb +54 -0
  170. data/spec/models/api_response_security_stock_price_adjustments_spec.rb +54 -0
  171. data/spec/models/api_response_security_stock_prices_spec.rb +54 -0
  172. data/spec/models/api_response_sic_index_historical_data_spec.rb +54 -0
  173. data/spec/models/api_response_sic_indices_spec.rb +48 -0
  174. data/spec/models/api_response_standardized_financials_spec.rb +54 -0
  175. data/spec/models/api_response_stock_exchange_securities_spec.rb +54 -0
  176. data/spec/models/api_response_stock_exchange_stock_price_adjustments_spec.rb +54 -0
  177. data/spec/models/api_response_stock_exchange_stock_prices_spec.rb +54 -0
  178. data/spec/models/api_response_stock_exchanges_spec.rb +48 -0
  179. data/spec/models/api_response_stock_market_index_historical_data_spec.rb +54 -0
  180. data/spec/models/api_response_stock_market_indices_spec.rb +48 -0
  181. data/spec/models/company_filing_spec.rb +96 -0
  182. data/spec/models/company_news_spec.rb +72 -0
  183. data/spec/models/company_news_summary_spec.rb +66 -0
  184. data/spec/models/company_spec.rb +228 -0
  185. data/spec/models/company_summary_spec.rb +66 -0
  186. data/spec/models/data_tag_spec.rb +100 -0
  187. data/spec/models/data_tag_summary_spec.rb +60 -0
  188. data/spec/models/economic_index_spec.rb +108 -0
  189. data/spec/models/economic_index_summary_spec.rb +102 -0
  190. data/spec/models/filing_spec.rb +96 -0
  191. data/spec/models/filing_summary_spec.rb +90 -0
  192. data/spec/models/fundamental_spec.rb +94 -0
  193. data/spec/models/fundamental_summary_spec.rb +88 -0
  194. data/spec/models/historical_data_spec.rb +48 -0
  195. data/spec/models/reported_financial_spec.rb +48 -0
  196. data/spec/models/reported_tag_spec.rb +78 -0
  197. data/spec/models/security_screen_clause_spec.rb +58 -0
  198. data/spec/models/security_screen_group_spec.rb +54 -0
  199. data/spec/models/security_screen_result_data_spec.rb +54 -0
  200. data/spec/models/security_screen_result_spec.rb +48 -0
  201. data/spec/models/security_spec.rb +198 -0
  202. data/spec/models/security_summary_spec.rb +96 -0
  203. data/spec/models/sic_index_spec.rb +66 -0
  204. data/spec/models/standardized_financial_spec.rb +48 -0
  205. data/spec/models/stock_exchange_spec.rb +96 -0
  206. data/spec/models/stock_market_index_spec.rb +96 -0
  207. data/spec/models/stock_market_index_summary_spec.rb +90 -0
  208. data/spec/models/stock_price_adjustment_spec.rb +66 -0
  209. data/spec/models/stock_price_adjustment_summary_spec.rb +72 -0
  210. data/spec/models/stock_price_spec.rb +124 -0
  211. data/spec/models/stock_price_summary_spec.rb +118 -0
  212. data/spec/spec_helper.rb +111 -0
  213. metadata +509 -0
@@ -0,0 +1,124 @@
1
+ =begin
2
+ #Intrinio API
3
+
4
+ #Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
5
+
6
+ OpenAPI spec version: 2.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Intrinio::StockPrice
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'StockPrice' do
21
+ before do
22
+ # run before each test
23
+ @instance = Intrinio::StockPrice.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of StockPrice' do
31
+ it 'should create an instance of StockPrice' do
32
+ expect(@instance).to be_instance_of(Intrinio::StockPrice)
33
+ end
34
+ end
35
+ describe 'test attribute "date"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "intraperiod"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "frequency"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["daily", "weekly", "monthly", "quarterly", "yearly"])
51
+ #validator.allowable_values.each do |value|
52
+ # expect { @instance.frequency = value }.not_to raise_error
53
+ #end
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "open"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "high"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ describe 'test attribute "low"' do
70
+ it 'should work' do
71
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
72
+ end
73
+ end
74
+
75
+ describe 'test attribute "close"' do
76
+ it 'should work' do
77
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
+ end
79
+ end
80
+
81
+ describe 'test attribute "volume"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
87
+ describe 'test attribute "adj_open"' do
88
+ it 'should work' do
89
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
+ end
91
+ end
92
+
93
+ describe 'test attribute "adj_high"' do
94
+ it 'should work' do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ end
97
+ end
98
+
99
+ describe 'test attribute "adj_low"' do
100
+ it 'should work' do
101
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
102
+ end
103
+ end
104
+
105
+ describe 'test attribute "adj_close"' do
106
+ it 'should work' do
107
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
108
+ end
109
+ end
110
+
111
+ describe 'test attribute "adj_volume"' do
112
+ it 'should work' do
113
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
114
+ end
115
+ end
116
+
117
+ describe 'test attribute "security"' do
118
+ it 'should work' do
119
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
120
+ end
121
+ end
122
+
123
+ end
124
+
@@ -0,0 +1,118 @@
1
+ =begin
2
+ #Intrinio API
3
+
4
+ #Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
5
+
6
+ OpenAPI spec version: 2.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Intrinio::StockPriceSummary
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'StockPriceSummary' do
21
+ before do
22
+ # run before each test
23
+ @instance = Intrinio::StockPriceSummary.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of StockPriceSummary' do
31
+ it 'should create an instance of StockPriceSummary' do
32
+ expect(@instance).to be_instance_of(Intrinio::StockPriceSummary)
33
+ end
34
+ end
35
+ describe 'test attribute "date"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "intraperiod"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "frequency"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["daily", "weekly", "monthly", "quarterly", "yearly"])
51
+ #validator.allowable_values.each do |value|
52
+ # expect { @instance.frequency = value }.not_to raise_error
53
+ #end
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "open"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "high"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ describe 'test attribute "low"' do
70
+ it 'should work' do
71
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
72
+ end
73
+ end
74
+
75
+ describe 'test attribute "close"' do
76
+ it 'should work' do
77
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
+ end
79
+ end
80
+
81
+ describe 'test attribute "volume"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
87
+ describe 'test attribute "adj_open"' do
88
+ it 'should work' do
89
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
90
+ end
91
+ end
92
+
93
+ describe 'test attribute "adj_high"' do
94
+ it 'should work' do
95
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
96
+ end
97
+ end
98
+
99
+ describe 'test attribute "adj_low"' do
100
+ it 'should work' do
101
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
102
+ end
103
+ end
104
+
105
+ describe 'test attribute "adj_close"' do
106
+ it 'should work' do
107
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
108
+ end
109
+ end
110
+
111
+ describe 'test attribute "adj_volume"' do
112
+ it 'should work' do
113
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
114
+ end
115
+ end
116
+
117
+ end
118
+
@@ -0,0 +1,111 @@
1
+ =begin
2
+ #Intrinio API
3
+
4
+ #Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
5
+
6
+ OpenAPI spec version: 2.0.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.0-SNAPSHOT
10
+
11
+ =end
12
+
13
+ # load the gem
14
+ require 'intrinio-sdk'
15
+
16
+ # The following was generated by the `rspec --init` command. Conventionally, all
17
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
18
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
19
+ # this file to always be loaded, without a need to explicitly require it in any
20
+ # files.
21
+ #
22
+ # Given that it is always loaded, you are encouraged to keep this file as
23
+ # light-weight as possible. Requiring heavyweight dependencies from this file
24
+ # will add to the boot time of your test suite on EVERY test run, even for an
25
+ # individual file that may not need all of that loaded. Instead, consider making
26
+ # a separate helper file that requires the additional dependencies and performs
27
+ # the additional setup, and require it from the spec files that actually need
28
+ # it.
29
+ #
30
+ # The `.rspec` file also contains a few flags that are not defaults but that
31
+ # users commonly want.
32
+ #
33
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
34
+ RSpec.configure do |config|
35
+ # rspec-expectations config goes here. You can use an alternate
36
+ # assertion/expectation library such as wrong or the stdlib/minitest
37
+ # assertions if you prefer.
38
+ config.expect_with :rspec do |expectations|
39
+ # This option will default to `true` in RSpec 4. It makes the `description`
40
+ # and `failure_message` of custom matchers include text for helper methods
41
+ # defined using `chain`, e.g.:
42
+ # be_bigger_than(2).and_smaller_than(4).description
43
+ # # => "be bigger than 2 and smaller than 4"
44
+ # ...rather than:
45
+ # # => "be bigger than 2"
46
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
47
+ end
48
+
49
+ # rspec-mocks config goes here. You can use an alternate test double
50
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
51
+ config.mock_with :rspec do |mocks|
52
+ # Prevents you from mocking or stubbing a method that does not exist on
53
+ # a real object. This is generally recommended, and will default to
54
+ # `true` in RSpec 4.
55
+ mocks.verify_partial_doubles = true
56
+ end
57
+
58
+ # The settings below are suggested to provide a good initial experience
59
+ # with RSpec, but feel free to customize to your heart's content.
60
+ =begin
61
+ # These two settings work together to allow you to limit a spec run
62
+ # to individual examples or groups you care about by tagging them with
63
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
64
+ # get run.
65
+ config.filter_run :focus
66
+ config.run_all_when_everything_filtered = true
67
+
68
+ # Allows RSpec to persist some state between runs in order to support
69
+ # the `--only-failures` and `--next-failure` CLI options. We recommend
70
+ # you configure your source control system to ignore this file.
71
+ config.example_status_persistence_file_path = "spec/examples.txt"
72
+
73
+ # Limits the available syntax to the non-monkey patched syntax that is
74
+ # recommended. For more details, see:
75
+ # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
76
+ # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
77
+ # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
78
+ config.disable_monkey_patching!
79
+
80
+ # This setting enables warnings. It's recommended, but in some cases may
81
+ # be too noisy due to issues in dependencies.
82
+ config.warnings = true
83
+
84
+ # Many RSpec users commonly either run the entire suite or an individual
85
+ # file, and it's useful to allow more verbose output when running an
86
+ # individual spec file.
87
+ if config.files_to_run.one?
88
+ # Use the documentation formatter for detailed output,
89
+ # unless a formatter has already been configured
90
+ # (e.g. via a command-line flag).
91
+ config.default_formatter = 'doc'
92
+ end
93
+
94
+ # Print the 10 slowest examples and example groups at the
95
+ # end of the spec run, to help surface which specs are running
96
+ # particularly slow.
97
+ config.profile_examples = 10
98
+
99
+ # Run specs in random order to surface order dependencies. If you find an
100
+ # order dependency and want to debug it, you can fix the order by providing
101
+ # the seed, which is printed after each run.
102
+ # --seed 1234
103
+ config.order = :random
104
+
105
+ # Seed global randomization in this process using the `--seed` CLI option.
106
+ # Setting this allows you to use `--seed` to deterministically reproduce
107
+ # test failures related to randomization by passing the same `--seed` value
108
+ # as the one that triggered the failure.
109
+ Kernel.srand config.seed
110
+ =end
111
+ end
metadata ADDED
@@ -0,0 +1,509 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: intrinio-sdk
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Intrinio
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-12-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: typhoeus
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.0'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.1
33
+ - !ruby/object:Gem::Dependency
34
+ name: json
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '2.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 2.1.0
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '2.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 2.1.0
53
+ - !ruby/object:Gem::Dependency
54
+ name: rspec
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - "~>"
58
+ - !ruby/object:Gem::Version
59
+ version: '3.6'
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: 3.6.0
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.6'
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: 3.6.0
73
+ - !ruby/object:Gem::Dependency
74
+ name: vcr
75
+ requirement: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - "~>"
78
+ - !ruby/object:Gem::Version
79
+ version: '3.0'
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: 3.0.1
83
+ type: :development
84
+ prerelease: false
85
+ version_requirements: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: 3.0.1
93
+ - !ruby/object:Gem::Dependency
94
+ name: webmock
95
+ requirement: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - "~>"
98
+ - !ruby/object:Gem::Version
99
+ version: '1.24'
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: 1.24.3
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '1.24'
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ version: 1.24.3
113
+ - !ruby/object:Gem::Dependency
114
+ name: autotest
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - "~>"
118
+ - !ruby/object:Gem::Version
119
+ version: '4.4'
120
+ - - ">="
121
+ - !ruby/object:Gem::Version
122
+ version: 4.4.6
123
+ type: :development
124
+ prerelease: false
125
+ version_requirements: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '4.4'
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: 4.4.6
133
+ - !ruby/object:Gem::Dependency
134
+ name: autotest-rails-pure
135
+ requirement: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '4.1'
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: 4.1.2
143
+ type: :development
144
+ prerelease: false
145
+ version_requirements: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - "~>"
148
+ - !ruby/object:Gem::Version
149
+ version: '4.1'
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: 4.1.2
153
+ - !ruby/object:Gem::Dependency
154
+ name: autotest-growl
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '0.2'
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: 0.2.16
163
+ type: :development
164
+ prerelease: false
165
+ version_requirements: !ruby/object:Gem::Requirement
166
+ requirements:
167
+ - - "~>"
168
+ - !ruby/object:Gem::Version
169
+ version: '0.2'
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: 0.2.16
173
+ - !ruby/object:Gem::Dependency
174
+ name: autotest-fsevent
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - "~>"
178
+ - !ruby/object:Gem::Version
179
+ version: '0.2'
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: 0.2.12
183
+ type: :development
184
+ prerelease: false
185
+ version_requirements: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - "~>"
188
+ - !ruby/object:Gem::Version
189
+ version: '0.2'
190
+ - - ">="
191
+ - !ruby/object:Gem::Version
192
+ version: 0.2.12
193
+ description: Welcome to the Intrinio API! Through our Financial Data Marketplace,
194
+ we offer a wide selection of financial data feed APIs sourced by our own proprietary
195
+ processes as well as from many data vendors. For a complete API request / response
196
+ reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2).
197
+ If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com)
198
+ and click on the chat icon in the lower right corner.
199
+ email:
200
+ - success@intrinio.com
201
+ executables: []
202
+ extensions: []
203
+ extra_rdoc_files: []
204
+ files:
205
+ - Gemfile
206
+ - README.md
207
+ - Rakefile
208
+ - docs/ApiResponseCompanies.md
209
+ - docs/ApiResponseCompanyFilings.md
210
+ - docs/ApiResponseCompanyFundamentals.md
211
+ - docs/ApiResponseCompanyHistoricalData.md
212
+ - docs/ApiResponseCompanyNews.md
213
+ - docs/ApiResponseCompanySecurities.md
214
+ - docs/ApiResponseDataTags.md
215
+ - docs/ApiResponseEconomicIndexHistoricalData.md
216
+ - docs/ApiResponseEconomicIndices.md
217
+ - docs/ApiResponseFilings.md
218
+ - docs/ApiResponseHistoricalData.md
219
+ - docs/ApiResponseNews.md
220
+ - docs/ApiResponseReportedFinancials.md
221
+ - docs/ApiResponseSICIndexHistoricalData.md
222
+ - docs/ApiResponseSICIndices.md
223
+ - docs/ApiResponseSecurities.md
224
+ - docs/ApiResponseSecurityHistoricalData.md
225
+ - docs/ApiResponseSecurityStockPriceAdjustments.md
226
+ - docs/ApiResponseSecurityStockPrices.md
227
+ - docs/ApiResponseStandardizedFinancials.md
228
+ - docs/ApiResponseStockExchangeSecurities.md
229
+ - docs/ApiResponseStockExchangeStockPriceAdjustments.md
230
+ - docs/ApiResponseStockExchangeStockPrices.md
231
+ - docs/ApiResponseStockExchanges.md
232
+ - docs/ApiResponseStockMarketIndexHistoricalData.md
233
+ - docs/ApiResponseStockMarketIndices.md
234
+ - docs/Company.md
235
+ - docs/CompanyApi.md
236
+ - docs/CompanyFiling.md
237
+ - docs/CompanyNews.md
238
+ - docs/CompanyNewsSummary.md
239
+ - docs/CompanySummary.md
240
+ - docs/DataPointApi.md
241
+ - docs/DataTag.md
242
+ - docs/DataTagApi.md
243
+ - docs/DataTagSummary.md
244
+ - docs/EconomicIndex.md
245
+ - docs/EconomicIndexSummary.md
246
+ - docs/Filing.md
247
+ - docs/FilingApi.md
248
+ - docs/FilingSummary.md
249
+ - docs/Fundamental.md
250
+ - docs/FundamentalSummary.md
251
+ - docs/FundamentalsApi.md
252
+ - docs/HistoricalData.md
253
+ - docs/HistoricalDataApi.md
254
+ - docs/IndexApi.md
255
+ - docs/ReportedFinancial.md
256
+ - docs/ReportedTag.md
257
+ - docs/SICIndex.md
258
+ - docs/Security.md
259
+ - docs/SecurityApi.md
260
+ - docs/SecurityScreenClause.md
261
+ - docs/SecurityScreenGroup.md
262
+ - docs/SecurityScreenResult.md
263
+ - docs/SecurityScreenResultData.md
264
+ - docs/SecuritySummary.md
265
+ - docs/StandardizedFinancial.md
266
+ - docs/StockExchange.md
267
+ - docs/StockExchangeApi.md
268
+ - docs/StockMarketIndex.md
269
+ - docs/StockMarketIndexSummary.md
270
+ - docs/StockPrice.md
271
+ - docs/StockPriceAdjustment.md
272
+ - docs/StockPriceAdjustmentSummary.md
273
+ - docs/StockPriceSummary.md
274
+ - git_push.sh
275
+ - intrinio-sdk.gemspec
276
+ - lib/intrinio-sdk.rb
277
+ - lib/intrinio-sdk/api/company_api.rb
278
+ - lib/intrinio-sdk/api/data_point_api.rb
279
+ - lib/intrinio-sdk/api/data_tag_api.rb
280
+ - lib/intrinio-sdk/api/filing_api.rb
281
+ - lib/intrinio-sdk/api/fundamentals_api.rb
282
+ - lib/intrinio-sdk/api/historical_data_api.rb
283
+ - lib/intrinio-sdk/api/index_api.rb
284
+ - lib/intrinio-sdk/api/security_api.rb
285
+ - lib/intrinio-sdk/api/stock_exchange_api.rb
286
+ - lib/intrinio-sdk/api_client.rb
287
+ - lib/intrinio-sdk/api_error.rb
288
+ - lib/intrinio-sdk/configuration.rb
289
+ - lib/intrinio-sdk/models/api_response_companies.rb
290
+ - lib/intrinio-sdk/models/api_response_company_filings.rb
291
+ - lib/intrinio-sdk/models/api_response_company_fundamentals.rb
292
+ - lib/intrinio-sdk/models/api_response_company_historical_data.rb
293
+ - lib/intrinio-sdk/models/api_response_company_news.rb
294
+ - lib/intrinio-sdk/models/api_response_company_securities.rb
295
+ - lib/intrinio-sdk/models/api_response_data_tags.rb
296
+ - lib/intrinio-sdk/models/api_response_economic_index_historical_data.rb
297
+ - lib/intrinio-sdk/models/api_response_economic_indices.rb
298
+ - lib/intrinio-sdk/models/api_response_filings.rb
299
+ - lib/intrinio-sdk/models/api_response_historical_data.rb
300
+ - lib/intrinio-sdk/models/api_response_news.rb
301
+ - lib/intrinio-sdk/models/api_response_reported_financials.rb
302
+ - lib/intrinio-sdk/models/api_response_securities.rb
303
+ - lib/intrinio-sdk/models/api_response_security_historical_data.rb
304
+ - lib/intrinio-sdk/models/api_response_security_stock_price_adjustments.rb
305
+ - lib/intrinio-sdk/models/api_response_security_stock_prices.rb
306
+ - lib/intrinio-sdk/models/api_response_sic_index_historical_data.rb
307
+ - lib/intrinio-sdk/models/api_response_sic_indices.rb
308
+ - lib/intrinio-sdk/models/api_response_standardized_financials.rb
309
+ - lib/intrinio-sdk/models/api_response_stock_exchange_securities.rb
310
+ - lib/intrinio-sdk/models/api_response_stock_exchange_stock_price_adjustments.rb
311
+ - lib/intrinio-sdk/models/api_response_stock_exchange_stock_prices.rb
312
+ - lib/intrinio-sdk/models/api_response_stock_exchanges.rb
313
+ - lib/intrinio-sdk/models/api_response_stock_market_index_historical_data.rb
314
+ - lib/intrinio-sdk/models/api_response_stock_market_indices.rb
315
+ - lib/intrinio-sdk/models/company.rb
316
+ - lib/intrinio-sdk/models/company_filing.rb
317
+ - lib/intrinio-sdk/models/company_news.rb
318
+ - lib/intrinio-sdk/models/company_news_summary.rb
319
+ - lib/intrinio-sdk/models/company_summary.rb
320
+ - lib/intrinio-sdk/models/data_tag.rb
321
+ - lib/intrinio-sdk/models/data_tag_summary.rb
322
+ - lib/intrinio-sdk/models/economic_index.rb
323
+ - lib/intrinio-sdk/models/economic_index_summary.rb
324
+ - lib/intrinio-sdk/models/filing.rb
325
+ - lib/intrinio-sdk/models/filing_summary.rb
326
+ - lib/intrinio-sdk/models/fundamental.rb
327
+ - lib/intrinio-sdk/models/fundamental_summary.rb
328
+ - lib/intrinio-sdk/models/historical_data.rb
329
+ - lib/intrinio-sdk/models/reported_financial.rb
330
+ - lib/intrinio-sdk/models/reported_tag.rb
331
+ - lib/intrinio-sdk/models/security.rb
332
+ - lib/intrinio-sdk/models/security_screen_clause.rb
333
+ - lib/intrinio-sdk/models/security_screen_group.rb
334
+ - lib/intrinio-sdk/models/security_screen_result.rb
335
+ - lib/intrinio-sdk/models/security_screen_result_data.rb
336
+ - lib/intrinio-sdk/models/security_summary.rb
337
+ - lib/intrinio-sdk/models/sic_index.rb
338
+ - lib/intrinio-sdk/models/standardized_financial.rb
339
+ - lib/intrinio-sdk/models/stock_exchange.rb
340
+ - lib/intrinio-sdk/models/stock_market_index.rb
341
+ - lib/intrinio-sdk/models/stock_market_index_summary.rb
342
+ - lib/intrinio-sdk/models/stock_price.rb
343
+ - lib/intrinio-sdk/models/stock_price_adjustment.rb
344
+ - lib/intrinio-sdk/models/stock_price_adjustment_summary.rb
345
+ - lib/intrinio-sdk/models/stock_price_summary.rb
346
+ - lib/intrinio-sdk/version.rb
347
+ - spec/api/company_api_spec.rb
348
+ - spec/api/data_point_api_spec.rb
349
+ - spec/api/data_tag_api_spec.rb
350
+ - spec/api/filing_api_spec.rb
351
+ - spec/api/fundamentals_api_spec.rb
352
+ - spec/api/historical_data_api_spec.rb
353
+ - spec/api/index_api_spec.rb
354
+ - spec/api/security_api_spec.rb
355
+ - spec/api/stock_exchange_api_spec.rb
356
+ - spec/api_client_spec.rb
357
+ - spec/configuration_spec.rb
358
+ - spec/models/api_response_companies_spec.rb
359
+ - spec/models/api_response_company_filings_spec.rb
360
+ - spec/models/api_response_company_fundamentals_spec.rb
361
+ - spec/models/api_response_company_historical_data_spec.rb
362
+ - spec/models/api_response_company_news_spec.rb
363
+ - spec/models/api_response_company_securities_spec.rb
364
+ - spec/models/api_response_data_tags_spec.rb
365
+ - spec/models/api_response_economic_index_historical_data_spec.rb
366
+ - spec/models/api_response_economic_indices_spec.rb
367
+ - spec/models/api_response_filings_spec.rb
368
+ - spec/models/api_response_historical_data_spec.rb
369
+ - spec/models/api_response_news_spec.rb
370
+ - spec/models/api_response_reported_financials_spec.rb
371
+ - spec/models/api_response_securities_spec.rb
372
+ - spec/models/api_response_security_historical_data_spec.rb
373
+ - spec/models/api_response_security_stock_price_adjustments_spec.rb
374
+ - spec/models/api_response_security_stock_prices_spec.rb
375
+ - spec/models/api_response_sic_index_historical_data_spec.rb
376
+ - spec/models/api_response_sic_indices_spec.rb
377
+ - spec/models/api_response_standardized_financials_spec.rb
378
+ - spec/models/api_response_stock_exchange_securities_spec.rb
379
+ - spec/models/api_response_stock_exchange_stock_price_adjustments_spec.rb
380
+ - spec/models/api_response_stock_exchange_stock_prices_spec.rb
381
+ - spec/models/api_response_stock_exchanges_spec.rb
382
+ - spec/models/api_response_stock_market_index_historical_data_spec.rb
383
+ - spec/models/api_response_stock_market_indices_spec.rb
384
+ - spec/models/company_filing_spec.rb
385
+ - spec/models/company_news_spec.rb
386
+ - spec/models/company_news_summary_spec.rb
387
+ - spec/models/company_spec.rb
388
+ - spec/models/company_summary_spec.rb
389
+ - spec/models/data_tag_spec.rb
390
+ - spec/models/data_tag_summary_spec.rb
391
+ - spec/models/economic_index_spec.rb
392
+ - spec/models/economic_index_summary_spec.rb
393
+ - spec/models/filing_spec.rb
394
+ - spec/models/filing_summary_spec.rb
395
+ - spec/models/fundamental_spec.rb
396
+ - spec/models/fundamental_summary_spec.rb
397
+ - spec/models/historical_data_spec.rb
398
+ - spec/models/reported_financial_spec.rb
399
+ - spec/models/reported_tag_spec.rb
400
+ - spec/models/security_screen_clause_spec.rb
401
+ - spec/models/security_screen_group_spec.rb
402
+ - spec/models/security_screen_result_data_spec.rb
403
+ - spec/models/security_screen_result_spec.rb
404
+ - spec/models/security_spec.rb
405
+ - spec/models/security_summary_spec.rb
406
+ - spec/models/sic_index_spec.rb
407
+ - spec/models/standardized_financial_spec.rb
408
+ - spec/models/stock_exchange_spec.rb
409
+ - spec/models/stock_market_index_spec.rb
410
+ - spec/models/stock_market_index_summary_spec.rb
411
+ - spec/models/stock_price_adjustment_spec.rb
412
+ - spec/models/stock_price_adjustment_summary_spec.rb
413
+ - spec/models/stock_price_spec.rb
414
+ - spec/models/stock_price_summary_spec.rb
415
+ - spec/spec_helper.rb
416
+ homepage: https://github.com/intrinio/ruby-sdk
417
+ licenses:
418
+ - GPL-3.0
419
+ metadata: {}
420
+ post_install_message:
421
+ rdoc_options: []
422
+ require_paths:
423
+ - lib
424
+ required_ruby_version: !ruby/object:Gem::Requirement
425
+ requirements:
426
+ - - ">="
427
+ - !ruby/object:Gem::Version
428
+ version: '1.9'
429
+ required_rubygems_version: !ruby/object:Gem::Requirement
430
+ requirements:
431
+ - - ">="
432
+ - !ruby/object:Gem::Version
433
+ version: '0'
434
+ requirements: []
435
+ rubyforge_project:
436
+ rubygems_version: 2.5.2.2
437
+ signing_key:
438
+ specification_version: 4
439
+ summary: Access the Intrinio API
440
+ test_files:
441
+ - spec/api/data_tag_api_spec.rb
442
+ - spec/api/fundamentals_api_spec.rb
443
+ - spec/api/company_api_spec.rb
444
+ - spec/api/stock_exchange_api_spec.rb
445
+ - spec/api/security_api_spec.rb
446
+ - spec/api/filing_api_spec.rb
447
+ - spec/api/data_point_api_spec.rb
448
+ - spec/api/index_api_spec.rb
449
+ - spec/api/historical_data_api_spec.rb
450
+ - spec/api_client_spec.rb
451
+ - spec/configuration_spec.rb
452
+ - spec/models/api_response_economic_indices_spec.rb
453
+ - spec/models/filing_spec.rb
454
+ - spec/models/api_response_filings_spec.rb
455
+ - spec/models/stock_market_index_spec.rb
456
+ - spec/models/security_screen_result_spec.rb
457
+ - spec/models/fundamental_spec.rb
458
+ - spec/models/security_screen_result_data_spec.rb
459
+ - spec/models/security_screen_group_spec.rb
460
+ - spec/models/api_response_sic_index_historical_data_spec.rb
461
+ - spec/models/economic_index_summary_spec.rb
462
+ - spec/models/filing_summary_spec.rb
463
+ - spec/models/company_summary_spec.rb
464
+ - spec/models/api_response_sic_indices_spec.rb
465
+ - spec/models/reported_financial_spec.rb
466
+ - spec/models/api_response_company_fundamentals_spec.rb
467
+ - spec/models/company_spec.rb
468
+ - spec/models/api_response_stock_market_indices_spec.rb
469
+ - spec/models/api_response_data_tags_spec.rb
470
+ - spec/models/api_response_historical_data_spec.rb
471
+ - spec/models/api_response_securities_spec.rb
472
+ - spec/models/stock_price_summary_spec.rb
473
+ - spec/models/stock_price_spec.rb
474
+ - spec/models/stock_market_index_summary_spec.rb
475
+ - spec/models/reported_tag_spec.rb
476
+ - spec/models/api_response_stock_exchange_stock_prices_spec.rb
477
+ - spec/models/sic_index_spec.rb
478
+ - spec/models/company_news_spec.rb
479
+ - spec/models/api_response_stock_exchange_stock_price_adjustments_spec.rb
480
+ - spec/models/economic_index_spec.rb
481
+ - spec/models/api_response_company_historical_data_spec.rb
482
+ - spec/models/company_filing_spec.rb
483
+ - spec/models/api_response_security_stock_prices_spec.rb
484
+ - spec/models/api_response_companies_spec.rb
485
+ - spec/models/historical_data_spec.rb
486
+ - spec/models/api_response_stock_market_index_historical_data_spec.rb
487
+ - spec/models/standardized_financial_spec.rb
488
+ - spec/models/fundamental_summary_spec.rb
489
+ - spec/models/stock_price_adjustment_summary_spec.rb
490
+ - spec/models/company_news_summary_spec.rb
491
+ - spec/models/api_response_standardized_financials_spec.rb
492
+ - spec/models/api_response_security_stock_price_adjustments_spec.rb
493
+ - spec/models/api_response_economic_index_historical_data_spec.rb
494
+ - spec/models/security_summary_spec.rb
495
+ - spec/models/data_tag_summary_spec.rb
496
+ - spec/models/api_response_stock_exchange_securities_spec.rb
497
+ - spec/models/api_response_company_news_spec.rb
498
+ - spec/models/security_spec.rb
499
+ - spec/models/stock_price_adjustment_spec.rb
500
+ - spec/models/data_tag_spec.rb
501
+ - spec/models/api_response_security_historical_data_spec.rb
502
+ - spec/models/api_response_company_securities_spec.rb
503
+ - spec/models/api_response_company_filings_spec.rb
504
+ - spec/models/security_screen_clause_spec.rb
505
+ - spec/models/api_response_news_spec.rb
506
+ - spec/models/api_response_reported_financials_spec.rb
507
+ - spec/models/stock_exchange_spec.rb
508
+ - spec/models/api_response_stock_exchanges_spec.rb
509
+ - spec/spec_helper.rb