balancebook 0.0.1d1

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d962f60bb77bdf9b4c94e3ca69b1172d7bce1066003e96bade628f5dd47d6bfb
4
+ data.tar.gz: 1d6c9ef0cc8bd67dba1b538b464e90f27e6ce0ae51ad9a2de7944044fa64b897
5
+ SHA512:
6
+ metadata.gz: d836ca5d98e0df24107fdd0665d8c0a6ca05fe87ba89eae7896f031ff309588ed9f49e3ca1ee1e5b6aed0a67dcf069176a7e26e9acfba38d51ca04fb47986ad4
7
+ data.tar.gz: 790e28544bfdb8ae3b1cc531f77ef058510a85d54e3fc0594d33801d2415c201bc846dca4158055deaf6faab4af3a4c9f4df2e470610baf7f792d284b13a75b9
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ All changes to the BalanceBook gem are documented here. Releases follow semantic versioning.
4
+
5
+ ## [Unreleased]
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Peter Ohler
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 all
13
+ 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 THE
21
+ SOFTWARE.
@@ -0,0 +1,12 @@
1
+ # BottomLine
2
+
3
+ An simple accounting package that allows for custom reporting in multiple currencies.
4
+
5
+ ## Why
6
+
7
+ I could not find a package that did what I wanted and it was easier to
8
+ write something instead of using spreadsheets and building custom
9
+ sheets for my accountants in both USD and CAD.
10
+
11
+ Just starting so not much to see yet. Then plan is for command line
12
+ reports and entry at first and then see where it goes from there.
@@ -0,0 +1,5 @@
1
+
2
+ module BalanceBook
3
+ # Current version of the module.
4
+ VERSION = '0.0.1d1'
5
+ end
metadata ADDED
@@ -0,0 +1,70 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: balancebook
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1d1
5
+ platform: ruby
6
+ authors:
7
+ - Peter Ohler
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-10-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: oj
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.9'
27
+ description: A simple accounting application.
28
+ email: peter@ohler.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files:
32
+ - README.md
33
+ - CHANGELOG.md
34
+ - LICENSE
35
+ files:
36
+ - CHANGELOG.md
37
+ - LICENSE
38
+ - README.md
39
+ - lib/balancebook/version.rb
40
+ homepage: https://github.com/ohler55/balancebook
41
+ licenses:
42
+ - MIT
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options:
46
+ - "-t"
47
+ - BalanceBook
48
+ - "-m"
49
+ - README.md
50
+ - "-x"
51
+ - '"test/*"'
52
+ - "-x"
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 2.6.4
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">"
63
+ - !ruby/object:Gem::Version
64
+ version: 1.3.1
65
+ requirements: []
66
+ rubygems_version: 3.0.3
67
+ signing_key:
68
+ specification_version: 4
69
+ summary: Accounting Application
70
+ test_files: []