source: EcnlProtoTool/trunk/mruby-1.2.0/mruby-source.gemspec@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

File size: 615 bytes
Line 
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
Note: See TracBrowser for help on using the repository browser.