Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yml → .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- 3.1
- 3.2
- 3.3
- 3.4
gemfile:
- "gemfiles/activerecord_6_1.gemfile"
- "gemfiles/activerecord_7_0.gemfile"
Expand Down Expand Up @@ -48,6 +49,7 @@ jobs:
- 3.1
- 3.2
- 3.3
- 3.4
gemfile:
- "gemfiles/activerecord_6_1.gemfile"
- "gemfiles/activerecord_7_0.gemfile"
Expand Down Expand Up @@ -92,6 +94,7 @@ jobs:
- 3.1
- 3.2
- 3.3
- 3.4
gemfile:
- gemfiles/activerecord_7_1.gemfile
- gemfiles/activerecord_7_2.gemfile
Expand Down Expand Up @@ -133,6 +136,7 @@ jobs:
- 3.1
- 3.2
- 3.3
- 3.4
gemfile:
- "gemfiles/activerecord_6_1.gemfile"
- "gemfiles/activerecord_7_0.gemfile"
Expand Down
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ gemspec

gem "appraisal"
gem "appraisal-matrix"
gem "base64"
gem "bigdecimal"
gem "debug"
gem "mutex_m"
gem "mysql2"
gem "pg"
gem "rspec"
Expand Down
31 changes: 31 additions & 0 deletions catalog-info.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This file is partially auto-generated by the invoca-backstage-tools gem
# The following fields should not be edited manually as they are auto-generated
# based on the contents of the repo:
# - metadata.name
# - metadata.title
# - metadata.description
# - annotations.github.com/project-slug
# - invoca.com/version-repository-location
# - invoca.com/version-repository-name
# - spec.type
# - spec.owner
---
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: activerecord-dynamic_timeout-gem
title: Activerecord::DynamicTimeout
description: ActiveRecord extension for dynamically setting connection timeouts
tags:
- ruby
- gem
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add the following tags:

  • rails-dependent
  • public

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 08a81a0

annotations:
buildkite.com/project-slug: invoca/activerecord-dynamic-timeout
github.com/project-slug: invoca/activerecord-dynamic_timeout
invoca.com/version-repository-location: rubygems
invoca.com/version-repository-name: activerecord-dynamic_timeout
spec:
type: library
lifecycle: production
owner: octothorpe
dependsOn: []
3 changes: 3 additions & 0 deletions gemfiles/activerecord_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "base64"
gem "bigdecimal"
gem "debug"
gem "mutex_m"
gem "mysql2"
gem "pg"
gem "rspec"
Expand Down
3 changes: 3 additions & 0 deletions gemfiles/activerecord_7_0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "base64"
gem "bigdecimal"
gem "debug"
gem "mutex_m"
gem "mysql2"
gem "pg"
gem "rspec"
Expand Down
3 changes: 3 additions & 0 deletions gemfiles/activerecord_7_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "base64"
gem "bigdecimal"
gem "debug"
gem "mutex_m"
gem "mysql2"
gem "pg"
gem "rspec"
Expand Down
3 changes: 3 additions & 0 deletions gemfiles/activerecord_7_2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ source "https://rubygems.org"

gem "appraisal"
gem "appraisal-matrix"
gem "base64"
gem "bigdecimal"
gem "debug"
gem "mutex_m"
gem "mysql2"
gem "pg"
gem "rspec"
Expand Down
1 change: 1 addition & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# See https://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration

require 'logger'
require "debug"

require_relative "helpers/configure_database"
Expand Down