From 271dc4dd5ae319b20a9e3d0d96c8def5111a9925 Mon Sep 17 00:00:00 2001 From: Seth Call Date: Fri, 4 Apr 2014 16:48:20 +0100 Subject: [PATCH] * updating to the 1.0 src --- Gemfile | 2 ++ lib/typescript-node/version.rb | 2 +- spec/typescript-node_spec.rb | 2 +- typescript-node.gemspec | 2 -- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 4fda7e4..9cea697 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,7 @@ source 'https://rubygems.org' +gem 'typescript-src', '~> 1.0' #path: '../typescript-src-ruby' + group :development do gem "rake" gem "rspec" diff --git a/lib/typescript-node/version.rb b/lib/typescript-node/version.rb index 078e1d6..adfcffc 100644 --- a/lib/typescript-node/version.rb +++ b/lib/typescript-node/version.rb @@ -1,5 +1,5 @@ module TypeScript module Node - VERSION = "0.0.5" + VERSION = "0.0.6" end end diff --git a/spec/typescript-node_spec.rb b/spec/typescript-node_spec.rb index a916ad3..d4573bc 100644 --- a/spec/typescript-node_spec.rb +++ b/spec/typescript-node_spec.rb @@ -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 diff --git a/typescript-node.gemspec b/typescript-node.gemspec index 4897183..15b181d 100644 --- a/typescript-node.gemspec +++ b/typescript-node.gemspec @@ -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