typescript-src 0.8.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +19 -0
- data/Gemfile +5 -0
- data/LICENSE +55 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/lib/support/lib.d.ts +7677 -0
- data/lib/support/tsc +2 -0
- data/lib/support/tsc.js +24764 -0
- data/lib/support/typescript.js +23763 -0
- data/lib/typescript-src.rb +21 -0
- data/typescript-src.gemspec +12 -0
- metadata +62 -0
@@ -0,0 +1,21 @@
|
|
1
|
+
module TypeScript
|
2
|
+
module Src
|
3
|
+
class << self
|
4
|
+
def root
|
5
|
+
File.expand_path("..", File.dirname(__FILE__))
|
6
|
+
end
|
7
|
+
|
8
|
+
def tsc_path
|
9
|
+
root + "/lib/support/tsc"
|
10
|
+
end
|
11
|
+
|
12
|
+
def js_path
|
13
|
+
root + "/lib/support/typescript.js"
|
14
|
+
end
|
15
|
+
|
16
|
+
def js_content
|
17
|
+
File.read(js_path)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
Gem::Specification.new do |gem|
|
3
|
+
gem.authors = ["KAWACHI Takashi"]
|
4
|
+
gem.email = ["tkawachi@gmail.com"]
|
5
|
+
gem.description = %q{TypeScript source}
|
6
|
+
gem.summary = %q{TypeScript source files}
|
7
|
+
gem.homepage = ""
|
8
|
+
|
9
|
+
gem.files = `git ls-files`.split($\)
|
10
|
+
gem.name = "typescript-src"
|
11
|
+
gem.version = "0.8.1.1"
|
12
|
+
end
|
metadata
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: typescript-src
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.8.1.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- KAWACHI Takashi
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-12-09 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: TypeScript source
|
15
|
+
email:
|
16
|
+
- tkawachi@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- lib/support/lib.d.ts
|
27
|
+
- lib/support/tsc
|
28
|
+
- lib/support/tsc.js
|
29
|
+
- lib/support/typescript.js
|
30
|
+
- lib/typescript-src.rb
|
31
|
+
- typescript-src.gemspec
|
32
|
+
homepage: ''
|
33
|
+
licenses: []
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options: []
|
36
|
+
require_paths:
|
37
|
+
- lib
|
38
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
segments:
|
45
|
+
- 0
|
46
|
+
hash: 4610804846943903220
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
none: false
|
49
|
+
requirements:
|
50
|
+
- - ! '>='
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: '0'
|
53
|
+
segments:
|
54
|
+
- 0
|
55
|
+
hash: 4610804846943903220
|
56
|
+
requirements: []
|
57
|
+
rubyforge_project:
|
58
|
+
rubygems_version: 1.8.24
|
59
|
+
signing_key:
|
60
|
+
specification_version: 3
|
61
|
+
summary: TypeScript source files
|
62
|
+
test_files: []
|