deba 0.1.0 → 0.2.0

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
  SHA1:
3
- metadata.gz: ad9e94cee53cfd87b42e07aa49768998c7426135
4
- data.tar.gz: 65034ed3fe3b044c1537a785c7e9dcd5c8964303
3
+ metadata.gz: 5a5d114eb0f4daf810581ebc534d9bcc6bac75b7
4
+ data.tar.gz: 1ccd7b26a3db08811b6eabbe07c9fd1c7afc2e6b
5
5
  SHA512:
6
- metadata.gz: d6f759d4ea466c431aad03f62f65fa5e23ef14881d3ae4532497c1d9a2e869fd282807d434ddd44b5fe1e8b1e089afdac53bc3de62f660b9be896a9fb25aeb0d
7
- data.tar.gz: 51a467840d948a621df946a1d8507c8cd0a3f902f4bd5f35079e014d5c5f1486a7ddd918137cf4b3c3fbbc0f8e484e8ad4dd5de88fb153b4fde915bb46ec94c1
6
+ metadata.gz: 6e38ece0ad8a5c9394275921f1badc268ac6fa9b2cbf915a5fdb9faff576ad01edc7b3c2d260d9b17174917ab3e163d80de67c81682abeb6b7ecd917d4c36c19
7
+ data.tar.gz: a5a6050046ab1635715f7d8c1f5b60289138b3031ecee9bdfd6ff636e893e8417c05127e1f9c53782bc8cfbeb938433c5258c79dc5f42a0a931f60ce7c972ed7
data/deba.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'deba/version'
4
+ require 'deba'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "deba"
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Brenton \"B-Train\" Fletcher"]
10
10
  spec.email = ["i@bloople.net"]
11
11
 
12
- spec.summary = %q{Deba}
13
- spec.description = %q{Deba}
12
+ spec.summary = %q{Fillet HTML using this Deba knife to extract the juicy text content}
13
+ spec.description = %q{Deba takes a HTML document or fragment and extracts the text content into a plaintext format that is a strict subset of markdown.}
14
14
  spec.homepage = "http://example.com"
15
15
  spec.license = "MIT"
16
16
 
data/lib/deba.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  require "nokogiri"
2
2
 
3
3
  module Deba
4
+ VERSION = "0.2.0"
4
5
  end
5
6
 
6
- require "deba/version"
7
7
  require "deba/utils"
8
8
  require "deba/stringifier"
9
9
  require "deba/break"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deba
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brenton "B-Train" Fletcher
@@ -52,7 +52,8 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: Deba
55
+ description: Deba takes a HTML document or fragment and extracts the text content
56
+ into a plaintext format that is a strict subset of markdown.
56
57
  email:
57
58
  - i@bloople.net
58
59
  executables: []
@@ -75,7 +76,6 @@ files:
75
76
  - lib/deba/stringifier.rb
76
77
  - lib/deba/text_runner.rb
77
78
  - lib/deba/utils.rb
78
- - lib/deba/version.rb
79
79
  homepage: http://example.com
80
80
  licenses:
81
81
  - MIT
@@ -99,5 +99,5 @@ rubyforge_project:
99
99
  rubygems_version: 2.6.8
100
100
  signing_key:
101
101
  specification_version: 4
102
- summary: Deba
102
+ summary: Fillet HTML using this Deba knife to extract the juicy text content
103
103
  test_files: []
data/lib/deba/version.rb DELETED
@@ -1,3 +0,0 @@
1
- module Deba
2
- VERSION = "0.1.0"
3
- end