aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-01-02 16:29:07 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2025-01-02 16:29:07 +0000
commit50094aed704e88a21cacf40fa35b0d202a2ba137 (patch)
tree4fd307ac4109b7f4fcf14ef89e0caa4dcf823ae6
parent61b87784fd24f2219a9081cd9a3988654bdbf3fe (diff)
www/rubygem-turbo-rails-rails72: Add rubygem-turbo-rails-rails72 2.0.11 (copied from rubygem-turbo-rails)
-rw-r--r--www/Makefile1
-rw-r--r--www/rubygem-turbo-rails-rails72/Makefile21
-rw-r--r--www/rubygem-turbo-rails-rails72/distinfo3
-rw-r--r--www/rubygem-turbo-rails-rails72/pkg-descr23
4 files changed, 48 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile
index 4d73dffa5663..5ac0d0cdf00f 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -2361,6 +2361,7 @@
SUBDIR += rubygem-turbo-rails
SUBDIR += rubygem-turbo-rails-rails70
SUBDIR += rubygem-turbo-rails-rails71
+ SUBDIR += rubygem-turbo-rails-rails72
SUBDIR += rubygem-turbolinks
SUBDIR += rubygem-turbolinks-source
SUBDIR += rubygem-typhoeus
diff --git a/www/rubygem-turbo-rails-rails72/Makefile b/www/rubygem-turbo-rails-rails72/Makefile
new file mode 100644
index 000000000000..bcc92149fccc
--- /dev/null
+++ b/www/rubygem-turbo-rails-rails72/Makefile
@@ -0,0 +1,21 @@
+PORTNAME= turbo-rails
+PORTVERSION= 2.0.11
+CATEGORIES= www rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= -rails72
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Speed of a single-page web application without having to write any JavaScript
+WWW= https://github.com/hotwired/turbo-rails
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS= rubygem-actionpack72>=6.0.0:www/rubygem-actionpack72 \
+ rubygem-railties72>=6.0.0:www/rubygem-railties72
+
+USES= gem
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
diff --git a/www/rubygem-turbo-rails-rails72/distinfo b/www/rubygem-turbo-rails-rails72/distinfo
new file mode 100644
index 000000000000..e7dc34adcdf0
--- /dev/null
+++ b/www/rubygem-turbo-rails-rails72/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1729594536
+SHA256 (rubygem/turbo-rails-2.0.11.gem) = fc47674736372780abd2a4dc0d84bef242f5ca156a457cd7fa6308291e397fcf
+SIZE (rubygem/turbo-rails-2.0.11.gem) = 196096
diff --git a/www/rubygem-turbo-rails-rails72/pkg-descr b/www/rubygem-turbo-rails-rails72/pkg-descr
new file mode 100644
index 000000000000..8ec8ea2ef762
--- /dev/null
+++ b/www/rubygem-turbo-rails-rails72/pkg-descr
@@ -0,0 +1,23 @@
+Turbo gives you the speed of a single-page web application without having to
+write any JavaScript. Turbo accelerates links and form submissions without
+requiring you to change your server-side generated HTML. It lets you carve up a
+page into independent frames, which can be lazy-loaded and operate as
+independent components. And finally, helps you make partial page updates using
+just HTML and a set of CRUD-like container tags. These three techniques reduce
+the amount of custom JavaScript that many web applications need to write by an
+order of magnitude. And for the few dynamic bits that are left, you're invited
+to finish the job with Stimulus.
+
+On top of accelerating web applications, Turbo was built from the ground-up to
+form the foundation of hybrid native applications. Write the navigational shell
+of your Android or iOS app using the standard platform tooling, then seamlessly
+fill in features from the web, following native navigation patterns. Not every
+mobile screen needs to be written in Swift or Kotlin to feel native. With Turbo,
+you spend less time wrangling JSON, waiting on app stores to approve updates, or
+reimplementing features you've already created in HTML.
+
+Turbo is a language-agnostic framework written in TypeScript, but this gem
+builds on top of those basics to make the integration with Rails as smooth as
+possible. You can deliver turbo updates via model callbacks over Action Cable,
+respond to controller actions with native navigation or standard redirects, and
+render turbo frames with helpers and layout-free responses.