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

Modify gemspec heredoc to be compatible with earlier Ruby versions #988

Merged
merged 1 commit into from
Mar 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 3 additions & 5 deletions friendly_id.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,9 @@ Gem::Specification.new do |s|
s.add_development_dependency "ffaker"
s.add_development_dependency "simplecov"

s.description = <<~EOM
FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins for
Active Record. It lets you create pretty URLs and work with human-friendly
strings as if they were numeric ids.
EOM
s.description = "FriendlyId is the \"Swiss Army bulldozer\" of slugging " \
"and permalink plugins for Active Record. It lets you create pretty URLs " \
"and work with human-friendly strings as if they were numeric ids."

s.cert_chain = [File.expand_path("certs/parndt.pem", __dir__)]
if $PROGRAM_NAME.end_with?("gem") && ARGV.include?("build") && ARGV.include?(__FILE__)
Expand Down