Skip to content

Commit

Permalink
Merge pull request #40 from webhippie/version-bump
Browse files Browse the repository at this point in the history
Bumped version to 1.3.0
  • Loading branch information
tboerger authored Mar 16, 2017
2 parents 18b5414 + 365902f commit 46c58db
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 21 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.3.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v1.3.0) - 2017-03-16

* Fixed Handlebars translations with options (@mikezaby)
* Fixed latest Rubocop offenses (@mikezaby)
* Dropped failing coveralls, fixed codeclimate (@tboerger)

## [1.2.0](https://github.com/webhippie/gettext_i18n_rails_js/releases/tag/v1.2.0) - 2016-06-02

* Support for JSX files (@artemv)
Expand Down
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ end

group :test do
gem "codeclimate-test-reporter", require: false
gem "coveralls", require: false
gem "rubocop", require: false
gem "simplecov", require: false
end
Expand Down
2 changes: 1 addition & 1 deletion lib/gettext_i18n_rails_js/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
module GettextI18nRailsJs
class Version
MAJOR = 1
MINOR = 2
MINOR = 3
PATCH = 0

PRE = nil
Expand Down
22 changes: 3 additions & 19 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,10 @@
#

require "simplecov"
require "codeclimate-test-reporter" if ENV["CODECLIMATE_REPO_TOKEN"]

if ENV["CODECLIMATE_REPO_TOKEN"]
require "coveralls"
require "codeclimate-test-reporter"

Coveralls.wear!
CodeClimate::TestReporter.start

SimpleCov.start do
add_filter "/spec"

formatter SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
CodeClimate::TestReporter::Formatter
]
end
else
SimpleCov.start do
add_filter "/spec"
end
SimpleCov.start do
add_filter "/spec"
end

require "gettext_i18n_rails_js"
Expand Down

0 comments on commit 46c58db

Please sign in to comment.