Skip to content

Commit e828964

Browse files
committed
Fixed all the non-ssl urls
[git-p4: depot-paths = "//src/hoe/dev/": change = 14963]
1 parent 5052a61 commit e828964

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.rdoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
= Hoe
22

3-
home :: http://www.zenspider.com/projects/hoe.html
3+
home :: https://zenspider.com/projects/hoe.html
44
code :: https://github.com/seattlerb/hoe
55
bugs :: https://github.com/seattlerb/hoe/issues
6-
rdoc :: http://docs.seattlerb.org/hoe/
7-
doco :: http://docs.seattlerb.org/hoe/Hoe.pdf
6+
rdoc :: https://docs.seattlerb.org/hoe/
7+
doco :: https://docs.seattlerb.org/hoe/Hoe.pdf
88
clog :: https://github.com/seattlerb/hoe/blob/master/History.rdoc
9-
other :: http://github.com/jbarnette/hoe-plugin-examples
9+
other :: https://github.com/jbarnette/hoe-plugin-examples
1010

1111
== DESCRIPTION:
1212

@@ -19,7 +19,7 @@ testing, packaging, deployment, and announcement.
1919
See class rdoc for help. Hint: `ri Hoe` or any of the plugins listed
2020
below.
2121

22-
For extra goodness, see: http://docs.seattlerb.org/hoe/Hoe.pdf
22+
For extra goodness, see: https://docs.seattlerb.org/hoe/Hoe.pdf
2323

2424
== FEATURES/PROBLEMS:
2525

@@ -205,7 +205,7 @@ Again, this must be done before the Hoe spec, or it won't be useful.
205205
* hoe-rubygems - A Hoe plugin with additional RubyGems tasks (John Barnette)
206206
* hoe-seattlerb - Hoe plugins providing tasks used by seattle.rb including minitest, perforce, and email providing full front-to-back release/announce automation. (Ryan Davis)
207207
* hoe-telicopter - Hoe plugin providing tasks used by hotelicopter, currently just the email plugin from the seattlerb plugin by Ryan Davis (jim nist)
208-
* hoe-travis - hoe-travis is a Hoe plugin that allows your gem to gain maximum benefit from http://travis-ci.org (Eric Hodel)
208+
* hoe-travis - hoe-travis is a Hoe plugin that allows your gem to gain maximum benefit from https://travis-ci.org (Eric Hodel)
209209
* hoe-version - Hoe plugin to provide rake tasks to bump version (bhenderson)
210210
* hoe-yard - A Hoe plugin for generating YARD documentation (Postmodern)
211211

test/test_hoe.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,13 +365,13 @@ def test_possibly_better
365365
spec.date = nil # forces Date.today. default switched to 1980 for some reason
366366

367367
urls = {
368-
"home" => "http://www.zenspider.com/projects/hoe.html",
368+
"home" => "https://www.zenspider.com/projects/hoe.html",
369369
"code" => "https://github.com/seattlerb/hoe",
370370
"bugs" => "https://github.com/seattlerb/hoe/issues",
371-
"rdoc" => "http://docs.seattlerb.org/hoe/",
372-
"doco" => "http://docs.seattlerb.org/hoe/Hoe.pdf",
371+
"rdoc" => "https://docs.seattlerb.org/hoe/",
372+
"doco" => "https://docs.seattlerb.org/hoe/Hoe.pdf",
373373
"clog" => "https://github.com/seattlerb/hoe/blob/master/History.rdoc",
374-
"other" => "http://github.com/jbarnette/hoe-plugin-examples",
374+
"other" => "https://github.com/jbarnette/hoe-plugin-examples",
375375
}
376376

377377
assert_equal urls, hoe.urls

0 commit comments

Comments
 (0)