diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2020-01-18 16:34:13 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2020-01-18 16:34:13 +0100 |
commit | 21b7ae87d67226a137cfa524ae623144c2296293 (patch) | |
tree | 3288b932410dd05f96036d6c5984d6a35cf99bf8 /coderay.gemspec | |
parent | ac45fe740c0ad9f89f7cd0c3620815e9033cb1e9 (diff) | |
download | coderay-21b7ae87d67226a137cfa524ae623144c2296293.tar.gz |
Fix rubygems deprecation
```
NOTE: Gem::Specification#rubyforge_project= is deprecated with no replacement. It will be removed on or after 2019-12-01.
Gem::Specification#rubyforge_project= called from /home/deivid/.rbenv/versions/2.4.9/lib/ruby/gems/2.4.0/specifications/coderay-1.1.2.gemspec:21.
```
Diffstat (limited to 'coderay.gemspec')
-rw-r--r-- | coderay.gemspec | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/coderay.gemspec b/coderay.gemspec index 50c195b..14500ad 100644 --- a/coderay.gemspec +++ b/coderay.gemspec @@ -28,7 +28,6 @@ Gem::Specification.new do |s| s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = ['lib'] - s.rubyforge_project = s.name s.rdoc_options = '-SNw2', "-m#{readme_file}", '-t CodeRay Documentation' s.extra_rdoc_files = readme_file end |