Skip to content

Commit

Permalink
Add dynamic dependency patch
Browse files Browse the repository at this point in the history
  • Loading branch information
sylhare committed Mar 9, 2025
1 parent 1a78df9 commit 90d3839
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion type-on-strap.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,22 @@ Gem::Specification.new do |spec|
Thanks for using Type on strap v2+!
MSG

spec.required_ruby_version = ">= 2.7.2", "< 4.0"
spec.required_ruby_version = ">= 2.7.2", "< 4.0"

spec.add_runtime_dependency "jekyll", ">= 3.8", "< 5.0"
spec.add_runtime_dependency "jekyll-feed", ">= 0.15.1", "<= 0.17"
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1.0"
spec.add_runtime_dependency "jekyll-seo-tag", ">= 2.7.1", "<= 2.8"
spec.add_runtime_dependency "kramdown-parser-gfm", "~> 1.1.0"

if RUBY_VERSION >= "3.0.0"
spec.add_runtime_dependency "webrick", "~> 1.7"
spec.add_runtime_dependency "github-pages"
end

if RUBY_VERSION >= "3.4.0"
spec.add_runtime_dependency "csv"
spec.add_runtime_dependency "bigdecimal"
end

end

0 comments on commit 90d3839

Please sign in to comment.