-
Notifications
You must be signed in to change notification settings - Fork 1
/
typescript-monkey.gemspec
34 lines (26 loc) · 1.14 KB
/
typescript-monkey.gemspec
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
29
30
31
32
33
34
#
# typescript-monkey.gemspec
#
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'date'
require 'typescript/monkey'
Gem::Specification.new do |spec|
spec.name = "typescript-monkey"
spec.version = Typescript::Monkey::VERSION
spec.date = Date.today.to_s
spec.platform = Gem::Platform::RUBY
spec.authors = ["Mark Eissler"]
spec.email = "[email protected]"
spec.summary = %q{A TypeScript transpiler engine for the Rails asset pipeline.}
spec.description = %q{Adds TypeScript to JavaScript transpilation support to the Rails Asset pipeline.}
spec.homepage = "https://github.com/markeissler/typescript-monkey"
spec.license = "MIT"
spec.add_runtime_dependency 'tilt', '~> 2.0', '>= 2.0.0'
spec.add_runtime_dependency 'railties', '>= 4.0.0', '< 5.0.0'
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 2.0.0'
end