tip_ranks_forecast 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a850cdb18eae5fb21a1248204242fd3a691a541c02deddde32004b028d3a2de4
4
- data.tar.gz: 1837cde47dbe0aa21cf6f63bf00d97652126e7ab3e2ff542ee63a861a7b15b06
3
+ metadata.gz: 38bb10d9f94cda81f98ec25c1b7ad9dd6824c1511d81e05a6cb327d1c7d4f7f3
4
+ data.tar.gz: 29f935e8a19b48d254813f0d2af8d218c05e475d4e2c6f9e8eee413709554523
5
5
  SHA512:
6
- metadata.gz: a6fab52ad0e8f84b7675bce6748ad43d498daf6e9ce1222341181af417e637820321deff55b7debc93d78d221789485c8d71194c05a4e665f68800d60c395e6e
7
- data.tar.gz: 4da125358c27857cbc6ca9de092fe327dc22d51785aa4cd262bb3d472f77a0ee16ecffdb9ec79a34459712b180397d427061913e78a8f1542f8402af6d00354e
6
+ metadata.gz: 0aa6a56c099f7c1f7fbf7f8c6e4529bbbe54cfe7d752129ea4cd58589f0d5402dfa55ecea05f17cb6b227ff64d53b285da519ac0f54d9c3061c5c5c649e2ac89
7
+ data.tar.gz: 8a5d0994b358f3571ca13887006a82a1d29de180856d751e5f91cc72a5fcbfa476a21a1cb369bf0f0ce15d5b378ab68c81347e7319c11e16555e7eedbf7fcca7
data/.gitignore CHANGED
@@ -11,3 +11,4 @@
11
11
  .rspec_status
12
12
 
13
13
  Gemfile.lock
14
+ tip_ranks_forecast-0.1.0.gem
data/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # TipRanksForecast
2
2
 
3
- TipRanksForecast queries TipRanks for a stock's price target and Wall Street analyst consensus. This is only intended only personal/hobby use, as it is probably not a stable solution longterm. It is not advised to use this in a production or critical system.
3
+ TipRanksForecast queries TipRanks for a stock's price target and Wall Street analyst consensus. This is only intended for personal/hobby use, as it is probably not a long-term stable solution. It is not advised to use this in a production or critical system.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
9
  ```ruby
10
- gem 'tip_ranks_forecast', github: 'joeadcock/tip_ranks_forecast'
10
+ gem 'tip_ranks_forecast'
11
11
  ```
12
12
 
13
13
  And then execute:
@@ -16,8 +16,7 @@ And then execute:
16
16
 
17
17
  Or install it yourself as:
18
18
 
19
- $ gem install specific_install
20
- $ gem specific_install https://github.com/joeadcock/tip_ranks_forecast.git
19
+ $ gem install tip_ranks_forecast
21
20
 
22
21
  ## Usage
23
22
  NOTE: all prices are in cents
@@ -49,7 +48,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
49
48
 
50
49
  ## Contributing
51
50
 
52
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/tip_ranks_forecast. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/tip_ranks_forecast/blob/master/CODE_OF_CONDUCT.md).
51
+ Bug reports and pull requests are welcome on GitHub at https://github.com/joeadcock/tip_ranks_forecast. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/joeadcock/tip_ranks_forecast/blob/master/CODE_OF_CONDUCT.md).
53
52
 
54
53
 
55
54
  ## License
@@ -58,4 +57,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
58
57
 
59
58
  ## Code of Conduct
60
59
 
61
- Everyone interacting in the TipRanksForecast project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/tip_ranks_forecast/blob/master/CODE_OF_CONDUCT.md).
60
+ Everyone interacting in the TipRanksForecast project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/joeadcock/tip_ranks_forecast/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module TipRanksForecast
2
- VERSION = "0.1.0"
4
+ VERSION = '0.1.1'
3
5
  end
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ["lib"]
26
26
 
27
- spec.add_development_dependency("nokogiri", "~> 1.0")
27
+ spec.add_runtime_dependency("nokogiri", "~> 1.0")
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tip_ranks_forecast
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - joe adcock
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-28 00:00:00.000000000 Z
11
+ date: 2021-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -17,7 +17,7 @@ dependencies:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
- type: :development
20
+ type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements: