Skip to content

Commit

Permalink
set a minimal Ruby version (3.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
did committed Sep 20, 2024
1 parent 4e54eec commit 50c068b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.4
ruby-version: 3.3.5
bundler-cache: true
cache-version: 1

Expand Down
4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ source 'https://rubygems.org'

gemspec

gem 'parser'

group :development do
# gem 'locomotivecms_common', github: 'locomotivecms/common', ref: '4d1bd56'
# gem 'locomotivecms_common', path: '../common'
Expand Down Expand Up @@ -34,5 +32,5 @@ group :test do

gem 'rack-test', '~> 2.1.0'

gem 'simplecov', '~> 0.22.0', require: false
gem 'simplecov', '~> 0.22.0', require: false
end
4 changes: 1 addition & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ PATH
morphine (~> 0.1.1)
multi_json (~> 1.15.0)
nokogiri (~> 1.15.6)
parser (~> 3.3)
pony (~> 1.12)
rack-cache (>= 1.7, < 2)
rack-rewrite (~> 1.5.1)
Expand Down Expand Up @@ -121,8 +122,6 @@ GEM
nokogiri (1.15.6)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogiri (1.15.6-x86_64-darwin)
racc (~> 1.4)
origin (2.3.1)
parser (3.3.5.0)
ast (~> 2.4.1)
Expand Down Expand Up @@ -194,7 +193,6 @@ DEPENDENCIES
memory_profiler
mongo (~> 2.18.2)
origin (~> 2.3.1)
parser
puma (~> 6.4.0)
rack (~> 3.0)
rack-mini-profiler (~> 0.10.1)
Expand Down
3 changes: 2 additions & 1 deletion locomotivecms_steam.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ Gem::Specification.new do |spec|
spec.add_dependency 'mime-types', '~> 3.5.0'
spec.add_dependency 'duktape', '~> 2.0.1.1'
spec.add_dependency 'pony', '~> 1.12'
spec.add_dependency 'parser', '~> 3.3'

spec.add_dependency 'locomotivecms_common', '~> 0.6.0.alpha1'

spec.required_ruby_version = ['>= 3.0']
spec.required_ruby_version = ['>= 3.2']
end

0 comments on commit 50c068b

Please sign in to comment.