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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43df70e8b35697aef667f0b7651b530ab1018fbe1f864dc912ff8b178424f9d4
4
- data.tar.gz: 319505b749cd831941cbd34092d4f36f198c91e6bc1c967eead11f78058b43e8
3
+ metadata.gz: 7743fcccfdcb5290baf52086b06d20d0877f81a49e332988a745e9a76ede3223
4
+ data.tar.gz: d8abde69d146cab6bc55f4122b52d0017ad6b9d8c073bab6872b03b1b1651aca
5
5
  SHA512:
6
- metadata.gz: de00322a33a340b8eca2f0c5920ada94175b6d19532f2711f78e793eaf135690e47cc05d7a7ce66678ca6780f884f7e2afefea920a8a6cde140062af3c6330d2
7
- data.tar.gz: b5eddcc50ae0a84f1acf99b62b9f4508f0d3f855167c0386ea7b35d80d8e5d734e70b68646ef26d5635374d44450711cfed4cdd856446b57911729094d61471c
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
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WebScrapingHw3
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -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 = "web_scraping_hw3"
7
- spec.version = WebScrapingHw3::VERSION
8
- spec.authors = ["Vichisorn"]
9
- spec.email = ["james31366@gmail.com"]
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 = "Web Scraping for Set website"
12
- spec.description = "This gem is web scraping from assignment 2 in Soft spec design lab"
13
- spec.homepage = "https://github.com/james31366/Web-Scraping-HW3-SSD"
14
- spec.license = "MIT"
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 = "exe"
27
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
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.0
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: []