meta-tags 2.9.0 → 2.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +0,0 @@
1
- 2.3.1
@@ -1,33 +0,0 @@
1
- sudo: false
2
- cache: bundler
3
-
4
- env:
5
- global:
6
- - CC_TEST_REPORTER_ID=8792cbc0d1780830ddd3dd7eb1c25f09f386ba8f04449ad830039469406a6ab3
7
- - 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)
8
- - ENABLE_CODE_COVERAGE=1
9
- matrix:
10
- - RAILS_VERSION=4.2.10
11
- - RAILS_VERSION=5.0.6
12
- - RAILS_VERSION=5.1.5
13
-
14
- rvm:
15
- - 2.2.10
16
- - 2.3.7
17
- - 2.4.4
18
- - 2.5.1
19
-
20
- notifications:
21
- recipients:
22
- - kpumuk@kpumuk.info
23
-
24
- before_install:
25
- - gem update --system
26
- - gem install bundler -v 1.16.1
27
-
28
- before_script:
29
- - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
30
- - chmod +x ./cc-test-reporter
31
-
32
- after_script:
33
- - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT --coverage-input-type simplecov || true; fi
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "meta_tags"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here