Skip to content

Commit

Permalink
Merge pull request #9 from RIPAGlobal/feature/maintenance
Browse files Browse the repository at this point in the history
Overdue 'official' Ruby 3.3 support
  • Loading branch information
bagp1 authored Jul 3, 2024
2 parents b9adb0a + a81fef8 commit 50f14a3
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby: ['1.9.3-p551', '2.6', '2.7', '3.1', '3.2']
ruby: ['1.9.3-p551', '2.6', '2.7', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Gemfile.lock

coverage/
doc/
*.gem
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.3.3
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change log

## v1.4.0 (2024-07-01)

- Add Ruby 3.3 to the build matrix, "proving" that this version works and marking it as officially supported.

## v1.3.0 (2023-01-13)

- Add Ruby 3.1 and 3.2 to the build matrix, "proving" that those versions work and marking them as officially supported
Expand Down
32 changes: 0 additions & 32 deletions Gemfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Doggo

[![License](https://img.shields.io/badge/license-mit-blue.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://app.travis-ci.com/RIPAGlobal/doggo.svg?branch=master)](https://app.travis-ci.com/RIPAGlobal/doggo)
[![Build Status](https://github.com/RIPAGlobal/doggo/actions/workflows/master.yml/badge.svg)](https://github.com/RIPAGlobal/doggo/actions)

An [RSpec](https://github.com/rspec) formatter that looks like `--format documentation`, but adds an indication of test number and overall test count at the start of each line.

Expand Down
8 changes: 4 additions & 4 deletions doggo.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ $:.push File.expand_path('../lib', __FILE__)

Gem::Specification.new do |s|
s.name = 'doggo'
s.version = '1.3.0'
s.date = '2023-01-13'
s.version = '1.4.0'
s.date = '2024-07-01'
s.summary = 'RSpec 3 formatter - documentation, with progress indication'
s.description = 'Similar to "rspec -f d", but also indicates progress by showing the current test number and total test count on each line.'
s.authors = ['RIPA Global', 'Andrew David Hodgkinson']
Expand All @@ -24,6 +24,6 @@ Gem::Specification.new do |s|
s.test_files = Dir.glob('spec/**/*.rb')
s.extra_rdoc_files = ['LICENSE.txt', 'README.md']

s.add_dependency 'rspec-core','~> 3.10'
s.add_development_dependency 'rspec', '~> 3.10'
s.add_dependency 'rspec-core','~> 3.13'
s.add_development_dependency 'rspec', '~> 3.13'
end

0 comments on commit 50f14a3

Please sign in to comment.