Skip to content

Commit

Permalink
Prepared v0.6.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bdrazhzhov committed Jul 26, 2016
1 parent cbdf1a0 commit 31e2e4f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.6.2.1 2016-07-26 18:27:00+0300

* Added Sprockets 4 support. Thanks to @mihai-dinculescu

## v0.6.2 2015-07-27 21:52:50+0300

* Updated to TS v1.6.2
Expand Down
2 changes: 1 addition & 1 deletion lib/typescript/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Typescript
module Rails
VERSION = '0.6.2'
VERSION = '0.6.2.1'
end
end
10 changes: 5 additions & 5 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'coveralls'
require 'simplecov'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new[
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
]
Expand All @@ -12,15 +12,15 @@
end

# Configure Rails environment
ENV["RAILS_ENV"] = "test"
ENV['RAILS_ENV'] = 'test'

require 'rails'
require "rails/test_help"
require 'rails/test_help'
require 'minitest-power_assert'

def copy_routes
routes = File.expand_path("../support/routes.rb", __FILE__)
destination = File.join(destination_root, "config")
routes = File.expand_path('../support/routes.rb', __FILE__)
destination = File.join(destination_root, 'config')

FileUtils.mkdir_p(destination)
FileUtils.cp routes, destination
Expand Down

0 comments on commit 31e2e4f

Please sign in to comment.