diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-11 09:05:17 -0800 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2012-01-11 15:08:13 -0200 |
commit | 9e94e26d6b0e1284d7a2ae88ffe52ed86ca141d8 (patch) | |
tree | d12edcd2a66ec26dbd8d0c6aa96c49911389c6ea /activesupport/activesupport.gemspec | |
parent | 260999067e16d3e7efbb36053ebb960cfd2a336f (diff) | |
download | rails-9e94e26d6b0e1284d7a2ae88ffe52ed86ca141d8.tar.gz rails-9e94e26d6b0e1284d7a2ae88ffe52ed86ca141d8.tar.bz2 rails-9e94e26d6b0e1284d7a2ae88ffe52ed86ca141d8.zip |
Merge pull request #4412 from kennyj/fix_3743
Fix GH #3743. We must specify an encoding in rdoc_option explicitly.
Diffstat (limited to 'activesupport/activesupport.gemspec')
-rw-r--r-- | activesupport/activesupport.gemspec | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/activesupport.gemspec b/activesupport/activesupport.gemspec index 70d17fb580..e6fc7bf571 100644 --- a/activesupport/activesupport.gemspec +++ b/activesupport/activesupport.gemspec @@ -16,6 +16,8 @@ Gem::Specification.new do |s| s.files = Dir['CHANGELOG.md', 'MIT-LICENSE', 'README.rdoc', 'lib/**/*'] s.require_path = 'lib' + s.rdoc_options.concat ['--encoding', 'UTF-8'] + s.add_dependency('i18n', '~> 0.6') s.add_dependency('multi_json', '~> 1.0') end |