Skip to content

Commit 31e2e4f

Browse files
committed
Prepared v0.6.2.1
1 parent cbdf1a0 commit 31e2e4f

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.6.2.1 2016-07-26 18:27:00+0300
2+
3+
* Added Sprockets 4 support. Thanks to @mihai-dinculescu
4+
15
## v0.6.2 2015-07-27 21:52:50+0300
26

37
* Updated to TS v1.6.2

lib/typescript/rails/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Typescript
22
module Rails
3-
VERSION = '0.6.2'
3+
VERSION = '0.6.2.1'
44
end
55
end

test/test_helper.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
require 'coveralls'
44
require 'simplecov'
55

6-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
6+
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new[
77
SimpleCov::Formatter::HTMLFormatter,
88
Coveralls::SimpleCov::Formatter
99
]
@@ -12,15 +12,15 @@
1212
end
1313

1414
# Configure Rails environment
15-
ENV["RAILS_ENV"] = "test"
15+
ENV['RAILS_ENV'] = 'test'
1616

1717
require 'rails'
18-
require "rails/test_help"
18+
require 'rails/test_help'
1919
require 'minitest-power_assert'
2020

2121
def copy_routes
22-
routes = File.expand_path("../support/routes.rb", __FILE__)
23-
destination = File.join(destination_root, "config")
22+
routes = File.expand_path('../support/routes.rb', __FILE__)
23+
destination = File.join(destination_root, 'config')
2424

2525
FileUtils.mkdir_p(destination)
2626
FileUtils.cp routes, destination

0 commit comments

Comments
 (0)