latest_stock_price 1.0.0 → 1.0.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: 11ef6cb80025100502c4e7cf4468d2abeb1f02b316379c3cfab301081d9e2827
4
- data.tar.gz: 880467c51f47fe8c3e7513b9cb2fc176cf6b970098d97f430f78ffafd8a28ae5
3
+ metadata.gz: 778aa58d46b698c7ab1c11decce31b6f2689f452f020de2af52ffab4db1f84a4
4
+ data.tar.gz: 5db44299e9edc950fb50b47811b1a547245689335e52e2e5c92caa4af9402da8
5
5
  SHA512:
6
- metadata.gz: 0ddd2e01ca5bc5cf271128cf9e0f205a4a3d263a229b5e5d82c6e977055dae96c2f189fcd4c7d83314f590843dab0a07976cf7e148f6677a6f5da15a401a28ef
7
- data.tar.gz: 216e1866cd66a4706f3b0bdb58a0294852cba085d404df91ab41e07ea943c2fb2e25ad37ffe55bde52b92e2882c2b7728d141665e7e38aaa707cd3a74c12bc54
6
+ metadata.gz: ed3f4a9ff4eb85af61610f104c1cb0b6e03f478fc5617e3b2e3f8be6a04544c322dd11dcfca2c7b16a37e45143e9ad55c5dad3c3638b296d7a085e0c40117fc4
7
+ data.tar.gz: 83a87189ae8f73ab38792d3eff836f38842ace39740d596402e47c78a0ce50d8b9c2513144fda955a4f047db3bd94a6306bc86c981db88ebfd4965068ce55f4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
- ## 1.0.0 (21-Oct-20)
3
+ ## 1.0.0 (21-Oct-24)
4
4
 
5
- * First Release
5
+ * First Release
6
+
7
+ ## 1.0.1 (29-Oct-24)
8
+
9
+ * Fix Folder structure
@@ -1,19 +1,20 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "latest_stock_price"
3
- s.version = "1.0.0"
3
+ s.version = "1.0.1"
4
4
  s.summary = "Latest stock price"
5
- s.description = "A simple hello world gem"
6
5
  s.authors = ["Ciever Hassan"]
6
+ s.description = "A gem for displaying the latest stock price."
7
7
  s.email = "ciever.a.h@hotmail.com"
8
8
  s.homepage = "https://github.com/ciever/latest_stock_price"
9
9
  s.license = "MIT"
10
-
11
- s.files = ["lib/latest_stock_price/http_client.rb",
12
- "lib/latest_stock_price/latest_stock_price.rb",
13
- "lib/latest_stock_price/price_all.rb",
14
- "lib/latest_stock_price/price.rb",
15
- "lib/latest_stock_price/prices.rb",
16
- "lib/latest_stock_price/version.rb",
10
+ s.required_ruby_version = '>= 3.0'
11
+
12
+ s.files = ["lib/http_client.rb",
13
+ "lib/latest_stock_price.rb",
14
+ "lib/price_all.rb",
15
+ "lib/price.rb",
16
+ "lib/prices.rb",
17
+ "lib/version.rb",
17
18
  "spec/http_client_spec.rb",
18
19
  "spec/price_all_spec.rb",
19
20
  "spec/price_spec.rb",
@@ -1,5 +1,5 @@
1
1
  require 'dotenv/load'
2
- require 'debug'
2
+
3
3
  require_relative "http_client"
4
4
  require_relative "version"
5
5
  require_relative "price"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: latest_stock_price
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ciever Hassan
@@ -94,7 +94,7 @@ dependencies:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
96
  version: '1.8'
97
- description: A simple hello world gem
97
+ description: A gem for displaying the latest stock price.
98
98
  email: ciever.a.h@hotmail.com
99
99
  executables: []
100
100
  extensions: []
@@ -105,12 +105,12 @@ files:
105
105
  - Gemfile
106
106
  - README.md
107
107
  - latest_stock_price.gemspec
108
- - lib/latest_stock_price/http_client.rb
109
- - lib/latest_stock_price/latest_stock_price.rb
110
- - lib/latest_stock_price/price.rb
111
- - lib/latest_stock_price/price_all.rb
112
- - lib/latest_stock_price/prices.rb
113
- - lib/latest_stock_price/version.rb
108
+ - lib/http_client.rb
109
+ - lib/latest_stock_price.rb
110
+ - lib/price.rb
111
+ - lib/price_all.rb
112
+ - lib/prices.rb
113
+ - lib/version.rb
114
114
  - sample.env
115
115
  - spec/http_client_spec.rb
116
116
  - spec/price_all_spec.rb
@@ -129,7 +129,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
129
129
  requirements:
130
130
  - - ">="
131
131
  - !ruby/object:Gem::Version
132
- version: '0'
132
+ version: '3.0'
133
133
  required_rubygems_version: !ruby/object:Gem::Requirement
134
134
  requirements:
135
135
  - - ">="
File without changes
File without changes
File without changes