unithub-property-tools 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/unithub_property_tools.rb +13 -0
  3. metadata +47 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 7b28afc0dfd8caa0ac17913defd521b4aa4dc1d2f05e2dddcb90000c2ec50cb8
4
+ data.tar.gz: 2e2cdaaf47c3740037ed450cbfd5ebe6709603d8d6644a4c40acbe672f3ecc9f
5
+ SHA512:
6
+ metadata.gz: 82c7b4c43205a0ad8ee22d9b1deeeb200dd261933ec6892b89d0e851c9951b2574b52f3b5d6eb67a50955f284d0c76ee3d477de2f6f1a2d4edf2775bc2d9a6f1
7
+ data.tar.gz: f11b30f5eaf0afcd1b09d774ce2bbf25b34eb910cb58de75bd05d21e828a2f9ffe783770efc83e9fcb1d68bd061b284e92be693d9711e3cf5effd3d21df310e7
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module UnithubPropertyTools
4
+ VERSION = "0.1.0"
5
+
6
+ def self.checklist(unit_name)
7
+ {
8
+ unit: unit_name,
9
+ items: %w[walls floors ceiling windows doors plumbing electrical appliances],
10
+ status: :pending
11
+ }
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: unithub-property-tools
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - UnitHub
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-02-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A collection of utilities for landlords and property managers to streamline
14
+ unit inspections, maintenance tracking, and tenant communication. Built by UnitHub.
15
+ email: contact@unithub.ai
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - lib/unithub_property_tools.rb
21
+ homepage: https://unithub.ai
22
+ licenses:
23
+ - MIT
24
+ metadata:
25
+ homepage_uri: https://unithub.ai
26
+ source_code_uri: https://unithub.ai
27
+ documentation_uri: https://unithub.ai
28
+ post_install_message:
29
+ rdoc_options: []
30
+ require_paths:
31
+ - lib
32
+ required_ruby_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: 2.7.0
37
+ required_rubygems_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: '0'
42
+ requirements: []
43
+ rubygems_version: 3.3.7
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Property unit inspection and maintenance tracking utilities
47
+ test_files: []