rails_html_validator 0.1.2 → 0.1.3

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: 8140429959391a76f2e6ecce4e72a1b6103e898057731b759deab2f569282422
4
- data.tar.gz: f1990843eec2a196483cdf9b5ad4a52880bd1bc723ba87d9b99988f0a674ed68
3
+ metadata.gz: 9810553a68a02508534bea0f24327bdf5eb8a34b5caa9b918799c42ef2b433ba
4
+ data.tar.gz: 2dfb53efedc379cade5de12af36712e1d2962ce6cc63e92e39f65f6f504cc566
5
5
  SHA512:
6
- metadata.gz: 646d96b9b01f5a29ef4662097340c0ee14e875a69ec8a25557cb7bf6fea962fc9e6f87301f92f936bbb03c5703309e56c49a9c8c02cbe6392f6a4d93e5c53690
7
- data.tar.gz: '05558046dacf4edad1d426f92e8ea5fd55f500a0811063420db96d4ff62269ae4d871e13cf21f8789d05d3f66b772284371438b65142f118d033102bf8e0365c'
6
+ metadata.gz: df359163a4e7c0387a96e21c74062ce37219f01abc10f3e6dbce56270fe41da1bafee0fdfb3e779c83d52d7a223bca2545d55882009af0f2f879aa9453e59b3f
7
+ data.tar.gz: 27ce574d223b3ba6b1b2484cb801673aedc9a4640b56b206ab633b342caec8c047b89f3b571f57ceeb8c3c5e8d60c8b5204430d854a1fd2ca4978be8a197748a
data/Gemfile CHANGED
@@ -2,5 +2,5 @@ source "https://rubygems.org"
2
2
 
3
3
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
4
 
5
- # Specify your gem's dependencies in jiraffe_rails_html_validator.gemspec
5
+ # Specify your gem's dependencies in rails_html_validator.gemspec
6
6
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_html_validator (0.1.2)
4
+ rails_html_validator (0.1.3)
5
5
  activemodel (>= 3.0.0)
6
6
  nokogiri
7
7
 
data/README.md CHANGED
@@ -17,7 +17,7 @@ And then execute:
17
17
 
18
18
  Or install it yourself as:
19
19
 
20
- $ gem install jiraffe_rails_html_validator
20
+ $ gem install rails_html_validator
21
21
 
22
22
  ## Usage
23
23
 
@@ -27,7 +27,7 @@ class Blog < ActiveRecord::Base
27
27
  validates :body, html: true
28
28
 
29
29
  # with exclude tags
30
- validates :body, html: { exclude_tags: %w(html head body script style) }
30
+ validates :body, html: { exclude_tags: %w(head script style) }
31
31
  end
32
32
  ```
33
33
 
@@ -61,4 +61,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
61
61
 
62
62
  ## Code of Conduct
63
63
 
64
- Everyone interacting in the RailsHtmlValidator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/jiraffe_rails_html_validator/blob/master/CODE_OF_CONDUCT.md).
64
+ Everyone interacting in the RailsHtmlValidator project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jiraffeinc/rails_html_validator/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,3 @@
1
1
  module RailsHtmlValidator
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_html_validator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - kawaoka