blob: b168d357b94e37eafba148a7f33c7ad812247ef3 (
plain)
1
2
3
4
5
6
7
8
|
MRuby::Gem::Specification.new('mruby-bin-mirb') do |spec|
spec.license = 'MIT'
spec.authors = 'mruby developers'
spec.linker.libraries << 'readline' if spec.cc.defines.include? "ENABLE_READLINE"
spec.bins = %w(mirb)
end
|