hledger-forecast 0.1.3 → 0.1.4
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 +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.gitignore +13 -2
- data/hledger-forecast.gemspec +0 -2
- data/lib/hledger_forecast/version.rb +1 -1
- metadata +2 -3
- data/.ruby-version +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d7bd2190c7f86b3d6a1fe76583a8f7e959f4429719b9903de343d25e0bf3b51
|
4
|
+
data.tar.gz: 7bb59da35fc2f9f3c47b6ed8b45d2ef38fb9c5c084c6bce9d6ee66fd004157a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3251f466cd2072685cf063268aca5c9ddc6231e9ac5c217049369c3e6b1c1d729967059441d4318247b7477ebaf357dc317e4f40df6b8e44dbe59a14b5005b9a
|
7
|
+
data.tar.gz: 55251b35a8cfea885fbbcb861ad650635a0fed4c91e618942ddd4eb76c38b9d3826d1b35e9078c1fae9c2ea96aa311cef750cc37fd88d5e4aed75ecb5c6db21f
|
data/.github/workflows/ci.yml
CHANGED
data/.gitignore
CHANGED
@@ -1,10 +1,21 @@
|
|
1
|
-
|
1
|
+
# Bundler
|
2
2
|
.bundle
|
3
3
|
Gemfile.lock
|
4
|
+
pkg/*
|
4
5
|
*.gem
|
5
6
|
|
7
|
+
# Project
|
8
|
+
.rbenv-version
|
9
|
+
.rbx
|
10
|
+
.rvmrc
|
11
|
+
.ruby-version
|
12
|
+
.ruby-gemset
|
13
|
+
|
14
|
+
# Spec artifacts
|
15
|
+
/coverage
|
16
|
+
|
17
|
+
# Misc
|
6
18
|
forecast.yml
|
7
19
|
forecast.journal
|
8
20
|
test_output.journal
|
9
|
-
|
10
21
|
todo.md
|
data/hledger-forecast.gemspec
CHANGED
@@ -12,8 +12,6 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.homepage = 'https://github.com/olimorris/hledger-forecast'
|
13
13
|
s.license = 'MIT'
|
14
14
|
|
15
|
-
s.required_ruby_version = '>= 3.0.0'
|
16
|
-
|
17
15
|
s.add_dependency "highline", "~> 2.1.0"
|
18
16
|
s.add_dependency "money", "~> 6.16.0"
|
19
17
|
s.add_development_dependency 'rspec', '~> 3.12'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hledger-forecast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oli Morris
|
@@ -63,7 +63,6 @@ files:
|
|
63
63
|
- ".github/workflows/ci.yml"
|
64
64
|
- ".gitignore"
|
65
65
|
- ".rubocop.yml"
|
66
|
-
- ".ruby-version"
|
67
66
|
- Gemfile
|
68
67
|
- LICENSE
|
69
68
|
- README.md
|
@@ -107,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
106
|
requirements:
|
108
107
|
- - ">="
|
109
108
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
109
|
+
version: '0'
|
111
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
112
111
|
requirements:
|
113
112
|
- - ">="
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
3.0.0
|