Skip to content

Commit

Permalink
Update to Ruby 3 as a minimum, move dev gems into the Gemfile
Browse files Browse the repository at this point in the history
  • Loading branch information
waferbaby committed Oct 24, 2023
1 parent 6826efb commit e4d4e20
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.8
3.0.6
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
source "https://rubygems.org"

gemspec

gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.12'
gem 'rubocop-rspec', '~> 2.22'
7 changes: 2 additions & 5 deletions dimples.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
s.description = "A simple tool for building static websites."
s.license = "MIT"

s.required_ruby_version = "> 2.7"
s.required_ruby_version = '> 3.0'

s.executables << "dimples"

Expand All @@ -26,8 +26,5 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "redcarpet", "~> 3.5"
s.add_runtime_dependency "tilt", "~> 2.0"

s.add_development_dependency "rake", "~> 13.0"
s.add_development_dependency "rspec", "~> 3.12"
s.add_development_dependency "rubocop-rspec", "~> 2.22"
s.add_development_dependency "standard", "~> 1.28"
s.metadata['rubygems_mfa_required'] = 'true'
end

0 comments on commit e4d4e20

Please sign in to comment.