Sha256: d0c5a55408a80e9d6d4b71b32315bfac119ce4a0ef949c750c4874e4149c6b06
Contents?: true
Size: 494 Bytes
Versions: 1
Compression:
Stored size: 494 Bytes
Contents
# Changelog ## 2.0.0 This is a major re-write of the gem. All core features stay the same and there should not be any breaking changes, except for one thing: you should not use "destructive" methods when transforming your messages. Previously you could say: ```ruby def greet pou(:welcome) do |msg| puts msg.upcase! end end ``` Now it's recommended to use "safe" `upcase` method: ```ruby def greet pou(:welcome) do |msg| puts msg.upcase end end ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
messages_dictionary-2.0.0 | CHANGELOG.md |