typescript-rails 0.6.1 → 0.6.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 12b34eef815a13faa19f11068207bde9a2f20666
4
- data.tar.gz: d3dc1fe08e816f00076ae45a74f5d43cee3bddef
3
+ metadata.gz: c751b651761e7485f8f819bc2f5532a4e7f14143
4
+ data.tar.gz: 2a478762b57661926b117d59a09401b358113023
5
5
  SHA512:
6
- metadata.gz: 7d0f7f40795925464b174f2aa2b504b81bf6ff10edec21b71197ed19d47e0375ef3bd11fccea9a63e81991c9062306e135d9847d201e9fce07aa5ca8d5f67f5d
7
- data.tar.gz: 5356b4cd32b7b496036df786e9170960a12b4c67d2d18c2d29b9d6e2489e660db02369452e8a92df9e7d3387c184f7fd075de1f2eaaae91e6dd3cf5ced3b90dc
6
+ metadata.gz: 5f87b29a0618c3a6351039d2f3023ae7f4b9a2a447d9c836fb498a706b7d746edb601e103abc89ece0d65ed6c6f1e60c970700686e146bc780a089f12403b94c
7
+ data.tar.gz: 8f0f2dfe8aa3c913760744eecaf904de261bc46b462c52b96001da155225ed182299e8fd42d6f90f6219a21b7ae15900f575d38a3b6e11d747a5e5173a61fb15
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v0.6.1 2015-07-27 21:52:50+0300
2
+
3
+ * Now code raises exception with correct file name when TS compilation error occurs
4
+
1
5
  ## v0.6.0 2015-07-06 22:36:25+0300
2
6
 
3
7
  * Updated version to 0.6.0 for using Typescript source 1.4.1.3
data/Gemfile CHANGED
@@ -9,5 +9,6 @@ group :test do
9
9
  gem 'minitest-power_assert'
10
10
  gem 'coveralls'
11
11
  gem 'simplecov'
12
+ gem 'tzinfo-data', platforms: [:mingw, :mswin]
12
13
  end
13
14
 
@@ -60,7 +60,7 @@ module Typescript::Rails::Compiler
60
60
  begin
61
61
  ::TypeScript::Node.compile(s, *default_options, *options)
62
62
  rescue Exception => e
63
- raise "Compilation error in file '#{ts_path}':\n#{e.message}"
63
+ raise "Typescript error in file '#{ts_path}':\n#{e.message}"
64
64
  end
65
65
  end
66
66
 
@@ -1,5 +1,5 @@
1
1
  module Typescript
2
2
  module Rails
3
- VERSION = '0.6.1'
3
+ VERSION = '0.6.2'
4
4
  end
5
5
  end
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
14
14
  gem.summary = %q{Adds Typescript to the Rails Asset pipeline}
15
15
  gem.homepage = 'https://github.com/typescript-ruby/typescript-rails'
16
16
 
17
- gem.add_runtime_dependency 'typescript-node', '>= 1.4.1'
17
+ gem.add_runtime_dependency 'typescript-node', '>= 1.6.2'
18
18
  gem.add_runtime_dependency 'tilt'
19
19
  gem.add_runtime_dependency 'railties'
20
20
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typescript-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1
4
+ version: 0.6.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - FUJI, Goro
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-07-27 00:00:00.000000000 Z
12
+ date: 2015-09-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: typescript-node
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - ">="
19
19
  - !ruby/object:Gem::Version
20
- version: 1.4.1
20
+ version: 1.6.2
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - ">="
26
26
  - !ruby/object:Gem::Version
27
- version: 1.4.1
27
+ version: 1.6.2
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: tilt
30
30
  requirement: !ruby/object:Gem::Requirement
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
114
114
  version: '0'
115
115
  requirements: []
116
116
  rubyforge_project:
117
- rubygems_version: 2.0.15
117
+ rubygems_version: 2.2.3
118
118
  signing_key:
119
119
  specification_version: 4
120
120
  summary: Adds Typescript to the Rails Asset pipeline