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.
- checksums.yaml +4 -4
- data/BSDL +22 -0
- data/COPYING +56 -0
- data/README.md +102 -0
- data/ext/date/date_core.c +1145 -1056
- data/ext/date/date_parse.c +92 -42
- data/ext/date/date_strptime.c +56 -55
- data/ext/date/extconf.rb +2 -0
- data/ext/date/prereq.mk +1 -1
- data/ext/date/zonetab.h +627 -625
- data/ext/date/zonetab.list +6 -3
- data/lib/date.rb +5 -0
- metadata +15 -11
data/ext/date/zonetab.list
CHANGED
|
@@ -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,-
|
|
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,23 +1,26 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: date
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
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:
|
|
11
|
+
date: 2025-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
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
|
-
|
|
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.
|
|
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.
|
|
52
|
-
signing_key:
|
|
55
|
+
rubygems_version: 3.5.22
|
|
56
|
+
signing_key:
|
|
53
57
|
specification_version: 4
|
|
54
|
-
summary:
|
|
58
|
+
summary: The official date library for Ruby.
|
|
55
59
|
test_files: []
|