football 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 26eefa3a24281abd14e5d3e25ec6341fee68f491
4
+ data.tar.gz: c147b892755be83ad137994fb77b03a42c6b08b0
5
+ SHA512:
6
+ metadata.gz: 10eece8155f21b9ad69e70ceeac8f810b23132b5c9d7d8d862e4802566106df8f75e30d5dead733a9ed96e8c3abc5130d0df3da67f478718fddee674810ec143
7
+ data.tar.gz: 710ebffbe67062eafacc49e43a9c77fde9ae7d2271d7ad9aa0fa053f139677f5f49f74c219b94069d0c3f59c37552ed009bf50db4bb58b752d0fda6df27bb617
@@ -0,0 +1,3 @@
1
+ ### 0.0.1 / 2020-08-17
2
+
3
+ * Everything is new. First release.
@@ -0,0 +1,5 @@
1
+ CHANGELOG.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/football.rb
@@ -0,0 +1,35 @@
1
+ # football - football data structures for matches, scores, leagues, seasons, rounds, groups, teams, clubs and more
2
+
3
+
4
+ * home :: [github.com/sportdb/sport.db](https://github.com/sportdb/sport.db)
5
+ * bugs :: [github.com/sportdb/sport.db/issues](https://github.com/sportdb/sport.db/issues)
6
+ * gem :: [rubygems.org/gems/football](https://rubygems.org/gems/football)
7
+ * rdoc :: [rubydoc.info/gems/football](http://rubydoc.info/gems/football)
8
+ * forum :: [opensport](http://groups.google.com/group/opensport)
9
+
10
+
11
+
12
+ ## Usage
13
+
14
+ This onvenience meta library adds a football alias
15
+ that lets you use football instead of sports.
16
+
17
+ ``` ruby
18
+ require 'sports'
19
+
20
+ Football = Sports
21
+ ```
22
+
23
+
24
+
25
+ ## License
26
+
27
+ The `football` scripts are dedicated to the public domain.
28
+ Use it as you please with no restrictions whatsoever.
29
+
30
+
31
+ ## Questions? Comments?
32
+
33
+ Send them along to the
34
+ [Open Sports & Friends Forum/Mailing List](http://groups.google.com/group/opensport).
35
+ Thanks!
@@ -0,0 +1,28 @@
1
+ require 'hoe'
2
+
3
+ Hoe.spec 'football' do
4
+
5
+ self.version = '0.1.0' # note: for now add version inline
6
+
7
+ self.summary = "football - football data structures for matches, scores, leagues, seasons, rounds, groups, teams, clubs and more"
8
+ self.description = summary
9
+
10
+ self.urls = ['https://github.com/sportdb/sport.db']
11
+
12
+ self.author = 'Gerald Bauer'
13
+ self.email = 'opensport@googlegroups.com'
14
+
15
+ # switch extension to .markdown for gihub formatting
16
+ self.readme_file = 'README.md'
17
+ self.history_file = 'CHANGELOG.md'
18
+
19
+ self.licenses = ['Public Domain']
20
+
21
+ self.extra_deps = [
22
+ ['sports', '>= 0.0.1'],
23
+ ]
24
+
25
+ self.spec_extras = {
26
+ required_ruby_version: '>= 2.2.2'
27
+ }
28
+ end
@@ -0,0 +1,5 @@
1
+ require 'sports'
2
+
3
+ # for convenience add Football alias for Sports
4
+ Football = Sports
5
+
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: football
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Gerald Bauer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-08-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sports
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.0.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.0.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: hoe
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.16'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.16'
55
+ description: football - football data structures for matches, scores, leagues, seasons,
56
+ rounds, groups, teams, clubs and more
57
+ email: opensport@googlegroups.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files:
61
+ - CHANGELOG.md
62
+ - Manifest.txt
63
+ - README.md
64
+ files:
65
+ - CHANGELOG.md
66
+ - Manifest.txt
67
+ - README.md
68
+ - Rakefile
69
+ - lib/football.rb
70
+ homepage: https://github.com/sportdb/sport.db
71
+ licenses:
72
+ - Public Domain
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options:
76
+ - "--main"
77
+ - README.md
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: 2.2.2
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 2.5.2
93
+ signing_key:
94
+ specification_version: 4
95
+ summary: football - football data structures for matches, scores, leagues, seasons,
96
+ rounds, groups, teams, clubs and more
97
+ test_files: []