1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

textproc/rubygem-rails-dom-testing-rails72: Add rubygem-rails-dom-testing-rails72 2.2.0

This gem is responsible for comparing HTML doms and asserting that DOM elements
are present in Rails applications. Doms are compared via assert_dom_equal and
assert_dom_not_equal. Elements are asserted via assert_select,
assert_select_encoded, assert_select_email and a subset of the dom can be
selected with css_select. The gem is developed for Rails 4.2 and above, and
will not work on previous versions.
This commit is contained in:
Po-Chuan Hsieh 2024-09-18 13:51:36 +08:00
parent 5f50640f8c
commit 1eeb8297da
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 32 additions and 0 deletions

View File

@ -1894,6 +1894,7 @@
SUBDIR += rubygem-rails-dom-testing-rails61
SUBDIR += rubygem-rails-dom-testing-rails70
SUBDIR += rubygem-rails-dom-testing-rails71
SUBDIR += rubygem-rails-dom-testing-rails72
SUBDIR += rubygem-rails-dom-testing1
SUBDIR += rubygem-rails-html-sanitizer
SUBDIR += rubygem-rak

View File

@ -0,0 +1,22 @@
PORTNAME= rails-dom-testing
PORTVERSION= 2.2.0
CATEGORIES= textproc rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= -rails72
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Analyse and compare DOMs using Nokogiri
WWW= https://github.com/rails/rails-dom-testing
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
RUN_DEPENDS= rubygem-activesupport72>=5.0.0:devel/rubygem-activesupport72 \
rubygem-minitest>=0:devel/rubygem-minitest \
rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri
USES= gem
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1697330216
SHA256 (rubygem/rails-dom-testing-2.2.0.gem) = e515712e48df1f687a1d7c380fd7b07b8558faa26464474da64183a7426fa93b
SIZE (rubygem/rails-dom-testing-2.2.0.gem) = 16896

View File

@ -0,0 +1,6 @@
This gem is responsible for comparing HTML doms and asserting that DOM elements
are present in Rails applications. Doms are compared via assert_dom_equal and
assert_dom_not_equal. Elements are asserted via assert_select,
assert_select_encoded, assert_select_email and a subset of the dom can be
selected with css_select. The gem is developed for Rails 4.2 and above, and
will not work on previous versions.