Merge branch 'feature/simplecov-intergration' into develop

This commit is contained in:
Petr Korolev 2015-03-29 21:47:16 +03:00
commit 4b0642cc6d
3 changed files with 8 additions and 1 deletions

View File

@ -9,4 +9,5 @@ group :test do
gem 'rspec' gem 'rspec'
gem 'rubocop' gem 'rubocop'
gem 'coveralls', require: false gem 'coveralls', require: false
gem 'simplecov', require: false
end end

View File

@ -100,3 +100,4 @@ DEPENDENCIES
rake rake
rspec rspec
rubocop rubocop
simplecov

View File

@ -16,7 +16,12 @@
# limitations under the License. # limitations under the License.
# #
require 'coveralls' require 'coveralls'
Coveralls.wear! require 'simplecov'
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
]
SimpleCov.start
require 'github_changelog_generator' require 'github_changelog_generator'