Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update supported ruby version #145

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.1
3.2.2
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
story_branch (2.3.0)
story_branch (2.3.1)
blanket_wrapper (~> 3.0, > 3.0)
damerau-levenshtein (~> 1.3, > 1.3)
httparty (> 0)
Expand Down Expand Up @@ -159,4 +159,4 @@ DEPENDENCIES
story_branch!

BUNDLED WITH
2.1.4
2.4.10
2 changes: 1 addition & 1 deletion lib/story_branch/command.rb
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def platform
# @api public
def prompt(**options)
require 'tty-prompt'
TTY::Prompt.new(options)
TTY::Prompt.new(**options)
end

# Get terminal screen properties
Expand Down
2 changes: 1 addition & 1 deletion lib/story_branch/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module StoryBranch
VERSION = '2.3.0'
VERSION = '2.3.1'
end
2 changes: 1 addition & 1 deletion story_branch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Gem::Specification.new do |spec|
'documentation_uri' => 'https://github.com/story-branch/story_branch/blob/master/README.md',
'source_code_uri' => 'https://github.com/story-branch/story_branch'
}
spec.required_ruby_version = ['>= 2.4', '< 3.1']
spec.required_ruby_version = ['>= 2.4', '< 4']

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been
Expand Down
Loading