Sha256: 5e40b33ccf0141d6c0b153e183b09d742be9ffe1cdfa3258dbd196b31997f380

Contents?: true

Size: 1.6 KB

Versions: 2

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mwc/version'

Gem::Specification.new do |spec|
  spec.name          = 'mwc'
  spec.version       = Mwc::VERSION
  spec.authors       = ['蒼時弦也']
  spec.email         = ['contact0@frost.tw']

  spec.summary       = 'The command line tool to compile mruby to WebAssembly'
  spec.description   = 'The command line tool to compile mruby to WebAssembly'
  spec.homepage      = 'https://github.com/elct9620/mwc'
  spec.license       = 'MIT'

  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/elct9620/mwc'
  # spec.metadata["changelog_uri"] = "TODO"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files
  # in the RubyGem that have been added into git.
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`
      .split("\x0")
      .reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'rack', '~> 2.0.7'
  spec.add_runtime_dependency 'rake', '~> 10.0'
  spec.add_runtime_dependency 'thor', '~> 0.20.3'

  spec.add_development_dependency 'bundler', '~> 2.0'
  spec.add_development_dependency 'bundler-audit', '~> 0.6.1'
  spec.add_development_dependency 'overcommit', '~> 0.51.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'rubocop', '~> 0.76.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mwc-0.3.0 mwasm.gemspec
mwc-0.2.0 mwasm.gemspec