Sha256: afe728b9c7cc9d90d123ab4838390cd18e72a0b574d048625259146f4c4a1202

Contents?: true

Size: 1.76 KB

Versions: 2

Compression:

Stored size: 1.76 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'steep/version'

Gem::Specification.new do |spec|
  spec.name          = "steep"
  spec.version       = Steep::VERSION
  spec.authors       = ["Soutaro Matsumoto"]
  spec.email         = ["matsumoto@soutaro.com"]

  spec.summary       = %q{Gradual Typing for Ruby}
  spec.description   = %q{Gradual Typing for Ruby}
  spec.homepage      = "https://github.com/soutaro/steep"
  spec.license       = 'MIT'

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/soutaro/steep"
  spec.metadata["changelog_uri"] = "https://github.com/soutaro/steep/blob/master/CHANGELOG.md"

  spec.files         = `git ls-files -z`.split("\x0").reject {|f|
    f.match(%r{^(test|spec|features)/})
  }

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

  spec.required_ruby_version = '>= 2.7.0'

  spec.add_runtime_dependency "parser", ">= 3.1"
  spec.add_runtime_dependency "activesupport", ">= 5.1"
  spec.add_runtime_dependency "rainbow", ">= 2.2.2", "< 4.0"
  spec.add_runtime_dependency "listen", "~> 3.0"
  spec.add_runtime_dependency "language_server-protocol", ">= 3.15", "< 4.0"
  spec.add_runtime_dependency "rbs", ">= 2.8.0"
  spec.add_runtime_dependency "parallel", ">= 1.0.0"
  spec.add_runtime_dependency "terminal-table", ">= 2", "< 4"
  spec.add_runtime_dependency "securerandom", ">= 0.1"
  spec.add_runtime_dependency "json", ">= 2.1.0"
  spec.add_runtime_dependency "logger", ">= 1.3.0"
  spec.add_runtime_dependency "fileutils", ">= 1.1.0"
  spec.add_runtime_dependency "strscan", ">= 1.0.0"
  spec.add_runtime_dependency "csv", ">= 3.0.9"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
steep-1.4.0.dev.4 steep.gemspec
steep-1.4.0.dev.3 steep.gemspec