github_pages_rake_tasks 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +19 -10
- data/README.md +6 -0
- data/lib/github_pages_rake_tasks/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5642ae6ed4b5706f946490eaa7f0a8bbd071026f
|
4
|
+
data.tar.gz: c2a14299b7292f34b8b5a7e189fd4900f61bee2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9ebd28e31604ae7b739db7674eee4b653f36863edeae6e1b1325aabe3b7ccdabc6526e6a67da873a8f1884d0bae519844614c830d6edaa7e7c5ccc7ad96e03c
|
7
|
+
data.tar.gz: c81a03adc405ee987018849c0a1249ced1abca78300ac1034c3707b8df20942857667fa2c079d6ece1cbaa781495d36d0d06b1912937584400effdccfcb0146b
|
data/.travis.yml
CHANGED
@@ -1,19 +1,28 @@
|
|
1
|
+
---
|
1
2
|
language: ruby
|
2
3
|
|
3
|
-
cache: bundler
|
4
|
-
|
5
4
|
rvm:
|
6
|
-
- 2.
|
7
|
-
- 2.4
|
5
|
+
- &release_rvm 2.4
|
8
6
|
- 2.5
|
9
7
|
- 2.6
|
10
8
|
|
9
|
+
cache: bundler
|
10
|
+
|
11
11
|
before_install: gem install bundler -v 2.0.1
|
12
12
|
|
13
13
|
deploy:
|
14
|
-
provider: rubygems
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
14
|
+
- provider: rubygems
|
15
|
+
api_key:
|
16
|
+
secure: HA1sMG5jqnSSpcIEi0Ej3HDAzff5dMNvGeb1FK5BAnfV+C5pHTkUU26+fEUmrr31nDeU3hgEv+rDdz7+Udt5hO9NGIF3bRhlqBYkkaIwLfOragaoROyq+tAPag7Mm5VKfzbXYE7dqEDZSQLjHIiY3UxksNnV3kQ+VvXL1eHg5n765EnwJP2F+FYWd7NBaq+QitdKEUZlY1Xktyq+5Isk7g0mYKZEf8K1S7MU79m4vHLI6GAT2sTCxGSsAAJejL7OYNF7Yo/8DcIsyqQjjJmkZVbHfIgpw9GrQVILNeP+4tA4LdZ9us/uk+VyM5iWMdAvQk9MW3Sl3VNo2fj9IYkOtTpqPiHoWD/zKdjI0qeDFLhaj7inSvLsXRL3IAibGV0zaNi7pNg5bwL4jKcXQDeJri4m0eKfYZQKOXQ9NqbnAHUiSrpdgJxbzmaZvMfIEI18aBXa3xdKKdBQk0ogeh2FvqIL7dCHamMsyAZRWIqOLiKwNnZ2o/4JvCgnELPo/nhmvdAE08KV4i3TE8eHBipY6ZLIThVMNURGAF9Le4bcFrGcCvPVEvzPXHV9QE91cQ8mN9NM9Rz3SZuqvSIwLGDAmor5oyxnWr9Vwm2S/7OAxdD2X2l+sTks0U/EXQ+I+axEexMUgCOgUChSz8pAHxujc+/nRLJ4VE/MZ1ZO7KMAMok=
|
17
|
+
gem: github_pages_rake_tasks
|
18
|
+
on:
|
19
|
+
repo: jcouball/github_pages_rake_tasks
|
20
|
+
branch: master
|
21
|
+
rvm: *release_rvm
|
22
|
+
- provider: pages
|
23
|
+
skip_cleanup: true
|
24
|
+
github_token: $GITHUB_TOKEN
|
25
|
+
keep_history: true
|
26
|
+
on:
|
27
|
+
branch: master
|
28
|
+
rvm: *release_rvm
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Publish Documentation to GitHub Pages
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/github_pages_rake_tasks.svg)](https://badge.fury.io/rb/github_pages_rake_tasks)
|
4
|
+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
3
5
|
[![Build Status](https://travis-ci.com/jcouball/github_pages_rake_tasks.svg?branch=master)](https://travis-ci.com/jcouball/github_pages_rake_tasks)
|
4
6
|
|
5
7
|
The `github_pages_rake_tasks` gem creates a rake task that pushes the contents
|
@@ -61,3 +63,7 @@ commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.or
|
|
61
63
|
## Contributing
|
62
64
|
|
63
65
|
Bug reports and pull requests are welcome on GitHub at https://github.com/jcouball/github_pages_rake_tasks.
|
66
|
+
|
67
|
+
## Copyright and License
|
68
|
+
|
69
|
+
Copyright © 2019 James Couball. Free use of this software is granted under the terms of the MIT License. See LICENSE for details.
|