Skip to content

Commit

Permalink
updated to ruby version (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mat001 authored Nov 9, 2023
1 parent 9b77a5b commit a269a52
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.7.0', '3.0.0', '3.1.0' ]
ruby: [ '3.0.0', '3.1.0', '3.2.0' ]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: no_space
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Refer to the [Ruby SDK's developer documentation](https://docs.developers.optimi

### Requirements

* Ruby 2.7+
* Ruby 3.0+

### Install the SDK

Expand Down
4 changes: 2 additions & 2 deletions optimizely-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.version = Optimizely::VERSION
spec.authors = ['Optimizely']
spec.email = ['[email protected]']
spec.required_ruby_version = '>= 2.7'
spec.required_ruby_version = '>= 3.0'

spec.summary = "Ruby SDK for Optimizely's testing framework"
spec.description = 'A Ruby SDK for use with Optimizely Feature Experimentation, Optimizely Full Stack (legacy), and Optimizely Rollouts'
Expand All @@ -24,6 +24,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'webmock'

spec.add_runtime_dependency 'json-schema', '~> 2.6'
spec.add_runtime_dependency 'json-schema', '>= 2.6'
spec.add_runtime_dependency 'murmurhash3', '~> 0.1'
end

0 comments on commit a269a52

Please sign in to comment.