html-hierarchy-extractor 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d78e25992e261f127a8eced889d1e69299ca1e25
4
- data.tar.gz: 17f14590068badca5030a219be8b24b3066bebf2
3
+ metadata.gz: 90e26530c9a5d82ec576d31614a5107f0defa763
4
+ data.tar.gz: ada6d22330888e48f4a5d274568e93552f964867
5
5
  SHA512:
6
- metadata.gz: 4aa0dce7497b5523450646a46ed02239311170f413fb1ba464e70a316a9533138032585ce70f527819ce20c238a9249d70e1ff6c8fe23b044b20687a43ed3831
7
- data.tar.gz: 7dc1676005759231f4934e5302aeb1ccf5dc7074e1d4d7201cf2de100bb731845cb43a78bb26574e4bc97429a7622a639641e065efef5f86728deed413459719
6
+ metadata.gz: 965435216e5844e62c248bff8b0e4aee5907094ba370ea642e4eedac0901e4b3f1ca3cf35cd2753d4c276a7032a2575ec2ae78786b7b645fd12c2a4ec26d6ddf
7
+ data.tar.gz: e8a74ad80c0dac98abcb5a1e8ac07315389d3644bf0cf992af90e256bbc5feb2a10ac680681f07f9a7fc030c5e268248df425d40f20d2fc9d8a543030e0ae047
data/README.md CHANGED
@@ -29,13 +29,13 @@ puts records
29
29
 
30
30
  ## Records
31
31
 
32
- `extract` will return an array of recordes. Each record will represent a `<p>`
32
+ `extract` will return an array of records. Each record will represent a `<p>`
33
33
  paragraph of the initial text, along with it textual version (HTML removed),
34
34
  heading hierarchy, and other interesting bits.
35
35
 
36
36
  ## Example
37
37
 
38
- Let's take the following HTML as input and see what recordes we got as output:
38
+ Let's take the following HTML as input and see what records we got as output:
39
39
 
40
40
  ```html
41
41
  <!doctype html>
@@ -63,7 +63,7 @@ Let's take the following HTML as input and see what recordes we got as output:
63
63
  </html>
64
64
  ```
65
65
 
66
- Here is one of the recordes extracted:
66
+ Here is one of the records extracted:
67
67
 
68
68
  ```ruby
69
69
  {
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: html-hierarchy-extractor 1.0.1 ruby lib
5
+ # stub: html-hierarchy-extractor 1.0.2 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "html-hierarchy-extractor"
9
- s.version = "1.0.1"
9
+ s.version = "1.0.2"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -1,6 +1,6 @@
1
1
  # Expose gem version
2
2
  class HTMLHierarchyExtractorVersion
3
3
  def self.to_s
4
- '1.0.1'
4
+ '1.0.2'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html-hierarchy-extractor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Carry