latest_stock_price 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -2
- data/latest_stock_price.gemspec +10 -9
- data/lib/{latest_stock_price/latest_stock_price.rb → latest_stock_price.rb} +1 -1
- metadata +9 -9
- /data/lib/{latest_stock_price/http_client.rb → http_client.rb} +0 -0
- /data/lib/{latest_stock_price/price.rb → price.rb} +0 -0
- /data/lib/{latest_stock_price/price_all.rb → price_all.rb} +0 -0
- /data/lib/{latest_stock_price/prices.rb → prices.rb} +0 -0
- /data/lib/{latest_stock_price/version.rb → version.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 778aa58d46b698c7ab1c11decce31b6f2689f452f020de2af52ffab4db1f84a4
|
4
|
+
data.tar.gz: 5db44299e9edc950fb50b47811b1a547245689335e52e2e5c92caa4af9402da8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed3f4a9ff4eb85af61610f104c1cb0b6e03f478fc5617e3b2e3f8be6a04544c322dd11dcfca2c7b16a37e45143e9ad55c5dad3c3638b296d7a085e0c40117fc4
|
7
|
+
data.tar.gz: 83a87189ae8f73ab38792d3eff836f38842ace39740d596402e47c78a0ce50d8b9c2513144fda955a4f047db3bd94a6306bc86c981db88ebfd4965068ce55f4c
|
data/CHANGELOG.md
CHANGED
data/latest_stock_price.gemspec
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "latest_stock_price"
|
3
|
-
s.version = "1.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
|
-
|
12
|
-
|
13
|
-
"lib/latest_stock_price
|
14
|
-
"lib/
|
15
|
-
"lib/
|
16
|
-
"lib/
|
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",
|
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.
|
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
|
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/
|
109
|
-
- lib/latest_stock_price
|
110
|
-
- lib/
|
111
|
-
- lib/
|
112
|
-
- lib/
|
113
|
-
- lib/
|
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
|
File without changes
|
File without changes
|