houseaccount 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 3679e7fcb39801bbbade5f8a0324ea46e5c4c71bc50b498ac139a4b7964abecf
4
+ data.tar.gz: ebaa5bbd77e6396ffd4e8cb7e7fbcee89538f6a69a474d0ca80f3bdda38c63d7
5
+ SHA512:
6
+ metadata.gz: dccd03d4fe716cc5e28a0d3fa2fe93695e1cc912267179ca0b1c9468950c1d470e0bbcae69244a27aebc380dbd0a9e85f56c83f6dd6f422b4da96d3a1573a319
7
+ data.tar.gz: 8f84db9c4f3b25f78bf8c0ff788f46f420f76f4748e817ae839f7e3195d886c1b4e225e1f390c49cbddd4b180d998a30e5d40c8049c9a6a94aff0c66b98a1885
data/CHANGELOG.md ADDED
@@ -0,0 +1,12 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ For more information about changelogs, check [Keep a Changelog](http://keepachangelog.com) and
6
+ [Vandamme](http://tech-angels.github.io/vandamme).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## 0.1.0 - 2026-08-27
11
+
12
+ * [Feature] First release: a library that loads and does not do anything yet
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 HouseAccount
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # House Account
2
+
3
+ The Ruby House Account shares between the apps it runs.
4
+
5
+ Nothing lives here yet: `require 'houseaccount'` defines the `HouseAccount` namespace and
6
+ returns. It is released so that an app can depend on it before there is anything to depend on,
7
+ and so the first thing extracted into it arrives as `0.2.0` rather than as a new gem.
8
+
9
+ ## How to install
10
+
11
+ To install on your system, run
12
+
13
+ gem install houseaccount
14
+
15
+ To use inside a bundled Ruby project, add this line to the `Gemfile`:
16
+
17
+ gem 'houseaccount', '~> 0.1.0'
18
+
19
+ Below 1.0 the pin names the patch as well as the minor, so `bundle update` stops short of
20
+ `0.2.0`. Semantic Versioning lets a `0.x` release break whatever it likes, and only promises
21
+ otherwise once the major is real -- at which point the pin loosens to `~> 1.0`.
22
+
23
+ ## Development
24
+
25
+ `bin/setup` gets a clone working, `bin/console` opens a prompt with the library loaded, and
26
+ `bundle exec rake` runs the suite and the linter -- which is what CI runs too.
27
+
28
+ ## Reference
29
+
30
+ The API reference is built from what RubyGems holds, at
31
+ [rubydoc.info/gems/houseaccount](https://rubydoc.info/gems/houseaccount). The source is at
32
+ [github.com/HouseAccountEng/houseaccount](https://github.com/HouseAccountEng/houseaccount).
33
+
34
+ ## License
35
+
36
+ MIT, see [LICENSE.txt](LICENSE.txt).
@@ -0,0 +1,4 @@
1
+ module HouseAccount
2
+ # The version of this gem, as RubyGems knows it.
3
+ VERSION = '0.1.0'
4
+ end
@@ -0,0 +1,5 @@
1
+ require 'houseaccount/version'
2
+
3
+ # The Ruby House Account shares between the apps it runs.
4
+ module HouseAccount
5
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: houseaccount
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Claudio Baccigalupo
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: A library that loads and does not do anything yet
13
+ email:
14
+ - claudiob@users.noreply.github.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - CHANGELOG.md
20
+ - LICENSE.txt
21
+ - README.md
22
+ - lib/houseaccount.rb
23
+ - lib/houseaccount/version.rb
24
+ homepage: https://github.com/HouseAccountEng/houseaccount
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ homepage_uri: https://github.com/HouseAccountEng/houseaccount
29
+ source_code_uri: https://github.com/HouseAccountEng/houseaccount/
30
+ changelog_uri: https://github.com/HouseAccountEng/houseaccount/blob/main/CHANGELOG.md
31
+ documentation_uri: https://rubydoc.info/gems/houseaccount
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '3'
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 4.0.3
47
+ specification_version: 4
48
+ summary: The Ruby House Account shares
49
+ test_files: []