Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
source 'https://rubygems.org'

gem 'typescript-src', '~> 1.0' #path: '../typescript-src-ruby'

group :development do
gem "rake"
gem "rspec"
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript-node/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module TypeScript
module Node
VERSION = "0.0.5"
VERSION = "0.0.6"
end
end
2 changes: 1 addition & 1 deletion spec/typescript-node_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Node

its(:exit_status) { should == 0 }
it { should be_success }
its(:js) { should == "console.log(\"Hello TypeScript\");\r\n" }
its(:js) { should == "console.log(\"Hello TypeScript\");\n" }
its(:stdout) { should == "" }
its(:stderr) { should == "" }
end
Expand Down
2 changes: 0 additions & 2 deletions typescript-node.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,4 @@ Gem::Specification.new do |gem|
gem.name = "typescript-node"
gem.require_paths = ["lib"]
gem.version = TypeScript::Node::VERSION

gem.add_dependency 'typescript-src', '~> 0.8'
end