diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-01 19:57:58 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-10-01 19:57:58 +0900 |
| commit | d12926da8a7df65da47a0b8c853167ab675c53c5 (patch) | |
| tree | 933084259d9f992ff01db40bb3b0d4f4f18981a0 /mruby-source.gemspec | |
| parent | a41b61ea58b9ea8721c0a9bb811ad480f98a6c34 (diff) | |
| parent | 1c8576dcc284b8b03975cac7d3e3be55ed0b4f4c (diff) | |
| download | mruby-d12926da8a7df65da47a0b8c853167ab675c53c5.tar.gz mruby-d12926da8a7df65da47a0b8c853167ab675c53c5.zip | |
Merge pull request #2937 from sagmor/gem
Distribute MRuby's source as a Ruby gem
Diffstat (limited to 'mruby-source.gemspec')
| -rw-r--r-- | mruby-source.gemspec | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mruby-source.gemspec b/mruby-source.gemspec new file mode 100644 index 000000000..62d4c0d12 --- /dev/null +++ b/mruby-source.gemspec @@ -0,0 +1,18 @@ +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'mruby/source' + +Gem::Specification.new do |spec| + spec.name = "mruby-source" + spec.version = MRuby::Source::MRUBY_VERSION + spec.authors = [ MRuby::Source::MRUBY_AUTHOR ] + + spec.summary = %q{MRuby source code wrapper.} + spec.description = %q{MRuby source code wrapper for use with Ruby libs.} + spec.homepage = "http://www.mruby.org/" + spec.license = "MIT" + + spec.files = `git ls-files -z`.split("\x0") + spec.require_paths = ["lib"] +end |
