date 3.3.1 → 3.4.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.
- checksums.yaml +4 -4
- data/ext/date/date_core.c +210 -83
- data/ext/date/date_parse.c +3 -0
- data/ext/date/date_strptime.c +54 -54
- data/ext/date/extconf.rb +1 -0
- data/ext/date/prereq.mk +1 -1
- data/ext/date/zonetab.h +627 -625
- data/ext/date/zonetab.list +5 -2
- data/lib/date.rb +1 -1
- metadata +10 -9
data/ext/date/zonetab.list
CHANGED
@@ -1,4 +1,7 @@
|
|
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;
|
@@ -313,8 +316,8 @@ vut,39600
|
|
313
316
|
wakt,43200
|
314
317
|
warst,-10800
|
315
318
|
wft,43200
|
316
|
-
wgst,-
|
317
|
-
wgt,-
|
319
|
+
wgst,-3600
|
320
|
+
wgt,-7200
|
318
321
|
wib,25200
|
319
322
|
wit,32400
|
320
323
|
wita,28800
|
data/lib/date.rb
CHANGED
metadata
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: date
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.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:
|
11
|
+
date: 2024-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A subclass of Object includes Comparable module for handling dates.
|
14
14
|
email:
|
15
|
-
-
|
15
|
+
-
|
16
16
|
executables: []
|
17
17
|
extensions:
|
18
18
|
- ext/date/extconf.rb
|
@@ -33,8 +33,9 @@ homepage: https://github.com/ruby/date
|
|
33
33
|
licenses:
|
34
34
|
- Ruby
|
35
35
|
- BSD-2-Clause
|
36
|
-
metadata:
|
37
|
-
|
36
|
+
metadata:
|
37
|
+
changelog_uri: https://github.com/ruby/date/releases
|
38
|
+
post_install_message:
|
38
39
|
rdoc_options: []
|
39
40
|
require_paths:
|
40
41
|
- lib
|
@@ -42,15 +43,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
43
|
requirements:
|
43
44
|
- - ">="
|
44
45
|
- !ruby/object:Gem::Version
|
45
|
-
version: 2.
|
46
|
+
version: 2.6.0
|
46
47
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
48
|
requirements:
|
48
49
|
- - ">="
|
49
50
|
- !ruby/object:Gem::Version
|
50
51
|
version: '0'
|
51
52
|
requirements: []
|
52
|
-
rubygems_version: 3.
|
53
|
-
signing_key:
|
53
|
+
rubygems_version: 3.5.11
|
54
|
+
signing_key:
|
54
55
|
specification_version: 4
|
55
56
|
summary: A subclass of Object includes Comparable module for handling dates.
|
56
57
|
test_files: []
|