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/
6 lines
146 B
Ruby
6 lines
146 B
Ruby
MRuby::Gem::Specification.new('mruby-bin-mruby') do |spec|
|
|
spec.license = 'MIT'
|
|
spec.author = 'mruby developers'
|
|
spec.bins = %w(mruby)
|
|
end
|