Merge branch 'develop'

This commit is contained in:
Petr Korolev 2015-03-29 22:44:58 +03:00
commit 5c66591d71
4 changed files with 24 additions and 10 deletions

View File

@ -1,17 +1,17 @@
---
sudo: false sudo: false
cache: bundler cache: bundler
language: ruby language: ruby
rvm: rvm:
- 2.1.0 - 2.1.0
script: script:
- bundle exec rake - bundle exec rake
notifications: notifications:
email: email:
recipients: recipients:
- sky4winder+githubchangeloggenerator@gmail.com - sky4winder+githubchangeloggenerator@gmail.com
on_success: never # [always|never|change] on_success: never
on_failure: change # [always|never|change] on_failure: change
addons:
code_climate:
repo_token:
secure: iMpV5IAvH+/EVGZrpWnt2BnmNFzSbsRcIumsr4ZyLC8N5nrCSXyjCSy0g48btL3Sj0bSgK9hcrJsmrFd2bkqFleyAcPAzNyUQzBuIRZx47O8yFmbZ+Pj+l3+KOlmcbzJNHfDfxkxuWTmTAcSDfsiyApin721T/ey3SUuwKpZNUc=

View File

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

View File

@ -5,6 +5,8 @@ GEM
ast (2.0.0) ast (2.0.0)
astrolabe (1.3.0) astrolabe (1.3.0)
parser (>= 2.2.0.pre.3, < 3.0) parser (>= 2.2.0.pre.3, < 3.0)
codeclimate-test-reporter (0.4.7)
simplecov (>= 0.7.1, < 1.0.0)
colorize (0.7.5) colorize (0.7.5)
coveralls (0.7.12) coveralls (0.7.12)
multi_json (~> 1.10) multi_json (~> 1.10)
@ -94,9 +96,11 @@ PLATFORMS
ruby ruby
DEPENDENCIES DEPENDENCIES
codeclimate-test-reporter
colorize colorize
coveralls coveralls
github_api github_api
rake rake
rspec rspec
rubocop rubocop
simplecov

View File

@ -15,8 +15,16 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
require 'codeclimate-test-reporter'
require 'simplecov'
require 'coveralls' require 'coveralls'
Coveralls.wear!
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
Coveralls::SimpleCov::Formatter,
SimpleCov::Formatter::HTMLFormatter,
CodeClimate::TestReporter::Formatter
]
SimpleCov.start
require 'github_changelog_generator' require 'github_changelog_generator'