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 'rubocop'
gem 'coveralls', require: false
gem 'simplecov', require: false
end

View File

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

View File

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