summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVít Ondruch <vondruch@redhat.com>2015-01-22 17:32:58 +0100
committerVít Ondruch <vondruch@redhat.com>2015-01-22 17:32:58 +0100
commit94dd4e7c329114c700bb5236e9b14584835e998c (patch)
tree10d8f6983757c8a59aaa04d4c06338ff462970c0
parent208d1ca9b5c96a26c41d34438b916393af3abb4d (diff)
downloadrubygem-rails-html-sanitizer-94dd4e7c329114c700bb5236e9b14584835e998c.tar.gz
rubygem-rails-html-sanitizer-94dd4e7c329114c700bb5236e9b14584835e998c.tar.xz
rubygem-rails-html-sanitizer-94dd4e7c329114c700bb5236e9b14584835e998c.zip
Initial package.HEADmaster
-rw-r--r--rubygem-rails-html-sanitizer-1.0.1-Fix-false-possitive-test.patch29
-rw-r--r--rubygem-rails-html-sanitizer.spec82
2 files changed, 111 insertions, 0 deletions
diff --git a/rubygem-rails-html-sanitizer-1.0.1-Fix-false-possitive-test.patch b/rubygem-rails-html-sanitizer-1.0.1-Fix-false-possitive-test.patch
new file mode 100644
index 0000000..1e0f425
--- /dev/null
+++ b/rubygem-rails-html-sanitizer-1.0.1-Fix-false-possitive-test.patch
@@ -0,0 +1,29 @@
+From 643009712ca5f82639519c9617606f3fdb744b63 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?=
+ <rafael.franca@plataformatec.com.br>
+Date: Thu, 25 Sep 2014 16:38:51 -0300
+Subject: [PATCH] Fix false possitive test
+
+This test was passing because the assert_dom_equal was only comparing
+the top level tag.
+
+This bug was fixed at
+https://github.com/rails/rails-dom-testing/commit/c06500ce4185aed04b40806feff6e123d741f235
+and released as rails-dom-testing 1.0.3
+---
+ test/sanitizer_test.rb | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/test/sanitizer_test.rb b/test/sanitizer_test.rb
+index 5d6ad02..d1ab2aa 100644
+--- a/test/sanitizer_test.rb
++++ b/test/sanitizer_test.rb
+@@ -173,7 +173,7 @@ def test_sanitize_image_src
+ end
+
+ def test_should_allow_anchors
+- assert_sanitized %(<a href="foo" onclick="bar"><script>baz</script></a>), %(<a href=\"foo\">baz</a>)
++ assert_sanitized %(<a href="foo" onclick="bar"><script>baz</script></a>), %(<a href=\"foo\"></a>)
+ end
+
+ def test_video_poster_sanitization
diff --git a/rubygem-rails-html-sanitizer.spec b/rubygem-rails-html-sanitizer.spec
new file mode 100644
index 0000000..849ab89
--- /dev/null
+++ b/rubygem-rails-html-sanitizer.spec
@@ -0,0 +1,82 @@
+# Generated from rails-html-sanitizer-1.0.1.gem by gem2rpm -*- rpm-spec -*-
+%global gem_name rails-html-sanitizer
+
+Name: rubygem-%{gem_name}
+Version: 1.0.1
+Release: 1%{?dist}
+Summary: This gem is responsible to sanitize HTML fragments in Rails applications
+Group: Development/Languages
+License: MIT
+URL: https://github.com/rails/rails-html-sanitizer
+Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem
+# Fix for SanitizersTest#test_should_allow_anchors.
+# https://github.com/rails/rails-html-sanitizer/commit/643009712ca5f82639519c9617606f3fdb744b63
+Patch0: rubygem-rails-html-sanitizer-1.0.1-Fix-false-possitive-test.patch
+BuildRequires: ruby(release)
+BuildRequires: rubygems-devel
+BuildRequires: ruby
+BuildRequires: rubygem(loofah)
+BuildRequires: rubygem(minitest)
+BuildRequires: rubygem(rails-dom-testing)
+BuildArch: noarch
+
+%description
+HTML sanitization to Rails applications.
+
+
+%package doc
+Summary: Documentation for %{name}
+Group: Documentation
+Requires: %{name} = %{version}-%{release}
+BuildArch: noarch
+
+%description doc
+Documentation for %{name}.
+
+%prep
+gem unpack %{SOURCE0}
+
+%setup -q -D -T -n %{gem_name}-%{version}
+
+gem spec %{SOURCE0} -l --ruby > %{gem_name}.gemspec
+
+%patch0 -p1
+
+%build
+# Create the gem as gem install only works on a gem file
+gem build %{gem_name}.gemspec
+
+# %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir
+# by default, so that we can move it into the buildroot in %%install
+%gem_install
+
+%install
+mkdir -p %{buildroot}%{gem_dir}
+cp -a .%{gem_dir}/* \
+ %{buildroot}%{gem_dir}/
+
+
+
+
+# Run the test suite
+%check
+pushd .%{gem_instdir}
+ruby -Ilib -e 'Dir.glob "./test/**/*_test.rb", &method(:require)'
+popd
+
+%files
+%license %{gem_instdir}/LICENSE.txt
+%dir %{gem_instdir}
+%{gem_libdir}
+%exclude %{gem_cache}
+%{gem_spec}
+
+%files doc
+%doc %{gem_docdir}
+%doc %{gem_instdir}/CHANGELOG.md
+%doc %{gem_instdir}/README.md
+%{gem_instdir}/test
+
+%changelog
+* Thu Jan 22 2015 Vít Ondruch <vondruch@redhat.com> - 1.0.1-1
+- Initial package