thirteen_f 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6e093431c9735d54ad5dfcfcf9f7a6a0b05dfbb91e3a3ef7ea3b52967907de11
4
- data.tar.gz: d0abf210d710d1bf5876291d6d976ce388cf68597a2729020d602de9db96b8ce
3
+ metadata.gz: 85b773091adc251303e4acb8b07239b42a2c99984a94d7c541f838c37eaacb79
4
+ data.tar.gz: aea7834cfc3c0c0194cbd8eedcc9ae6ba6f564d60f4360a8e29bea4cd2f73d26
5
5
  SHA512:
6
- metadata.gz: ed391b2b422b3254814334d29b83af10f5e47cbe0f4ca73726cdb5fad2987a571cd32f19f8ea8360515867fcd8f33f55fb8437a4346119c3ec7182d5dbf0d996
7
- data.tar.gz: be535e2cc291eb3fe56ccaeb9c987f8925f19b34572b5206614b441876351544d7398abfe5784d009f79f71462ba501e52c7d5b004b8843043a8122c61aa8852
6
+ metadata.gz: ea5c9d380b2606b32c2efd9d3a3ed6cc5b452e03e7f6e74dd5075132d594326bd83ba6ca672cb393172446ecea23d8b3b6b1128106c6b99b36119d9a4ce154c8
7
+ data.tar.gz: 7da64251c953225cbb0c32b32c1d87496c848bdf896ad3ddbe67579c7f21d419502d29548da4e22231357478c2660805e66ec6dc92445e1ba3c9355c6bcffde3
data/Gemfile CHANGED
@@ -3,5 +3,3 @@ source "https://rubygems.org"
3
3
  # Specify your gem's dependencies in thirteen_f.gemspec
4
4
  gemspec
5
5
 
6
- gem "rake", "~> 12.0"
7
- gem "minitest", "~> 5.0"
data/README.md CHANGED
@@ -116,10 +116,10 @@ git commits and tags, and push the `.gem` file to
116
116
  ## Contributing
117
117
 
118
118
  Bug reports and pull requests are welcome on GitHub at
119
- https://github.com/fordfischer/thirteen_f. This project is intended to be a safe,
119
+ https://github.com/savfischer/thirteen_f. This project is intended to be a safe,
120
120
  welcoming space for collaboration, and contributors are expected to adhere to
121
121
  the [code of
122
- conduct](https://github.com/fordfischer/thirteen_f/blob/master/CODE_OF_CONDUCT.md).
122
+ conduct](https://github.com/savfischer/thirteen_f/blob/master/CODE_OF_CONDUCT.md).
123
123
 
124
124
 
125
125
  ## License
@@ -131,4 +131,4 @@ License](https://opensource.org/licenses/MIT).
131
131
 
132
132
  Everyone interacting in the ThirteenF project's codebases, issue trackers, chat
133
133
  rooms and mailing lists is expected to follow the [code of
134
- conduct](https://github.com/fordfischer/thirteen_f/blob/master/CODE_OF_CONDUCT.md).
134
+ conduct](https://github.com/savfischer/thirteen_f/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,3 @@
1
1
  class ThirteenF
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
data/thirteen_f.gemspec CHANGED
@@ -3,8 +3,8 @@ require_relative 'lib/thirteen_f/version'
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "thirteen_f"
5
5
  spec.version = ThirteenF::VERSION
6
- spec.authors = ["fordfischer"]
7
- spec.email = ["fordfischer07@gmail.com"]
6
+ spec.authors = ["savfischer"]
7
+ spec.email = ["savannah.fischer@hey.com"]
8
8
 
9
9
  spec.summary = %q{A ruby interface for S.E.C. 13F Data.}
10
10
 
@@ -13,13 +13,13 @@ Gem::Specification.new do |spec|
13
13
  filings are disclosures large institutional investors in public securites have
14
14
  to provide and make public every quarter. It is a great way to follow what
15
15
  different investors have been doing.}
16
- spec.homepage = "https://github.com/fordfischer/thirteen_f"
16
+ spec.homepage = "https://github.com/savfischer/thirteen_f"
17
17
  spec.license = "MIT"
18
- spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
18
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
19
19
 
20
20
  spec.metadata["homepage_uri"] = spec.homepage
21
- spec.metadata["source_code_uri"] = "https://github.com/fordfischer/thirteen_f"
22
- spec.metadata["changelog_uri"] = "https://github.com/fordfischer/thirteen_f/commits/master"
21
+ spec.metadata["source_code_uri"] = "https://github.com/savfischer/thirteen_f"
22
+ spec.metadata["changelog_uri"] = "https://github.com/savfischer/thirteen_f/commits/master"
23
23
 
24
24
  # Specify which files should be added to the gem when it is released.
25
25
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
32
32
 
33
33
  spec.add_development_dependency "minitest"
34
34
  spec.add_development_dependency "pry"
35
- spec.add_dependency "http", ">= 4.4"
35
+ spec.add_dependency "http", ">= 5"
36
36
  spec.add_dependency "nokogiri"
37
37
  spec.add_dependency "pdf-reader"
38
38
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thirteen_f
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
- - fordfischer
8
- autorequire:
7
+ - savfischer
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-01 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '4.4'
47
+ version: '5'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '4.4'
54
+ version: '5'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: nokogiri
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -87,7 +87,7 @@ description: |-
87
87
  to provide and make public every quarter. It is a great way to follow what
88
88
  different investors have been doing.
89
89
  email:
90
- - fordfischer07@gmail.com
90
+ - savannah.fischer@hey.com
91
91
  executables: []
92
92
  extensions: []
93
93
  extra_rdoc_files: []
@@ -111,14 +111,14 @@ files:
111
111
  - lib/thirteen_f/search.rb
112
112
  - lib/thirteen_f/version.rb
113
113
  - thirteen_f.gemspec
114
- homepage: https://github.com/fordfischer/thirteen_f
114
+ homepage: https://github.com/savfischer/thirteen_f
115
115
  licenses:
116
116
  - MIT
117
117
  metadata:
118
- homepage_uri: https://github.com/fordfischer/thirteen_f
119
- source_code_uri: https://github.com/fordfischer/thirteen_f
120
- changelog_uri: https://github.com/fordfischer/thirteen_f/commits/master
121
- post_install_message:
118
+ homepage_uri: https://github.com/savfischer/thirteen_f
119
+ source_code_uri: https://github.com/savfischer/thirteen_f
120
+ changelog_uri: https://github.com/savfischer/thirteen_f/commits/master
121
+ post_install_message:
122
122
  rdoc_options: []
123
123
  require_paths:
124
124
  - lib
@@ -126,15 +126,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
126
126
  requirements:
127
127
  - - ">="
128
128
  - !ruby/object:Gem::Version
129
- version: 2.5.0
129
+ version: 2.6.0
130
130
  required_rubygems_version: !ruby/object:Gem::Requirement
131
131
  requirements:
132
132
  - - ">="
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  requirements: []
136
- rubygems_version: 3.1.2
137
- signing_key:
136
+ rubygems_version: 3.1.4
137
+ signing_key:
138
138
  specification_version: 4
139
139
  summary: A ruby interface for S.E.C. 13F Data.
140
140
  test_files: []