Sha256: 9c4a2f9e1dab942aafcddee5eaf2dfc5655ac768e4763a191bccfe8f61305e0c

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

# coding: utf-8
# frozen_string_literal: true

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "ts_routes/version"

Gem::Specification.new do
  # @type [Gem::Specification] spec
  |spec|

  spec.name          = "ts_routes"
  spec.version       = TsRoutes::VERSION
  spec.authors       = ["FUJI Goro (gfx)"]
  spec.email         = ["gfuji@cpan.org"]

  spec.summary       = %q{Rails routing helpers for TypeScript}
  spec.description   = %q{Rails routing helpers for TypeScript, inspired by js-routes (https://github.com/railsware/js-routes)}
  spec.homepage      = "https://github.com/bitjourney/ts_routes-rails"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |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.required_ruby_version = ">= 2.3.0"

  spec.add_runtime_dependency "railties", "~> 5.0"

  spec.add_development_dependency "bundler", "~> 1.15"
  spec.add_development_dependency "rake", "~> 12.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ts_routes-1.0.0 ts_routes.gemspec