web_scraping_hw3 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 +4 -4
- data/CHANGELOG.md +13 -3
- data/lib/web_scraping_hw3/version.rb +1 -1
- data/web_scraping_hw3.gemspec +11 -10
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7743fcccfdcb5290baf52086b06d20d0877f81a49e332988a745e9a76ede3223
|
4
|
+
data.tar.gz: d8abde69d146cab6bc55f4122b52d0017ad6b9d8c073bab6872b03b1b1651aca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46027922d9b6111c8bf522da2362db15a9da055a105bebc12542b8f5415182e8b3c0f48fc77dfb570406f3b083053c5b3cfd5174c513570ec286aaeadb41362a
|
7
|
+
data.tar.gz: bca3567cad0b8aa66da5210a589fedbafbf3b52a0cd0218fd7244776b4bd3c6bdd150eb778e9cf58d22ede36103bd0f10b0d68de4076c76ec95f0653ddbdb09b
|
data/CHANGELOG.md
CHANGED
@@ -1,11 +1,21 @@
|
|
1
1
|
# Changelog
|
2
|
+
|
2
3
|
All notable changes to this project will be documented in this file.
|
3
4
|
|
4
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
|
-
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
|
6
|
+
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
|
+
|
8
|
+
## [0.1.0] - 2021-02-04
|
6
9
|
|
7
|
-
## [0.1.0] - 2017-06-20
|
8
10
|
### Added
|
9
11
|
|
10
12
|
- Add the scraping for all list of corporation
|
11
13
|
- Scrape only the Asset of each corporations
|
14
|
+
|
15
|
+
## [0.1.1] - 2021-02-04
|
16
|
+
|
17
|
+
### Changed
|
18
|
+
|
19
|
+
- Changed the date in CHANGELOG.md to published date.
|
20
|
+
- Add some information of the gem description.
|
21
|
+
- Add surname in author.
|
data/web_scraping_hw3.gemspec
CHANGED
@@ -3,15 +3,16 @@
|
|
3
3
|
require_relative "lib/web_scraping_hw3/version"
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
|
-
spec.name
|
7
|
-
spec.version
|
8
|
-
spec.authors
|
9
|
-
spec.email
|
6
|
+
spec.name = "web_scraping_hw3"
|
7
|
+
spec.version = WebScrapingHw3::VERSION
|
8
|
+
spec.authors = ["Vichisorn Wejsupakul"]
|
9
|
+
spec.email = ["james31366@gmail.com"]
|
10
10
|
|
11
|
-
spec.summary
|
12
|
-
spec.description
|
13
|
-
|
14
|
-
spec.
|
11
|
+
spec.summary = "Web Scraping for Set website"
|
12
|
+
spec.description = "This gem is web scraping from assignment 2 in Soft spec design lab."\
|
13
|
+
"This gem is created by 6210546013 Vichisorn Wejsupakul"
|
14
|
+
spec.homepage = "https://github.com/james31366/Web-Scraping-HW3-SSD"
|
15
|
+
spec.license = "MIT"
|
15
16
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")
|
16
17
|
|
17
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
@@ -23,8 +24,8 @@ Gem::Specification.new do |spec|
|
|
23
24
|
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
24
25
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
25
26
|
end
|
26
|
-
spec.bindir
|
27
|
-
spec.executables
|
27
|
+
spec.bindir = "exe"
|
28
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
28
29
|
spec.require_paths = ["lib"]
|
29
30
|
|
30
31
|
# Dependency gem
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: web_scraping_hw3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Vichisorn
|
7
|
+
- Vichisorn Wejsupakul
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
@@ -38,7 +38,8 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: 1.11.1
|
41
|
-
description: This gem is web scraping from assignment 2 in Soft spec design lab
|
41
|
+
description: This gem is web scraping from assignment 2 in Soft spec design lab.This
|
42
|
+
gem is created by 6210546013 Vichisorn Wejsupakul
|
42
43
|
email:
|
43
44
|
- james31366@gmail.com
|
44
45
|
executables: []
|