footballdata-api 0.5.1 → 2026.7.2
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/CHANGELOG.md +1 -2
- data/README.md +1 -1
- data/lib/footballdata/download.rb +3 -2
- data/lib/footballdata/version.rb +3 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 285333f5aeaa22a6e531e570f7d41ba43970f73d735e1faca3885d1e0c3387f7
|
|
4
|
+
data.tar.gz: 8e3fddb191ba66045b9c80526d80187b17ec05281603e17a8ea057c1779b6bd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54da6c832674994199a490fab7a047872f45c43b0e33f399a081e94ab38157168a6882e675fab18790f2a573011fdf8f698b9a8ac3a727af9626cd4794def106
|
|
7
|
+
data.tar.gz: bcff64f55b28e0e62b08d3f7b5e4bf739755c5bf832e6026318935329aebbc82aca3d8e03d7b9a6a49e851b6a7213133a06d7ab4d9c9b5b6bdfddf36596258bc
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -155,7 +155,7 @@ That's it for now.
|
|
|
155
155
|
## License
|
|
156
156
|
|
|
157
157
|
The `footballdata` scripts are dedicated to the public domain.
|
|
158
|
-
Use
|
|
158
|
+
Use as you please with no restrictions whatsoever.
|
|
159
159
|
|
|
160
160
|
|
|
161
161
|
## Questions? Comments?
|
|
@@ -66,8 +66,10 @@ class Metal
|
|
|
66
66
|
end
|
|
67
67
|
|
|
68
68
|
|
|
69
|
+
## note - starting in 2026 requires https !!! (plain http will not work)
|
|
70
|
+
## resutls in -- 301 Moved Permanently
|
|
69
71
|
|
|
70
|
-
BASE_URL = '
|
|
72
|
+
BASE_URL = 'https://api.football-data.org/v4'
|
|
71
73
|
|
|
72
74
|
|
|
73
75
|
def self.competitions_url
|
|
@@ -128,4 +130,3 @@ class Metal
|
|
|
128
130
|
end
|
|
129
131
|
end # class Metal
|
|
130
132
|
end # module Footballdata
|
|
131
|
-
|
data/lib/footballdata/version.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
module FootballdataApi
|
|
3
|
-
MAJOR =
|
|
4
|
-
MINOR =
|
|
5
|
-
PATCH =
|
|
3
|
+
MAJOR = 2026 ## todo: namespace inside version or something - why? why not??
|
|
4
|
+
MINOR = 7
|
|
5
|
+
PATCH = 2
|
|
6
6
|
VERSION = [MAJOR,MINOR,PATCH].join('.')
|
|
7
7
|
|
|
8
8
|
def self.version
|
|
@@ -17,4 +17,3 @@ module FootballdataApi
|
|
|
17
17
|
File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
|
|
18
18
|
end
|
|
19
19
|
end # module FootballdataApi
|
|
20
|
-
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: footballdata-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2026.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gerald Bauer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: leagues
|