Sha256: 71c968cd699438a0a2e282f4b90260003e34a78a7aa1badad74e84b8f309ddc5

Contents?: true

Size: 1.11 KB

Versions: 17

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

require_relative "lib/orthoses/version"

Gem::Specification.new do |spec|
  spec.name = "orthoses"
  spec.version = Orthoses::VERSION
  spec.authors = ["ksss"]
  spec.email = ["co000ri@gmail.com"]

  spec.summary = "Framework for Generate RBS"
  spec.description = "Build RBS by Rack base architecture"
  spec.homepage = "https://github.com/ksss/orthoses"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage

  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject do |f|
      next true if (f == __FILE__)
      next true if f.match?(%r{\A(?:bin|known_sig)/}) # dir
      next true if f.match?(%r{\A\.(?:git)}) # git
      next true if f.match?(%r{\A(?:rbs_collection|Steepfile|Rakefile)}) # top file
      next true if f.match?(%r{_test\.rb\z}) # test
      false
    end
  end

  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "rbs", "~> 2.0"
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
orthoses-1.5.0 orthoses.gemspec
orthoses-1.4.0 orthoses.gemspec
orthoses-1.3.0 orthoses.gemspec
orthoses-1.2.0 orthoses.gemspec
orthoses-1.1.0 orthoses.gemspec
orthoses-1.0.0 orthoses.gemspec
orthoses-0.11.0 orthoses.gemspec
orthoses-0.10.0 orthoses.gemspec
orthoses-0.9.0 orthoses.gemspec
orthoses-0.8.0 orthoses.gemspec
orthoses-0.7.0 orthoses.gemspec
orthoses-0.6.0 orthoses.gemspec
orthoses-0.5.0 orthoses.gemspec
orthoses-0.4.0 orthoses.gemspec
orthoses-0.3.0 orthoses.gemspec
orthoses-0.2.0 orthoses.gemspec
orthoses-0.1.0 orthoses.gemspec