notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
rubygem-active_hash Include the ability to specify data using hashes, yml files or JSON files
3.3.1 devel on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout Package not present on quarterly.This port was created during this quarter. It will be in the next quarterly branch but not the current one.
Maintainer: sunpoet@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2024-05-16 06:30:37
Last Update: 2024-05-19 22:11:43
Commit Hash: 8f83cd1
Also Listed In: rubygems
License: MIT
WWW:
https://github.com/active-hash/active_hash
Description:
ActiveHash is a simple base class that allows you to use a ruby hash as a readonly datasource for an ActiveRecord-like model. ActiveHash assumes that every hash has an :id key, which is what you would probably store in a database. This allows you to seamlessly upgrade from ActiveHash objects to full ActiveRecord objects without having to change any code in your app, or any foreign keys in your database. It also allows you to use #has_many and #belongs_to (via belongs_to_active_hash) in your AR objects. ActiveHash can also be useful to create simple test classes that run without a database - ideal for testing plugins or gems that rely on simple AR behavior, but don't want to deal with databases or migrations for the spec suite. ActiveHash also ships with: - ActiveFile: a base class that you can use to create file data sources - ActiveYaml: a base class that will turn YAML into a hash and load the data into an ActiveHash object
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (3 items)
Collapse this list.
  1. /usr/local/share/licenses/rubygem-active_hash-3.3.1/catalog.mk
  2. /usr/local/share/licenses/rubygem-active_hash-3.3.1/LICENSE
  3. /usr/local/share/licenses/rubygem-active_hash-3.3.1/MIT
Collapse this list.
Dependency lines:
  • rubygem-active_hash>0:devel/rubygem-active_hash
To install the port:
cd /usr/ports/devel/rubygem-active_hash/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/rubygem-active_hash
  • pkg install rubygem-active_hash
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: rubygem-active_hash
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1716142154 SHA256 (rubygem/active_hash-3.3.1.gem) = 84477833a69ad6ea43d562bcaa4f1004aca7aed6dfa45e8d367fd3e7d4f36170 SIZE (rubygem/active_hash-3.3.1.gem) = 26112

Packages (timestamps in pop-ups are UTC):
rubygem-active_hash
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest3.3.13.3.1-3.3.13.3.1---
FreeBSD:13:quarterly--------
FreeBSD:14:latest-3.3.1--3.3.1---
FreeBSD:14:quarterly--------
FreeBSD:15:latest-3.3.1n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. ruby32 : lang/ruby32
  2. gem : devel/ruby-gems
Runtime dependencies:
  1. rubygem-activesupport71>=5.0.0 : devel/rubygem-activesupport71
  2. ruby32 : lang/ruby32
  3. gem : devel/ruby-gems
Patch dependencies:
  1. ruby32 : lang/ruby32
  2. gem : devel/ruby-gems
Extract dependencies:
  1. ruby32 : lang/ruby32
This port is required by:
for Run
  1. www/rubygem-bullet_train-roles

Configuration Options:
No options to configure
Options name:
devel_rubygem-active_hash
USES:
gem
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://rubygems.org/downloads/
Collapse this list.

Number of commits found: 2

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
3.3.1
19 May 2024 22:11:43
commit hash: 8f83cd1a9def3f914ce70a4e17e2fa859f726759commit hash: 8f83cd1a9def3f914ce70a4e17e2fa859f726759commit hash: 8f83cd1a9def3f914ce70a4e17e2fa859f726759commit hash: 8f83cd1a9def3f914ce70a4e17e2fa859f726759 files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-active_hash: Update to 3.3.1

Changes:	https://github.com/active-hash/active_hash/releases
3.3.0
16 May 2024 06:21:48
commit hash: 926831c62fe0344906ccfc40095e5cda258c7a7ecommit hash: 926831c62fe0344906ccfc40095e5cda258c7a7ecommit hash: 926831c62fe0344906ccfc40095e5cda258c7a7ecommit hash: 926831c62fe0344906ccfc40095e5cda258c7a7e files touched by this commit
Po-Chuan Hsieh (sunpoet) search for other commits by this committer
devel/rubygem-active_hash: Add rubygem-active_hash 3.3.0

ActiveHash is a simple base class that allows you to use a ruby hash as a
readonly datasource for an ActiveRecord-like model.

ActiveHash assumes that every hash has an :id key, which is what you would
probably store in a database. This allows you to seamlessly upgrade from
ActiveHash objects to full ActiveRecord objects without having to change any
code in your app, or any foreign keys in your database.

It also allows you to use #has_many and #belongs_to (via belongs_to_active_hash)
in your AR objects.

ActiveHash can also be useful to create simple test classes that run without a
database - ideal for testing plugins or gems that rely on simple AR behavior,
but don't want to deal with databases or migrations for the spec suite.

ActiveHash also ships with:
- ActiveFile: a base class that you can use to create file data sources
- ActiveYaml: a base class that will turn YAML into a hash and load the data
  into an ActiveHash object

Number of commits found: 2