nacha 0.1.17 → 0.1.18
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/pages.yml +55 -0
- data/.github/workflows/rubygems.yml +34 -0
- data/CHANGELOG.md +4 -0
- data/lib/nacha/version.rb +1 -1
- data/nacha.gemspec +5 -0
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e12fa57ffdd8c85b2b84a29ef356879f3fe7d4c1e71096c9b6700e9b0487ce3
|
4
|
+
data.tar.gz: 3872080ab8827c6328f96d6795f71221c6d31d7620e18b2bb8fbda72c4afad62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cad7aa20bb7547161d2dcae751d155e537d465f4461f881a2653c9d9b0dc4f5adad08893454f9dc449e4fb913b7de7b229acb1bad12c6d92c491dd704883cae
|
7
|
+
data.tar.gz: 67e29604d03b3e2c580840846d3ccf70d86527d1b4de7fd4396196e0b2eaaa9bdc710cd9c6d5c2f257063dfa8de89f82870352d2cd47e19fa7a42833091b704d
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# Simple workflow for deploying static content to GitHub Pages
|
2
|
+
name: Deploy YARD Documentation to GitHub Pages
|
3
|
+
|
4
|
+
on:
|
5
|
+
# Runs on pushes targeting the master branch
|
6
|
+
push:
|
7
|
+
branches:
|
8
|
+
- master
|
9
|
+
|
10
|
+
# Allows you to run this workflow manually from the Actions tab
|
11
|
+
workflow_dispatch:
|
12
|
+
|
13
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
14
|
+
permissions:
|
15
|
+
contents: read
|
16
|
+
pages: write
|
17
|
+
id-token: write
|
18
|
+
|
19
|
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
20
|
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
21
|
+
concurrency:
|
22
|
+
group: "pages"
|
23
|
+
cancel-in-progress: false
|
24
|
+
|
25
|
+
jobs:
|
26
|
+
# Build job
|
27
|
+
build:
|
28
|
+
runs-on: ubuntu-latest
|
29
|
+
steps:
|
30
|
+
- name: Checkout
|
31
|
+
uses: actions/checkout@v4
|
32
|
+
- name: Set up Ruby
|
33
|
+
uses: ruby/setup-ruby@v1
|
34
|
+
with:
|
35
|
+
ruby-version: '3.2'
|
36
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems
|
37
|
+
- name: Build YARD Documentation
|
38
|
+
run: bundle exec yardoc -o ./doc
|
39
|
+
- name: Upload artifact
|
40
|
+
uses: actions/upload-pages-artifact@v3
|
41
|
+
with:
|
42
|
+
# Upload entire doc directory
|
43
|
+
path: './doc'
|
44
|
+
|
45
|
+
# Deployment job
|
46
|
+
deploy:
|
47
|
+
environment:
|
48
|
+
name: github-pages
|
49
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
50
|
+
runs-on: ubuntu-latest
|
51
|
+
needs: build
|
52
|
+
steps:
|
53
|
+
- name: Deploy to GitHub Pages
|
54
|
+
id: deployment
|
55
|
+
uses: actions/deploy-pages@v4
|
@@ -0,0 +1,34 @@
|
|
1
|
+
name: Publish to RubyGems.org
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
build-and-publish:
|
10
|
+
name: Build and Publish Gem
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
# Specifies that the build-and-publish job requires read permissions for the repository contents and write permissions for package deployments.
|
13
|
+
permissions:
|
14
|
+
contents: write
|
15
|
+
# This is required for trusted publishing
|
16
|
+
id-token: write
|
17
|
+
|
18
|
+
steps:
|
19
|
+
- name: Checkout
|
20
|
+
uses: actions/checkout@v4
|
21
|
+
with:
|
22
|
+
persist-credentials: false
|
23
|
+
|
24
|
+
- name: Set up Ruby
|
25
|
+
uses: ruby/setup-ruby@v1
|
26
|
+
with:
|
27
|
+
ruby-version: ruby
|
28
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems
|
29
|
+
|
30
|
+
- name: Build gem
|
31
|
+
run: gem build nacha.gemspec
|
32
|
+
|
33
|
+
- name: Publish to RubyGems.org
|
34
|
+
uses: rubygems/release-gem@v1
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
7
7
|
|
8
8
|
## [Unreleased]
|
9
9
|
|
10
|
+
## [0.1.18] - 2025-07-26
|
11
|
+
|
12
|
+
- first build automatically pushed from Github Actions
|
13
|
+
|
10
14
|
## [0.1.17] - 2025-07-25
|
11
15
|
|
12
16
|
- lots of yard documentation for all the Ach record types. Generating
|
data/lib/nacha/version.rb
CHANGED
data/nacha.gemspec
CHANGED
@@ -16,6 +16,11 @@ Gem::Specification.new do |spec|
|
|
16
16
|
spec.license = 'MIT'
|
17
17
|
spec.required_ruby_version = '>= 3.2.8'
|
18
18
|
|
19
|
+
spec.metadata = {
|
20
|
+
'documentation_uri' => 'https://dwilkins.github.io/nacha/doc',
|
21
|
+
'source_code_uri' => spec.homepage
|
22
|
+
}
|
23
|
+
|
19
24
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
25
|
f.match(%r{^(test|spec|features)/})
|
21
26
|
end
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nacha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David H. Wilkins
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bigdecimal
|
@@ -257,6 +256,8 @@ extensions: []
|
|
257
256
|
extra_rdoc_files: []
|
258
257
|
files:
|
259
258
|
- ".github/workflows/ci.yml"
|
259
|
+
- ".github/workflows/pages.yml"
|
260
|
+
- ".github/workflows/rubygems.yml"
|
260
261
|
- ".gitignore"
|
261
262
|
- ".gitlab-ci.yml"
|
262
263
|
- ".rspec"
|
@@ -354,8 +355,9 @@ files:
|
|
354
355
|
homepage: https://github.com/dwilkins/nacha
|
355
356
|
licenses:
|
356
357
|
- MIT
|
357
|
-
metadata:
|
358
|
-
|
358
|
+
metadata:
|
359
|
+
documentation_uri: https://dwilkins.github.io/nacha/doc
|
360
|
+
source_code_uri: https://github.com/dwilkins/nacha
|
359
361
|
rdoc_options: []
|
360
362
|
require_paths:
|
361
363
|
- lib
|
@@ -370,8 +372,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
370
372
|
- !ruby/object:Gem::Version
|
371
373
|
version: '0'
|
372
374
|
requirements: []
|
373
|
-
rubygems_version: 3.
|
374
|
-
signing_key:
|
375
|
+
rubygems_version: 3.6.9
|
375
376
|
specification_version: 4
|
376
377
|
summary: Ruby parser for ACH files.
|
377
378
|
test_files: []
|