typescript-node 0.0.1 → 0.0.2
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/.travis.yml +17 -0
- data/README.md +4 -4
- data/lib/typescript-node/version.rb +1 -1
- data/typescript-node.gemspec +1 -1
- metadata +5 -4
data/.travis.yml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
language: ruby
|
|
2
|
+
rvm:
|
|
3
|
+
- 1.8.7
|
|
4
|
+
- 1.9.3
|
|
5
|
+
- 1.9.2
|
|
6
|
+
- 2.0.0
|
|
7
|
+
- rbx-19mode
|
|
8
|
+
- jruby-18mode
|
|
9
|
+
- jruby-19mode
|
|
10
|
+
- ree
|
|
11
|
+
script: bundle exec rspec
|
|
12
|
+
matrix:
|
|
13
|
+
allow_failures:
|
|
14
|
+
- rvm: 1.8.7
|
|
15
|
+
- rvm: jruby-18mode
|
|
16
|
+
- rvm: jruby-19mode
|
|
17
|
+
- rvm: ree
|
data/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
# Typescript::Node
|
|
1
|
+
# Typescript::Node
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://travis-ci.org/tkawachi/typescript-node-ruby)
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
|
-
gem 'typescript-node
|
|
9
|
+
gem 'typescript-node'
|
|
10
10
|
|
|
11
11
|
And then execute:
|
|
12
12
|
|
|
@@ -14,7 +14,7 @@ And then execute:
|
|
|
14
14
|
|
|
15
15
|
Or install it yourself as:
|
|
16
16
|
|
|
17
|
-
$ gem install typescript-node
|
|
17
|
+
$ gem install typescript-node
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
data/typescript-node.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
|
|
|
6
6
|
gem.email = ["tkawachi@gmail.com"]
|
|
7
7
|
gem.description = %q{TypeScript ruby interface using Node.js}
|
|
8
8
|
gem.summary = %q{TypeScript ruby interface using Node.js}
|
|
9
|
-
gem.homepage = ""
|
|
9
|
+
gem.homepage = "https://github.com/tkawachi/typescript-node-ruby"
|
|
10
10
|
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: typescript-node
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -35,6 +35,7 @@ extensions: []
|
|
|
35
35
|
extra_rdoc_files: []
|
|
36
36
|
files:
|
|
37
37
|
- .gitignore
|
|
38
|
+
- .travis.yml
|
|
38
39
|
- Gemfile
|
|
39
40
|
- LICENSE
|
|
40
41
|
- README.md
|
|
@@ -45,7 +46,7 @@ files:
|
|
|
45
46
|
- spec/data/hello.ts
|
|
46
47
|
- spec/typescript-node_spec.rb
|
|
47
48
|
- typescript-node.gemspec
|
|
48
|
-
homepage:
|
|
49
|
+
homepage: https://github.com/tkawachi/typescript-node-ruby
|
|
49
50
|
licenses: []
|
|
50
51
|
post_install_message:
|
|
51
52
|
rdoc_options: []
|
|
@@ -59,7 +60,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
59
60
|
version: '0'
|
|
60
61
|
segments:
|
|
61
62
|
- 0
|
|
62
|
-
hash:
|
|
63
|
+
hash: 3001547684133922156
|
|
63
64
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
65
|
none: false
|
|
65
66
|
requirements:
|
|
@@ -68,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
68
69
|
version: '0'
|
|
69
70
|
segments:
|
|
70
71
|
- 0
|
|
71
|
-
hash:
|
|
72
|
+
hash: 3001547684133922156
|
|
72
73
|
requirements: []
|
|
73
74
|
rubyforge_project:
|
|
74
75
|
rubygems_version: 1.8.24
|