cache-buster 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/.travis.yml +4 -7
- data/lib/cache-buster/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTEzMTM4MWRiMzQ5ZGQxZGQ5YjllN2YyZGYxN2I4OTdhZjU0NTYxNA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MjM4MDFkNDU4NDcxYjg2MjUxN2EzZmJmMjZmZDQxMmY3ZjdkNjFmYQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YjhlNzZkMTQyZmFjZTg4N2M4ZTFmYzRlZjQ4NWIzODY4YjkyNTEyNDM4YmJk
|
|
10
|
+
NjJkODBkNTJkOGVkNzQ2ZTg2MTI1MWNmNjBiZTBkZGQxNzQwYzY0YzVjOWM2
|
|
11
|
+
YjhiNmVhN2Q1MzcwMTQ5YzViZDY5MGM1NjY1OTA1NWE2Y2Y5MjI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YjljOTFmNzc2OGNhZjllZjI4MDBmNDRhMjFjZDA2ZmRhZGYwNzY5MDgwMTg5
|
|
14
|
+
YWNmZmY2ODEyNDk3NWZkN2RlZDQ1NWQ1NmEwMDFhMmFhNDRhOTBhNDY2MGIw
|
|
15
|
+
MmJiYjhhMzFmMDg4OGZkNGRhY2JiYzgzMDk5M2I0YzJjNWU1MzA=
|
data/.travis.yml
CHANGED
|
@@ -30,10 +30,7 @@ after_success:
|
|
|
30
30
|
- '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl
|
|
31
31
|
-v -X POST -d ''{"ref":"refs/tags/''$GEM_VERSION''","sha":"''$TRAVIS_COMMIT''"}'' --header
|
|
32
32
|
"Content-Type:application/json" -u $GITHUB_USER:$GITHUB_PASSWORD "https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs"'
|
|
33
|
-
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
- git
|
|
37
|
-
- git add CHANGELOG.md
|
|
38
|
-
- git commit -m "Updated Changelog [ci skip]"
|
|
39
|
-
- git push "https://${CHANGELOG_GITHUB_TOKEN}@github.com/theodi/cache-buster" master
|
|
33
|
+
- '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] &&
|
|
34
|
+
gem install github_changelog_generator && github_changelog_generator && git config user.name "Travis CI" &&
|
|
35
|
+
git config user.email "travis@theodi.org" && git checkout master && git add CHANGELOG.md &&
|
|
36
|
+
git commit -m "Updated Changelog [ci skip]" && git push "https://${CHANGELOG_GITHUB_TOKEN}@github.com/theodi/cache-buster" master'
|
data/lib/cache-buster/version.rb
CHANGED