report_action 0.4.0 → 0.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a7e871e147df0cc75631e2626202b993f34594bd198ff9afa8c57a5be0a6094a
4
- data.tar.gz: 29e8be7c4dddb6ce11ef2f08587caf0ebddeec49e66d56916867bded4db0b122
3
+ metadata.gz: ca3f9a7f69c172bc789a1f39d6b173091d42d17123935f588771bbe8d5b1201d
4
+ data.tar.gz: d0d3cb60080aebd75a78ffc15b3e65be908460f0af9969e5b9cca14fa6f1fbc0
5
5
  SHA512:
6
- metadata.gz: 81e976cbff1a9efc79d59a8cb9ba99517537c32c708487c8423787b21db4ec6e8483fcbdacc29f037b11fe92ef34c5d54a74952d087e6c3d30856e1ae4d38e70
7
- data.tar.gz: 33ae2fdbef3aefbc28513715509026db6e3f8a6d2a9132339520e598ee56c66b7a4db2dbc483e8ec49151518bc5d615d72ae1a390ef495e47d05c19c909ba28f
6
+ metadata.gz: ee93db88e122fe3b7704f2c34002f9b6b4ebd54fa103392920195193e9c6e597f3ba686353e0c1448ee6903eae2106dcf78b83891ed6828bd38bd58a05dceaf2
7
+ data.tar.gz: 197288f681972227c84b34d53a0ee805551d1b6291b85ff4e5a215ecb1ed2cb4b87b3ea84ff7f09b7fb9833d5bea04ac3340d253533254c6386c5c1fcb4cb9e1
@@ -0,0 +1,34 @@
1
+ name: test_suite
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ paths-ignore:
7
+ - '*.md'
8
+ - 'bin/*'
9
+ pull_request:
10
+ branches: [ main ]
11
+ paths-ignore:
12
+ - '*.md'
13
+ - 'bin/*'
14
+
15
+ jobs:
16
+ test:
17
+
18
+ runs-on: ubuntu-latest
19
+
20
+ strategy:
21
+ matrix:
22
+ ruby-version: [ '3.1', '3.0', '2.7' ]
23
+
24
+ steps:
25
+ - uses: actions/checkout@v3
26
+ - name: Set up Ruby ${{ matrix.ruby-version }}
27
+ uses: ruby/setup-ruby@v1
28
+
29
+ with:
30
+ ruby-version: ${{ matrix.ruby-version }}
31
+ - name: Install dependencies
32
+ run: bundle install
33
+ - name: Run tests
34
+ run: bundle exec rake test
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.5.0
2
+ - Add GitHub Actions for running the test suite
3
+
1
4
  ## 0.4.0
2
5
  - Remove upper limits on development dependencies
3
6
 
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2018 College of Humanities and Social Sciences, George Mason University
3
+ Copyright (c) 2022 College of Humanities and Social Sciences, George Mason University
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # ReportAction
2
2
 
3
+ ![tests](https://github.com/CraigJZ/report_action/workflows/test_suite/badge.svg)
4
+
3
5
  A collection of tools for structuring and building simple reports, which can be extracted as a structure or as text with html.
4
6
 
5
7
  ## Installation
@@ -1,3 +1,3 @@
1
1
  module ReportAction
2
- VERSION = "0.4.0"
2
+ VERSION = "0.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: report_action
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Collier, Craig Zaccaro
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-23 00:00:00.000000000 Z
11
+ date: 2022-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -59,8 +59,8 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
+ - ".github/workflows/test_suite.yml"
62
63
  - ".gitignore"
63
- - ".travis.yml"
64
64
  - CHANGELOG.md
65
65
  - Gemfile
66
66
  - LICENSE.txt
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.5.3
7
- before_install: gem install bundler -v 1.17.2