Sha256: 1aa565a5c93807a9915e5d84f56f29f11b0d2ab9119adb6d00effe32fb34ae03
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ruby/compiler/version' Gem::Specification.new do |spec| spec.name = "ruby-compiler" spec.version = ::Ruby::Compiler::VERSION spec.authors = ["Minqi Pan"] spec.email = ["pmq2001@gmail.com"] spec.summary = %q{Ruby compiler of Enclose.IO} spec.description = %q{Ruby compiler of Enclose.IO which compiles your app into a single executable.} spec.homepage = "https://github.com/enclose-io/ruby-compiler" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", ">= 1.13.3" spec.add_development_dependency "rake", ">= 11.3.0" spec.add_development_dependency "rspec", ">= 3.5.0" spec.add_development_dependency "pry", ">= 0.10.4" spec.add_development_dependency "codecov", '>= 0.1.6' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-compiler-0.1.0 | ruby-compiler.gemspec |