1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00

gemspec: Drop defunct property rubyforge_project (#40)

This commit is contained in:
Olle Jonsson 2020-10-30 15:36:48 +01:00 committed by GitHub
parent d3450e4274
commit 90a848d990
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View file

@ -11,7 +11,6 @@ Gem::Specification.new do |s|
s.summary = %q{Embed the Rhino JavaScript interpreter into JRuby} s.summary = %q{Embed the Rhino JavaScript interpreter into JRuby}
s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.} s.description = %q{Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript.}
s.homepage = %q{http://github.com/cowboyd/therubyrhino} s.homepage = %q{http://github.com/cowboyd/therubyrhino}
s.rubyforge_project = %q{therubyrhino}
s.extra_rdoc_files = ["README.md"] s.extra_rdoc_files = ["README.md"]
s.license = "MIT" s.license = "MIT"

View file

@ -13,10 +13,9 @@ Gem::Specification.new do |s|
s.license = "MPL-2.0" s.license = "MPL-2.0"
s.homepage = %q{http://github.com/cowboyd/therubyrhino} s.homepage = %q{http://github.com/cowboyd/therubyrhino}
s.rubyforge_project = %q{therubyrhino}
s.require_paths = ["jar"] s.require_paths = ["jar"]
s.files = `git ls-files`.split("\n").sort. s.files = `git ls-files`.split("\n").sort.
select { |file| file == 'therubyrhino_jar.gemspec' || file =~ /^jar\// } select { |file| file == 'therubyrhino_jar.gemspec' || file =~ /^jar\// }
end end