Skip to content

Commit

Permalink
Merge pull request #86 from orien/allow-on-ruby-3
Browse files Browse the repository at this point in the history
Allow running on Ruby 3.0
  • Loading branch information
arothian committed Jan 18, 2021
2 parents 08447b7 + c373fe9 commit 6dbeb30
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions Gemfile.lock
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
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
@@ -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
@@ -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

0 comments on commit 6dbeb30

Please sign in to comment.