forked from typescript-ruby/typescript-src-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypescript-src.gemspec
More file actions
22 lines (18 loc) · 789 Bytes
/
typescript-src.gemspec
File metadata and controls
22 lines (18 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'typescript-src/version'
Gem::Specification.new do |spec|
spec.name = "typescript-src"
spec.description = %q{TypeScript source files}
spec.summary = %q{TypeScript source files}
spec.authors = ["KAWACHI Takashi"]
spec.email = ["tkawachi@gmail.com"]
spec.homepage = 'https://github.com/typescript-ruby/typescript-src-ruby'
spec.license = 'Apache 2.0 License'
spec.files = `git ls-files`.split($\)
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_path = ['lib']
spec.version = TypeScript::Src::VERSION
spec.add_development_dependency 'rake'
end