forked from typescript-ruby/typescript-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtypescript-sprockets.gemspec
More file actions
28 lines (22 loc) · 1.07 KB
/
typescript-sprockets.gemspec
File metadata and controls
28 lines (22 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
# frozen_string_literal: true
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'typescript/sprockets/version'
Gem::Specification.new do |gem|
gem.name = 'typescript-sprockets'
gem.version = Typescript::Sprockets::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ['Preetpal Sohal', 'FUJI, Goro', 'Klaus Zanders']
gem.email = %w[preetpal.sohal@gmail.com]
gem.description = 'Adds Typescript support to Sprockets'
gem.summary = 'Adds Typescript support to Sprockets'
gem.homepage = 'https://github.com/preetpalS/typescript-sprockets'
# gem.add_runtime_dependency 'typescript-node', '>= 1.6.2'
# gem.add_runtime_dependency 'sprockets', '~> 3.7'
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
# gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
# gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.required_ruby_version = '>= 2.0.0'
end