footty 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 373892a6cffc05379b80ecf6a42fd3f4f83c559f
4
+ data.tar.gz: 341c5cc9d9f87d96a6f8db55acceac719f5cb87c
5
+ SHA512:
6
+ metadata.gz: 33a303c340e7101c7574e0dc7b1d1ccc8ff001e14ef38e056b605160846e195559e353938e6334bca18c97bf993bdb71f7011c2e7e4b5f8683b1fae08966d678
7
+ data.tar.gz: 73510d06be889f3b8c325bc20431acc6c46c78e3528140a46560adf547b6c589ef969d2b9acb384dca45bd937ddb5341c198c99397fc2b4846b981b33fb46a60
data/HISTORY.md ADDED
@@ -0,0 +1,4 @@
1
+ ### 0.0.1 / 2015-09-15
2
+
3
+ * Everything is new. First release
4
+
data/Manifest.txt ADDED
@@ -0,0 +1,6 @@
1
+ HISTORY.md
2
+ Manifest.txt
3
+ README.md
4
+ Rakefile
5
+ lib/footty.rb
6
+ lib/footty/version.rb
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # footty - football.db command line
2
+
3
+ Leagues, clubs, match scores and more in your terminal - no API key required;
4
+ uses (offline) database.
5
+
6
+
7
+ * home :: [github.com/sportdb/footty](https://github.com/sportdb/footty)
8
+ * bugs :: [github.com/sportdb/footty/issues](https://github.com/sportdb/footty/issues)
9
+ * gem :: [rubygems.org/gems/footty](https://rubygems.org/gems/footty)
10
+ * rdoc :: [rubydoc.info/gems/footty](http://rubydoc.info/gems/footty)
11
+ * forum :: [opensport](http://groups.google.com/group/opensport)
12
+
13
+
14
+
15
+ ## Usage
16
+
17
+ To be done
18
+
19
+
20
+
21
+ ## Install
22
+
23
+ Just install the gem:
24
+
25
+ $ gem install footty
26
+
27
+
28
+ ## License
29
+
30
+ The `footty` scripts are dedicated to the public domain.
31
+ Use it as you please with no restrictions whatsoever.
32
+
33
+
34
+ ## Questions? Comments?
35
+
36
+ Send them along to the
37
+ [Open Sports & Friends Forum/Mailing List](http://groups.google.com/group/opensport).
38
+ Thanks!
39
+
data/Rakefile ADDED
@@ -0,0 +1,29 @@
1
+ require 'hoe'
2
+ require './lib/footty/version.rb'
3
+
4
+ Hoe.spec 'footty' do
5
+
6
+ self.version = Footty::VERSION
7
+
8
+ self.summary = "footty - football.db command line - leagues, match scores and more in your terminal - no API key required; uses (offline) database"
9
+ self.description = summary
10
+
11
+ self.urls = ['https://github.com/sportdb/footty']
12
+
13
+ self.author = 'Gerald Bauer'
14
+ self.email = 'opensport@googlegroups.com'
15
+
16
+ # switch extension to .markdown for gihub formatting
17
+ self.readme_file = 'README.md'
18
+ self.history_file = 'HISTORY.md'
19
+
20
+ self.extra_deps = [
21
+ ]
22
+
23
+ self.licenses = ['Public Domain']
24
+
25
+ self.spec_extras = {
26
+ required_ruby_version: '>= 1.9.2'
27
+ }
28
+
29
+ end
@@ -0,0 +1,24 @@
1
+ # encoding: utf-8
2
+
3
+
4
+ module Footty
5
+
6
+ MAJOR = 0
7
+ MINOR = 0
8
+ PATCH = 1
9
+ VERSION = [MAJOR,MINOR,PATCH].join('.')
10
+
11
+ def self.version
12
+ VERSION
13
+ end
14
+
15
+ def self.banner
16
+ "footty/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
17
+ end
18
+
19
+ def self.root
20
+ "#{File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )}"
21
+ end
22
+
23
+ end # module Footty
24
+
data/lib/footty.rb ADDED
@@ -0,0 +1,11 @@
1
+ # encoding: utf-8
2
+
3
+
4
+ ## our own code
5
+ require 'footty/version' # note: let version always go first
6
+
7
+
8
+
9
+
10
+ ## say hello
11
+ puts Footty.banner if defined?($RUBYLIBS_DEBUG) && $RUBYLIBS_DEBUG
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: footty
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Gerald Bauer
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-09-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rdoc
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: hoe
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.13'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.13'
41
+ description: footty - football.db command line - leagues, match scores and more in
42
+ your terminal - no API key required; uses (offline) database
43
+ email: opensport@googlegroups.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files:
47
+ - HISTORY.md
48
+ - Manifest.txt
49
+ - README.md
50
+ files:
51
+ - HISTORY.md
52
+ - Manifest.txt
53
+ - README.md
54
+ - Rakefile
55
+ - lib/footty.rb
56
+ - lib/footty/version.rb
57
+ homepage: https://github.com/sportdb/footty
58
+ licenses:
59
+ - Public Domain
60
+ metadata: {}
61
+ post_install_message:
62
+ rdoc_options:
63
+ - "--main"
64
+ - README.md
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 1.9.2
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.2.3
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: footty - football.db command line - leagues, match scores and more in your
83
+ terminal - no API key required; uses (offline) database
84
+ test_files: []