html_whitespace_cleaner 1.0.0 → 1.0.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
  SHA1:
3
- metadata.gz: 9cb9ac3e8af141c7f18e174335650165175e8498
4
- data.tar.gz: 4aaff9dbf90996440d456659fb421d149d8700df
3
+ metadata.gz: 9e20513b063828e8bda3571320f92265d17c1112
4
+ data.tar.gz: 0e9cfd45a9613adb6d00267ab9fce37da5282bc4
5
5
  SHA512:
6
- metadata.gz: 5b84c8679aa5dd934c12afe7f865bf84cf1422fea10582222077cb9beb04d8f3e0adaf4d9845bc172b36378b0aacfc853704935f033fa6e279de8c94efc0c1c0
7
- data.tar.gz: 7dbcd43e0662aa0099ebe7bc606a7bc489e19623be8f9859aaf3a22660484acb3eec761c10d4a195207dc1f5ed2218b35d0a517049b4d861f96e1c3088e4ef35
6
+ metadata.gz: 495aba2adbd1d5f2c2b3fd06d41effcc662032b573c7ec4b009d83d7eb817a252c180ab8b837a47f7c904448396609db465f17859e3334bc960f4ccd9d2f6542
7
+ data.tar.gz: 6d49df90c92c2afc4886dfd55da246cd12574c327c95acfad2ce7e2ab93ee4513212af112dbdcf126724177276fe8ab0b42925b5fd4db61567072a569bcfd16f
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # HtmlWhitespaceCleaner
2
2
 
3
- A simple module that strips useless whitespace between html tags, for easier parsing.
3
+ A simple Ruby [gem](https://rubygems.org/gems/html_whitespace_cleaner) that strips useless whitespace between html tags, for easier parsing.
4
4
 
5
5
  ## Installation
6
6
 
@@ -22,15 +22,9 @@ Or install it yourself as:
22
22
 
23
23
  Use the HtmlWhitespaceCleaner#clean method to parse a string of raw html. It will return the same html but with extraneous whitespace removed. It will preserve formatting within tags, only removing whitespace between them.
24
24
 
25
- ## Development
26
-
27
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
28
-
29
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
30
-
31
25
  ## Contributing
32
26
 
33
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/html_whitespace_cleaner. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
27
+ Bug reports and pull requests are welcome on GitHub at https://github.com/shavah/html_whitespace_cleaner. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
28
 
35
29
 
36
30
  ## License
@@ -1,3 +1,3 @@
1
1
  module HtmlWhitespaceCleaner
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: html_whitespace_cleaner
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jones Melton