Skip to content

Commit

Permalink
Remove support for Ruby 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrudall committed Sep 18, 2022
1 parent c2a4d41 commit 2ee9f01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
13 changes: 6 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ workflows:
- rubocop
- test:
matrix:
parameters:
ruby-image:
- cimg/ruby:2.5-node
- cimg/ruby:2.6-node
- cimg/ruby:2.7-node
- cimg/ruby:3.0-node
- cimg/ruby:3.1-node
parameters:
ruby-image:
- cimg/ruby:2.6-node
- cimg/ruby:2.7-node
- cimg/ruby:3.0-node
- cimg/ruby:3.1-node
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AllCops:
TargetRubyVersion: 2.5
TargetRubyVersion: 2.6
NewCops: enable
SuggestExtensions: false

Expand Down
2 changes: 1 addition & 1 deletion ruby-openai.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.summary = "A Ruby gem for the OpenAI GPT-3 API"
spec.homepage = "https://github.com/alexrudall/ruby-openai"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/alexrudall/ruby-openai"
Expand Down

0 comments on commit 2ee9f01

Please sign in to comment.