diff options
| author | Seba Gamboa <[email protected]> | 2015-09-01 18:45:53 -0300 |
|---|---|---|
| committer | Seba Gamboa <[email protected]> | 2015-09-01 18:45:53 -0300 |
| commit | 63d2d192a1a8a3734bf9b0c17d88e3646063314e (patch) | |
| tree | 976ff65cb619edab26b3a42d6900ecf00c9566d7 /mruby-source.gemspec | |
| parent | 64d7dec45799279646ce6224764ef3377922754f (diff) | |
| download | mruby-63d2d192a1a8a3734bf9b0c17d88e3646063314e.tar.gz mruby-63d2d192a1a8a3734bf9b0c17d88e3646063314e.zip | |
Expose MRuby source as a 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..6ccd5d259 --- /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/version' + +Gem::Specification.new do |spec| + spec.name = "mruby-source" + spec.version = MRuby::Source::MRUBY_VERSION + spec.authors = ["mruby developers"] + + 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 |
