diff --git a/.simplecov b/.simplecov deleted file mode 100644 index 1711702..0000000 --- a/.simplecov +++ /dev/null @@ -1,9 +0,0 @@ -SimpleCov.start do - add_filter '/test/' - add_filter '/vendor/' -end - -SimpleCov.at_exit do - SimpleCov.result.format! - `open ./coverage/index.html` if RUBY_PLATFORM =~ /darwin/ -end diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 1b8c3d6..0000000 --- a/.travis.yml +++ /dev/null @@ -1,29 +0,0 @@ -sudo: false -language: ruby -cache: bundler -rvm: - - 2.4.9 - - 2.5.7 - - 2.6.5 - - 2.7.1 - - ruby-head - -before_install: - - git --version - - git config --global user.email "lol@commits.org" - - git config --global user.name "Lolcommits" - -matrix: - allow_failures: - - rvm: ruby-head - -env: - global: - - CC_TEST_REPORTER_ID=a11f4b88e9bad7b922ca0ce5c70e369d1fd704c1b7c08c5b9e273e29a8c73345 - - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) -before_script: - - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - - chmod +x ./cc-test-reporter - - ./cc-test-reporter before-build - GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi) -after_script: - - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT