sec_query 1.0.6 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +59 -0
- data/lib/sec_query/filing.rb +57 -2
- data/lib/sec_query/sec_uri.rb +23 -0
- data/lib/sec_query/version.rb +1 -1
- data/lib/sec_query.rb +1 -0
- data/sec_query.gemspec +1 -1
- data/spec/sec_query/filing_spec.rb +62 -4
- data/spec/sec_query/sec_uri_spec.rb +12 -0
- data/spec/support/filings/filing.txt +257 -0
- data/spec/support/idx/test.idx +4639 -0
- metadata +8 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sec_query
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ty Rauber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -73,7 +73,7 @@ dependencies:
|
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '2.3'
|
76
|
-
type: :
|
76
|
+
type: :runtime
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
@@ -118,6 +118,7 @@ extra_rdoc_files: []
|
|
118
118
|
files:
|
119
119
|
- ".gitignore"
|
120
120
|
- Gemfile
|
121
|
+
- Gemfile.lock
|
121
122
|
- README.md
|
122
123
|
- Rakefile
|
123
124
|
- lib/sec_query.rb
|
@@ -133,6 +134,8 @@ files:
|
|
133
134
|
- spec/sec_query/sec_uri_spec.rb
|
134
135
|
- spec/sec_query/transaction_spec.rb
|
135
136
|
- spec/spec_helper.rb
|
137
|
+
- spec/support/filings/filing.txt
|
138
|
+
- spec/support/idx/test.idx
|
136
139
|
- spec/support/vcr.rb
|
137
140
|
homepage: https://github.com/tyrauber/sec_query
|
138
141
|
licenses:
|
@@ -165,4 +168,6 @@ test_files:
|
|
165
168
|
- spec/sec_query/sec_uri_spec.rb
|
166
169
|
- spec/sec_query/transaction_spec.rb
|
167
170
|
- spec/spec_helper.rb
|
171
|
+
- spec/support/filings/filing.txt
|
172
|
+
- spec/support/idx/test.idx
|
168
173
|
- spec/support/vcr.rb
|