hledger-forecast 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e605f8a4436c2b52e4b37e06aec308ef70d0fb4a7572d0791820c73ddafeaa1f
4
- data.tar.gz: f62dc41d637ea7107ec282b41d61ed0040c3fc3f4b84ec139a1711cf09f94af5
3
+ metadata.gz: dec0f161d9d99f109fb449763f74d8ed4362deefe14996a540df934a6b318f08
4
+ data.tar.gz: e88100cca81d8a444b1f7d9189e2d7149d03f0bcda7d133c09a393d7447b0e77
5
5
  SHA512:
6
- metadata.gz: b44389e7cc8ee05d8f6d35a0a649e11d96c2bcc3149f5b2ccf92c563db206dae54ee65a39eb9982f9c9e0dc16688ca42ef012e95aa38b99c9ef378f0ab57d3f9
7
- data.tar.gz: 5d64a7679916fa88216dc7daf3a4fc3607002114b025925d4e65e84c1c0a6b4243c1f389d7cb8ca0ba28209c6736ed9cf1ec5c8bcf3ddd264949d6be387f321a
6
+ metadata.gz: c07c049aded3d72ce1479c123d57d3e9b76a04318a6f18ee7ebff1505ff239fab6d6ca09fbe6bb6adaf9e2f26628d728bba89010ed6dcbf3b25eb49ffdbd3a89
7
+ data.tar.gz: 19cd01fbfb3113228fe504b7e3984986400cd8c4bb1e6f3b49ef9e34c9c0c0e59ac9098f73878869d8856413e4959978f869f4add3227d3d9a5ea90c311abaa9
@@ -8,26 +8,22 @@ on:
8
8
 
9
9
  jobs:
10
10
  test:
11
+
11
12
  runs-on: ubuntu-latest
12
13
  strategy:
13
14
  matrix:
14
- ruby-version:
15
- - 3.1.2
16
- - 3.0
15
+ ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2']
17
16
 
18
17
  steps:
19
18
  - uses: actions/checkout@v3
20
- - name: Update package
19
+ - name: Update packages
21
20
  run: sudo apt-get update
22
21
  - name: Install packages
23
22
  run: sudo apt-get -y install ledger hledger
24
23
  - name: Set up Ruby
25
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
26
- # change this to (see https://github.com/ruby/setup-ruby#versioning):
27
24
  uses: ruby/setup-ruby@v1
28
- # uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
29
25
  with:
30
26
  bundler-cache: true # runs 'bundle install' and caches installed gems
31
27
  ruby-version: ${{ matrix.ruby-version }}
32
28
  - name: Run tests
33
- run: rspec
29
+ run: bundle exec rspec
@@ -1,3 +1,5 @@
1
+ lib = File.expand_path('../lib', __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
1
3
  require 'hledger_forecast/version'
2
4
 
3
5
  Gem::Specification.new do |s|
@@ -1,3 +1,3 @@
1
1
  module HledgerForecast
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oli Morris