Files
mruby-mruby/mrbgems/mruby-inline-struct/mrbgem.rake
T
Tomasz Dąbrowski 4cca8bac6b inline structures data type for mruby (MRB_TT_INLINE) (fix #3237)
Inline structures have no instance variables, no finalizer, and offer as much space as possible in RBASIC object. This means 24 bytes on 64-bit platforms and 12 bytes on 32-bit platforms.
mruby-inline-struct gem is only provided for testing.
2016-11-17 17:19:49 +09:00

6 lines
162 B
Ruby

MRuby::Gem::Specification.new('mruby-inline-struct') do |spec|
spec.license = 'MIT'
spec.author = 'mruby developers'
spec.summary = 'inline structure'
end