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

Allow running on Ruby 3.0 #86

Merged
merged 2 commits into from
Jan 18, 2021
Merged
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
12 changes: 7 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GEM
specs:
ast (2.4.0)
diff-lcs (1.3)
docile (1.3.2)
docile (1.3.5)
jaro_winkler (1.5.4)
kwalify (0.7.2)
parallel (1.19.1)
Expand Down Expand Up @@ -39,10 +39,12 @@ GEM
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7)
ruby-progressbar (1.10.1)
simplecov (0.18.1)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11.0)
simplecov-html (0.11.0)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.2)
unicode-display_width (1.6.1)

PLATFORMS
Expand All @@ -55,4 +57,4 @@ DEPENDENCIES
simplecov

BUNDLED WITH
2.1.4
2.2.3
2 changes: 1 addition & 1 deletion cfn-model.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|

s.require_paths << 'lib'

s.required_ruby_version = '~> 2.2'
s.required_ruby_version = '>= 2.5.0'

s.add_development_dependency 'rubocop'

Expand Down
2 changes: 1 addition & 1 deletion parse_samples.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -l

rvm use 2.2.1
rvm use 2.5.8
rvm --force gemset delete cfn_model
rvm gemset use cfn_model --create

Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash -ex
export minor_version="0.5"
export minor_version="0.6"
set -o pipefail

gem_name=cfn-model
Expand Down