Merge branch 'feature/simplecov-intergration' into develop

This commit is contained in:
Petr Korolev
2015-03-29 21:47:16 +03:00
3 changed files with 8 additions and 1 deletions
+1
View File
@@ -9,4 +9,5 @@ group :test do
gem 'rspec'
gem 'rubocop'
gem 'coveralls', require: false
gem 'simplecov', require: false
end
+1
View File
@@ -100,3 +100,4 @@ DEPENDENCIES
rake
rspec
rubocop
simplecov
+6 -1
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'