date 3.2.1 → 3.5.1

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.
@@ -1,9 +1,12 @@
1
1
  %{
2
+ #define GPERF_DOWNCASE 1
3
+ #define GPERF_CASE_STRNCMP 1
4
+ #define gperf_case_strncmp strncasecmp
2
5
  struct zone {
3
6
  int name;
4
7
  int offset;
5
8
  };
6
- static const struct zone *zonetab();
9
+ static const struct zone *zonetab(register const char *str, register size_t len);
7
10
  %}
8
11
 
9
12
  struct zone;
@@ -313,8 +316,8 @@ vut,39600
313
316
  wakt,43200
314
317
  warst,-10800
315
318
  wft,43200
316
- wgst,-7200
317
- wgt,-10800
319
+ wgst,-3600
320
+ wgt,-7200
318
321
  wib,25200
319
322
  wit,32400
320
323
  wita,28800
data/lib/date.rb CHANGED
@@ -4,7 +4,12 @@
4
4
  require 'date_core'
5
5
 
6
6
  class Date
7
+ VERSION = "3.5.1" # :nodoc:
7
8
 
9
+ # call-seq:
10
+ # infinite? -> false
11
+ #
12
+ # Returns +false+
8
13
  def infinite?
9
14
  false
10
15
  end
metadata CHANGED
@@ -1,23 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: date
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.1
4
+ version: 3.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tadayoshi Funaba
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-15 00:00:00.000000000 Z
11
+ date: 2025-12-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: A subclass of Object includes Comparable module for handling dates.
13
+ description: The official date library for Ruby.
14
14
  email:
15
- -
15
+ -
16
16
  executables: []
17
17
  extensions:
18
18
  - ext/date/extconf.rb
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - BSDL
22
+ - COPYING
23
+ - README.md
21
24
  - ext/date/date_core.c
22
25
  - ext/date/date_parse.c
23
26
  - ext/date/date_strftime.c
@@ -32,8 +35,9 @@ homepage: https://github.com/ruby/date
32
35
  licenses:
33
36
  - Ruby
34
37
  - BSD-2-Clause
35
- metadata: {}
36
- post_install_message:
38
+ metadata:
39
+ changelog_uri: https://github.com/ruby/date/releases
40
+ post_install_message:
37
41
  rdoc_options: []
38
42
  require_paths:
39
43
  - lib
@@ -41,15 +45,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
41
45
  requirements:
42
46
  - - ">="
43
47
  - !ruby/object:Gem::Version
44
- version: 2.4.0
48
+ version: 2.6.0
45
49
  required_rubygems_version: !ruby/object:Gem::Requirement
46
50
  requirements:
47
51
  - - ">="
48
52
  - !ruby/object:Gem::Version
49
53
  version: '0'
50
54
  requirements: []
51
- rubygems_version: 3.1.4
52
- signing_key:
55
+ rubygems_version: 3.5.22
56
+ signing_key:
53
57
  specification_version: 4
54
- summary: A subclass of Object includes Comparable module for handling dates.
58
+ summary: The official date library for Ruby.
55
59
  test_files: []