mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
116f75a8ce
"spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/
5 lines
123 B
Ruby
5 lines
123 B
Ruby
MRuby::Gem::Specification.new('mruby-object-ext') do |spec|
|
|
spec.license = 'MIT'
|
|
spec.author = 'mruby developers'
|
|
end
|