Skip to content

Commit

Permalink
Use https for links where available.
Browse files Browse the repository at this point in the history
  • Loading branch information
philr committed Mar 23, 2020
1 parent 075d5e3 commit 1f81e20
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
24 changes: 12 additions & 12 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,70 +202,70 @@ Version 0.3.45 (tzdata v2015g) - 3-Oct-2015
-------------------------------------------

* Updated to tzdata version 2015g
(http://mm.icann.org/pipermail/tz-announce/2015-October/000034.html).
(https://mm.icann.org/pipermail/tz-announce/2015-October/000034.html).


Version 0.3.44 (tzdata v2015d) - 24-Apr-2015
--------------------------------------------

* Updated to tzdata version 2015d
(http://mm.icann.org/pipermail/tz-announce/2015-April/000031.html).
(https://mm.icann.org/pipermail/tz-announce/2015-April/000031.html).


Version 0.3.43 (tzdata v2015a) - 31-Jan-2015
--------------------------------------------

* Updated to tzdata version 2015a
(http://mm.icann.org/pipermail/tz-announce/2015-January/000028.html).
(https://mm.icann.org/pipermail/tz-announce/2015-January/000028.html).


Version 0.3.42 (tzdata v2014i) - 23-Oct-2014
--------------------------------------------

* Updated to tzdata version 2014i
(http://mm.icann.org/pipermail/tz-announce/2014-October/000026.html).
(https://mm.icann.org/pipermail/tz-announce/2014-October/000026.html).


Version 0.3.41 (tzdata v2014f) - 8-Aug-2014
-------------------------------------------

* Updated to tzdata version 2014f
(http://mm.icann.org/pipermail/tz-announce/2014-August/000023.html).
(https://mm.icann.org/pipermail/tz-announce/2014-August/000023.html).


Version 0.3.40 (tzdata v2014e) - 10-Jul-2014
--------------------------------------------

* Updated to tzdata version 2014e
(http://mm.icann.org/pipermail/tz-announce/2014-June/000022.html).
(https://mm.icann.org/pipermail/tz-announce/2014-June/000022.html).


Version 0.3.39 (tzdata v2014a) - 9-Mar-2014
-------------------------------------------

* Updated to tzdata version 2014a
(http://mm.icann.org/pipermail/tz-announce/2014-March/000018.html).
(https://mm.icann.org/pipermail/tz-announce/2014-March/000018.html).


Version 0.3.38 (tzdata v2013g) - 8-Oct-2013
-------------------------------------------

* Updated to tzdata version 2013g
(http://mm.icann.org/pipermail/tz-announce/2013-October/000015.html).
(https://mm.icann.org/pipermail/tz-announce/2013-October/000015.html).


Version 0.3.37 (tzdata v2013b) - 11-Mar-2013
--------------------------------------------

* Updated to tzdata version 2013b
(http://mm.icann.org/pipermail/tz-announce/2013-March/000010.html).
(https://mm.icann.org/pipermail/tz-announce/2013-March/000010.html).


Version 0.3.36 (tzdata v2013a) - 3-Mar-2013
-------------------------------------------

* Updated to tzdata version 2013a
(http://mm.icann.org/pipermail/tz-announce/2013-March/000009.html).
(https://mm.icann.org/pipermail/tz-announce/2013-March/000009.html).
* Fix TimezoneTransitionInfo#eql? incorrectly returning false when running on
Ruby 2.0.
* Change eql? and == implementations to test the class of the passed in object
Expand All @@ -276,14 +276,14 @@ Version 0.3.35 (tzdata v2012i) - 4-Nov-2012
-------------------------------------------

* Updated to tzdata version 2012i
(http://mm.icann.org/pipermail/tz-announce/2012-November/000007.html).
(https://mm.icann.org/pipermail/tz-announce/2012-November/000007.html).


Version 0.3.34 (tzdata v2012h) - 27-Oct-2012
--------------------------------------------

* Updated to tzdata version 2012h
(http://mm.icann.org/pipermail/tz-announce/2012-October/000006.html).
(https://mm.icann.org/pipermail/tz-announce/2012-October/000006.html).


Version 0.3.33 (tzdata v2012c) - 8-Apr-2012
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
TZInfo - Ruby Timezone Library
==============================

[![Gem Version](https://badge.fury.io/rb/tzinfo.svg)](http://badge.fury.io/rb/tzinfo) [![Build Status](https://travis-ci.org/tzinfo/tzinfo.svg?branch=master)](https://travis-ci.org/tzinfo/tzinfo)
[![Gem Version](https://badge.fury.io/rb/tzinfo.svg)](https://badge.fury.io/rb/tzinfo) [![Build Status](https://travis-ci.org/tzinfo/tzinfo.svg?branch=master)](https://travis-ci.org/tzinfo/tzinfo)

[TZInfo](http://tzinfo.github.io) provides daylight savings aware
[TZInfo](https://tzinfo.github.io) provides daylight savings aware
transformations between times in different timezones.


Expand All @@ -13,10 +13,10 @@ Data Sources
TZInfo requires a source of timezone data. There are two built-in options:

1. The TZInfo::Data library (the tzinfo-data gem). TZInfo::Data contains a set
of Ruby modules that are generated from the [IANA Time Zone Database](http://www.iana.org/time-zones).
of Ruby modules that are generated from the [IANA Time Zone Database](https://www.iana.org/time-zones).
2. A zoneinfo directory. Most Unix-like systems include a zoneinfo directory
containing timezone definitions. These are also generated from the
[IANA Time Zone Database](http://www.iana.org/time-zones).
[IANA Time Zone Database](https://www.iana.org/time-zones).

By default, TZInfo::Data will be used. If TZInfo::Data is not available (i.e.
if `require 'tzinfo/data'` fails), then TZInfo will search for a zoneinfo
Expand All @@ -25,7 +25,7 @@ directory instead (using the search path specified by

If no data source can be found, a `TZInfo::DataSourceNotFound` exception will be
raised when TZInfo is used. Further information is available
[in the wiki](http://tzinfo.github.io/datasourcenotfound) to help with
[in the wiki](https://tzinfo.github.io/datasourcenotfound) to help with
resolving `TZInfo::DataSourceNotFound` errors.

The default data source selection can be overridden using
Expand Down Expand Up @@ -130,7 +130,7 @@ thread boundaries.
Documentation
-------------

API documentation for TZInfo is available on [RubyDoc.info](http://rubydoc.info/gems/tzinfo/frames).
API documentation for TZInfo is available on [RubyDoc.info](https://rubydoc.info/gems/tzinfo/frames).


License
Expand Down
2 changes: 1 addition & 1 deletion lib/tzinfo/data_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def self.create_default_data_source
begin
return ZoneinfoDataSource.new
rescue ZoneinfoDirectoryNotFound
raise DataSourceNotFound, "No source of timezone data could be found.\nPlease refer to http://tzinfo.github.io/datasourcenotfound for help resolving this error."
raise DataSourceNotFound, "No source of timezone data could be found.\nPlease refer to https://tzinfo.github.io/datasourcenotfound for help resolving this error."
end
end

Expand Down
4 changes: 2 additions & 2 deletions lib/tzinfo/timezone.rb
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,8 @@ def strftime(format, utc = Time.now.utc)
# Passing the invalid format string through to Time#strftime or
# DateTime#strtime would normally result in it being returned in the
# result. However, with Ruby 1.8.7 on Windows (as tested with Ruby
# 1.8.7-p374 from http://rubyinstaller.org/downloads/archives), this
# causes Time#strftime to always return an empty string (e.g.
# 1.8.7-p374 from https://rubyinstaller.org/downloads/archives),
# this causes Time#strftime to always return an empty string (e.g.
# Time.now.strftime('a %::::z b') returns '').
#
# Escape the percent to force it to be evaluated as a literal.
Expand Down
2 changes: 1 addition & 1 deletion tzinfo.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.description = 'TZInfo provides daylight savings aware transformations between times in different time zones.'
s.author = 'Philip Ross'
s.email = 'phil.ross@gmail.com'
s.homepage = 'http://tzinfo.github.io'
s.homepage = 'https://tzinfo.github.io'
s.license = 'MIT'
s.files = %w(CHANGES.md LICENSE Rakefile README.md tzinfo.gemspec .yardopts) +
Dir['lib/**/*.rb'].delete_if {|f| f.include?('.svn')} +
Expand Down

0 comments on commit 1f81e20

Please sign in to comment.