1# coding: utf-8 2lib = File.expand_path('../lib', __FILE__) 3$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) 4require 'mruby/source' 5 6Gem::Specification.new do |spec| 7 spec.name = "mruby-source" 8 spec.version = MRuby::Source::MRUBY_VERSION 9 spec.authors = [ MRuby::Source::MRUBY_AUTHOR ] 10 11 spec.summary = %q{MRuby source code wrapper.} 12 spec.description = %q{MRuby source code wrapper for use with Ruby libs.} 13 spec.homepage = "http://www.mruby.org/" 14 spec.license = "MIT" 15 16 spec.files = `git ls-files -z`.split("\x0") 17 spec.require_paths = ["lib"] 18end 19