pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/ruby-bullet
Module Name: pkgsrc
Committed By: taca
Date: Sun Jan 18 14:58:03 UTC 2026
Added Files:
pkgsrc/www/ruby-bullet: DESCR Makefile PLIST distinfo
Log Message:
www/ruby-bullet: add package version 8.1.0
Bullet
The Bullet gem is designed to help you increase your application's
performance by reducing the number of queries it makes. It will watch your
queries while you develop your application and notify you when you should
add eager loading (N+1 queries), when you're using eager loading that isn't
necessary and when you should use counter cache.
Best practice is to use Bullet in development mode or custom mode (staging,
profile, etc.). The last thing you want is your clients getting alerts
about how lazy you are.
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/www/ruby-bullet/DESCR \
pkgsrc/www/ruby-bullet/Makefile pkgsrc/www/ruby-bullet/PLIST \
pkgsrc/www/ruby-bullet/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: pkgsrc/www/ruby-bullet/DESCR
diff -u /dev/null pkgsrc/www/ruby-bullet/DESCR:1.1
--- /dev/null Sun Jan 18 14:58:03 2026
+++ pkgsrc/www/ruby-bullet/DESCR Sun Jan 18 14:58:02 2026
@@ -0,0 +1,11 @@
+Bullet
+
+The Bullet gem is designed to help you increase your application's
+performance by reducing the number of queries it makes. It will watch your
+queries while you develop your application and notify you when you should
+add eager loading (N+1 queries), when you're using eager loading that isn't
+necessary and when you should use counter cache.
+
+Best practice is to use Bullet in development mode or custom mode (staging,
+profile, etc.). The last thing you want is your clients getting alerts
+about how lazy you are.
Index: pkgsrc/www/ruby-bullet/Makefile
diff -u /dev/null pkgsrc/www/ruby-bullet/Makefile:1.1
--- /dev/null Sun Jan 18 14:58:03 2026
+++ pkgsrc/www/ruby-bullet/Makefile Sun Jan 18 14:58:02 2026
@@ -0,0 +1,17 @@
+# $NetBSD: Makefile,v 1.1 2026/01/18 14:58:02 taca Exp $
+
+DISTNAME= bullet-8.1.0
+CATEGORIES= www
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://github.com/flyerhzm/bullet
+COMMENT= Help to kill N+1 queries and unused eager loading
+LICENSE= mit
+
+DEPENDS+= ${RUBY_PKGPREFIX}-uniform_notifier>=1.11<2:../../misc/ruby-uniform_notifier
+DEPENDS+= ${RUBY_ACTIVESUPPORT_DEPENDS}
+
+RUBY_RAILS_ACCEPTED= # any
+
+.include "../../lang/ruby/gem.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/www/ruby-bullet/PLIST
diff -u /dev/null pkgsrc/www/ruby-bullet/PLIST:1.1
--- /dev/null Sun Jan 18 14:58:03 2026
+++ pkgsrc/www/ruby-bullet/PLIST Sun Jan 18 14:58:02 2026
@@ -0,0 +1,52 @@
+@comment $NetBSD: PLIST,v 1.1 2026/01/18 14:58:02 taca Exp $
+${GEM_HOME}/cache/${GEM_NAME}.gem
+${GEM_LIBDIR}/CHANGELOG.md
+${GEM_LIBDIR}/MIT-LICENSE
+${GEM_LIBDIR}/README.md
+${GEM_LIBDIR}/lib/bullet.rb
+${GEM_LIBDIR}/lib/bullet/active_job.rb
+${GEM_LIBDIR}/lib/bullet/active_record4.rb
+${GEM_LIBDIR}/lib/bullet/active_record41.rb
+${GEM_LIBDIR}/lib/bullet/active_record42.rb
+${GEM_LIBDIR}/lib/bullet/active_record5.rb
+${GEM_LIBDIR}/lib/bullet/active_record52.rb
+${GEM_LIBDIR}/lib/bullet/active_record60.rb
+${GEM_LIBDIR}/lib/bullet/active_record61.rb
+${GEM_LIBDIR}/lib/bullet/active_record70.rb
+${GEM_LIBDIR}/lib/bullet/active_record71.rb
+${GEM_LIBDIR}/lib/bullet/active_record72.rb
+${GEM_LIBDIR}/lib/bullet/active_record80.rb
+${GEM_LIBDIR}/lib/bullet/active_record81.rb
+${GEM_LIBDIR}/lib/bullet/bullet_xhr.js
+${GEM_LIBDIR}/lib/bullet/dependency.rb
+${GEM_LIBDIR}/lib/bullet/detector.rb
+${GEM_LIBDIR}/lib/bullet/detector/association.rb
+${GEM_LIBDIR}/lib/bullet/detector/base.rb
+${GEM_LIBDIR}/lib/bullet/detector/counter_cache.rb
+${GEM_LIBDIR}/lib/bullet/detector/n_plus_one_query.rb
+${GEM_LIBDIR}/lib/bullet/detector/unused_eager_loading.rb
+${GEM_LIBDIR}/lib/bullet/ext/object.rb
+${GEM_LIBDIR}/lib/bullet/ext/string.rb
+${GEM_LIBDIR}/lib/bullet/mongoid4x.rb
+${GEM_LIBDIR}/lib/bullet/mongoid5x.rb
+${GEM_LIBDIR}/lib/bullet/mongoid6x.rb
+${GEM_LIBDIR}/lib/bullet/mongoid7x.rb
+${GEM_LIBDIR}/lib/bullet/mongoid8x.rb
+${GEM_LIBDIR}/lib/bullet/mongoid9x.rb
+${GEM_LIBDIR}/lib/bullet/notification.rb
+${GEM_LIBDIR}/lib/bullet/notification/base.rb
+${GEM_LIBDIR}/lib/bullet/notification/counter_cache.rb
+${GEM_LIBDIR}/lib/bullet/notification/n_plus_one_query.rb
+${GEM_LIBDIR}/lib/bullet/notification/unused_eager_loading.rb
+${GEM_LIBDIR}/lib/bullet/notification_collector.rb
+${GEM_LIBDIR}/lib/bullet/rack.rb
+${GEM_LIBDIR}/lib/bullet/registry.rb
+${GEM_LIBDIR}/lib/bullet/registry/association.rb
+${GEM_LIBDIR}/lib/bullet/registry/base.rb
+${GEM_LIBDIR}/lib/bullet/registry/call_stack.rb
+${GEM_LIBDIR}/lib/bullet/registry/object.rb
+${GEM_LIBDIR}/lib/bullet/stack_trace_filter.rb
+${GEM_LIBDIR}/lib/bullet/version.rb
+${GEM_LIBDIR}/lib/generators/bullet/install_generator.rb
+${GEM_LIBDIR}/tasks/bullet_tasks.rake
+${GEM_HOME}/specifications/${GEM_NAME}.gemspec
Index: pkgsrc/www/ruby-bullet/distinfo
diff -u /dev/null pkgsrc/www/ruby-bullet/distinfo:1.1
--- /dev/null Sun Jan 18 14:58:03 2026
+++ pkgsrc/www/ruby-bullet/distinfo Sun Jan 18 14:58:02 2026
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2026/01/18 14:58:02 taca Exp $
+
+BLAKE2s (bullet-8.1.0.gem) = 41ec93afcaf8ad360aa2aa6ad75cd1200d9a0e2f6ad7d102a2992182df56ec1d
+SHA512 (bullet-8.1.0.gem) = b48a91a88651fef19d15498b099497af68a6a623b7c8ab76ceeae5c73b2850887e18eb96082e5849fae4a8bdb6d59b9fc20c6f16056d9669742464ce0a9cf8de
+Size (bullet-8.1.0.gem) = 30208 bytes
Home |
Main Index |
Thread Index |
Old Index