diff options
author | kennyj <kennyj@gmail.com> | 2012-01-04 01:18:05 +0900 |
---|---|---|
committer | kennyj <kennyj@gmail.com> | 2012-01-12 01:11:38 +0900 |
commit | 0b81304b713801f0f54d177e7d436ccf169e9646 (patch) | |
tree | 5862cc1360e44e887d9cab55a530643e2548fe72 /activesupport | |
parent | eb4b3a4d2ee0026ab3b740282aa09bccdd936b77 (diff) | |
download | rails-0b81304b713801f0f54d177e7d436ccf169e9646.tar.gz rails-0b81304b713801f0f54d177e7d436ccf169e9646.tar.bz2 rails-0b81304b713801f0f54d177e7d436ccf169e9646.zip |
Fix GH #3743. We must specify rdoc option's encoding.
Diffstat (limited to 'activesupport')
-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 4db22a0dbd..61a88bd65b 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 |