sec_query 1.0.1 → 1.0.2

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.
data/README.md CHANGED
@@ -22,8 +22,6 @@ If running 'sec_query' from the command prompt in irb:
22
22
 
23
23
  `require "sec_query"`
24
24
 
25
- `include SecQuery`
26
-
27
25
  ## Functionality
28
26
 
29
27
  ### FIND COMPANY:
@@ -114,6 +114,7 @@ module SecQuery
114
114
  end
115
115
  else
116
116
  cik = data.inner_text.scan(/\(([^)]+)\)/).to_s
117
+ cik = cik.gsub('[["', '').gsub('"]]','')
117
118
  return cik
118
119
  end
119
120
  end
@@ -1,3 +1,3 @@
1
1
  module SecQuery
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sec_query
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 1
10
- version: 1.0.1
9
+ - 2
10
+ version: 1.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ty Rauber
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-12-04 00:00:00 -08:00
18
+ date: 2012-01-13 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -82,6 +82,8 @@ files:
82
82
  - lib/sec_query/relationship.rb
83
83
  - lib/sec_query/transaction.rb
84
84
  - lib/sec_query/version.rb
85
+ - pkg/sec_query-1.0.1.gem
86
+ - sec_query-1.0.2.gem
85
87
  - sec_query.gemspec
86
88
  - spec/sec_query_spec.rb
87
89
  - spec/spec_helper.rb