Merge pull request #852 from airblade/fix_gemspec_for_ruby_1.9.3

Fix "can't modify frozen String" in ruby 1.9.3
This commit is contained in:
Jared Beck 2016-08-23 02:50:30 -04:00 committed by GitHub
commit be7c6ae78e
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