Skip to content
Draft
Show file tree
Hide file tree
Changes from all 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: 2 additions & 2 deletions .github/workflows/lint_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "[CI] Lint"
on: "push"

env:
RUBY_VERSION: 3.2.2
RUBY_VERSION: 3.3.4

jobs:
lint:
Expand All @@ -13,7 +13,7 @@ jobs:
if: "github.ref != 'refs/heads/develop'"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ruby/setup-ruby@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: Tests
on: "push"

env:
RUBY_VERSION: 3.2.2
RUBY_VERSION: 3.3.4

jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@v0.2.2
- uses: rokroskar/workflow-run-cleanup-action@v0.3.0
if: "github.ref != 'refs/heads/master' || github.ref != 'refs/heads/develop'"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ AllCops:
# If a value is specified for TargetRubyVersion then it is used.
# Else if .ruby-version exists and it contains an MRI version it is used.
# Otherwise we fallback to the oldest officially supported Ruby version (2.0).
TargetRubyVersion: 3.2.2
TargetRubyVersion: 3.3.4
SuggestExtensions: false

RSpec:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.4
2 changes: 1 addition & 1 deletion lib/omniauth/publik/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Omniauth
module Publik
VERSION = "0.1.1"
VERSION = "0.2.0"
end
end
9 changes: 5 additions & 4 deletions omniauth-publik.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,20 @@ Gem::Specification.new do |spec|
spec.summary = "OmniAuth strategy for Publik"
spec.description = "OmniAuth strategy for Publik"
spec.homepage = "https://github.com/OpenSourcePolitics/omniauth-publik"
spec.required_ruby_version = ">= 3.2"
spec.required_ruby_version = ">= 3.3"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
# rubocop:disable Gemspec/DevelopmentDependencies

spec.add_dependency "omniauth", "~> 2.1"
spec.add_dependency "omniauth-oauth2", ">= 1.7.2", "< 2.0"
# rubocop:disable Gemspec/DevelopmentDependencies
spec.add_development_dependency "bundler", ">= 2.4"
spec.add_development_dependency "rake", "~> 13.2"
spec.add_development_dependency "rubocop", "~> 1.69"
spec.add_development_dependency "rake", "~> 13.3"
spec.add_development_dependency "rubocop", "1.78.0"
spec.add_development_dependency "rubocop-rspec"
# rubocop:enable Gemspec/DevelopmentDependencies
spec.metadata["rubygems_mfa_required"] = "true"
Expand Down