Fix "can't modify frozen String" in ruby 1.9.3

This commit is contained in:
Jared Beck 2016-08-23 02:16:40 -04:00
parent 141f8fb7b8
commit b8aa83a7da
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ require "paper_trail/version_number"
Gem::Specification.new do |s|
s.name = "paper_trail"
s.version = PaperTrail::VERSION::STRING
s.version = PaperTrail::VERSION::STRING.dup # The `dup` is for ruby 1.9.3
s.platform = Gem::Platform::RUBY
s.summary = "Track changes to your models' data. Good for auditing or versioning."
s.description = s.summary