Deprecate delighted gem - Delighted sunset June 30, 2026#26
Draft
Deprecate delighted gem - Delighted sunset June 30, 2026#26
Conversation
Delighted is being sunset on June 30, 2026. This is the final release of the delighted Ruby gem. Changes: - Bump version to 2.2.0 - Add post_install_message to gemspec (shown during gem install) - Add runtime warn() on require (shown in application logs) - Update gemspec email to hello@delighted.com (active support address) - Add deprecation banner to README (visible on RubyGems page) - Add deprecation entry to CHANGELOG See: https://help.delighted.com/article/840-delighted-sunset-faq
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Delighted is being sunset on June 30, 2026. This is the final release of the
delightedRuby gem (v2.2.0), marking it as deprecated.For more information, visit the Delighted Sunset FAQ.
Changes
lib/delighted/version.rb: BumpedVERSIONto"2.2.0".delighted.gemspec: Addedpost_install_messagewith deprecation notice (shown duringgem install). Updatedemailtohello@delighted.com.lib/delighted.rb: Addedwarncall with deprecation notice (shown at runtime on everyrequire 'delighted').README.md: Added deprecation banner at the top (visible on RubyGems page).CHANGELOG.md: Added2.2.0deprecation entry.What users will see
On
gem install delighted:On
require 'delighted':Pre-merge validation (all passed)
gem build delighted.gemspecdelighted-2.2.0.gemsuccessfullygem install ./delighted-2.2.0.gempost_install_messagedisplayedruby -e "require 'delighted'"warndeprecation message printed to stderrAfter merging
v2.2.0gem build delighted.gemspecgem push delighted-2.2.0.gemLocal validation steps
1. Build the gem
gem build delighted.gemspec # Expected: "Successfully built RubyGem ... Version: 2.2.0"2. Install locally and test post_install_message
gem install ./delighted-2.2.0.gem # Expected: Deprecation message displayed between "Installing" and "Installed" lines3. Test runtime warning
4. Clean up