report_action 0.4.0 → 0.6.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: 7ba6128f7821d6a1929ea519fef462de5168801f14a0be97d01cccd74897d6ea
4
+ data.tar.gz: b4993192d9142e21093190ec36b2cf2b80ea5c33ebc404dcbab9d1733d7c3dc5
5
5
  SHA512:
6
- metadata.gz: 81e976cbff1a9efc79d59a8cb9ba99517537c32c708487c8423787b21db4ec6e8483fcbdacc29f037b11fe92ef34c5d54a74952d087e6c3d30856e1ae4d38e70
7
- data.tar.gz: 33ae2fdbef3aefbc28513715509026db6e3f8a6d2a9132339520e598ee56c66b7a4db2dbc483e8ec49151518bc5d615d72ae1a390ef495e47d05c19c909ba28f
6
+ metadata.gz: a10a2287983d916627df41b8b984af4cc0c461efbea66db91fd692bbe5bbd38b47940ec86bf3f9ab1b0b041636b99a86000f20dade212a5fa65e0f59384af452
7
+ data.tar.gz: 12b60d39ae0cb097fd82319a22f37b93c7a5a38bb9046eefb159d09ac54ae55d7ba872827e0d6f8e0e819bbfacfb05a1004237bfcc2c73fc7a03d18f5f056743
@@ -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.2', '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,9 @@
1
+ ## 0.6.0
2
+ - Ruby 3.2 support
3
+
4
+ ## 0.5.0
5
+ - Add GitHub Actions for running the test suite
6
+
1
7
  ## 0.4.0
2
8
  - Remove upper limits on development dependencies
3
9
 
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) 2023 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.6.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.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Collier, Craig Zaccaro
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-23 00:00:00.000000000 Z
11
+ date: 2023-01-05 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
@@ -78,7 +78,7 @@ metadata:
78
78
  homepage_uri: https://github.com/CraigJZ/report_action
79
79
  source_code_uri: https://github.com/CraigJZ/report_action
80
80
  changelog_uri: https://github.com/CraigJZ/report_action/blob/main/CHANGELOG.md
81
- post_install_message:
81
+ post_install_message:
82
82
  rdoc_options: []
83
83
  require_paths:
84
84
  - lib
@@ -93,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  - !ruby/object:Gem::Version
94
94
  version: '0'
95
95
  requirements: []
96
- rubygems_version: 3.0.3
97
- signing_key:
96
+ rubygems_version: 3.4.1
97
+ signing_key:
98
98
  specification_version: 4
99
99
  summary: Common Reporting Actions
100
100
  test_files: []
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