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