sportdb 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.
- data/History.markdown +3 -0
- data/Manifest.txt +5 -0
- data/README.markdown +23 -0
- data/Rakefile +20 -0
- data/lib/sportdb.rb +4 -0
- metadata +99 -0
data/History.markdown
ADDED
data/Manifest.txt
ADDED
data/README.markdown
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# sportdb
|
|
2
|
+
|
|
3
|
+
sport.db Command Line Tool in Ruby
|
|
4
|
+
|
|
5
|
+
* [geraldb.github.com/sport.db](http://geraldb.github.com/sport.db)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
TBD
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
Just install the gem:
|
|
16
|
+
|
|
17
|
+
$ gem install sportdb
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
The `sportdb` scripts are dedicated to the public domain.
|
|
23
|
+
Use it as you please with no restrictions whatsoever.
|
data/Rakefile
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
require 'hoe'
|
|
2
|
+
require './lib/sportdb.rb'
|
|
3
|
+
|
|
4
|
+
Hoe.spec 'sportdb' do
|
|
5
|
+
|
|
6
|
+
self.version = SportDB::VERSION
|
|
7
|
+
|
|
8
|
+
self.summary = 'sportdb - sport.db command line tool'
|
|
9
|
+
self.description = summary
|
|
10
|
+
|
|
11
|
+
self.urls = ['http://geraldb.github.com/sport.db']
|
|
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.markdown'
|
|
18
|
+
self.history_file = 'History.markdown'
|
|
19
|
+
|
|
20
|
+
end
|
data/lib/sportdb.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: sportdb
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 0
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.0.1
|
|
11
|
+
platform: ruby
|
|
12
|
+
authors:
|
|
13
|
+
- Gerald Bauer
|
|
14
|
+
autorequire:
|
|
15
|
+
bindir: bin
|
|
16
|
+
cert_chain: []
|
|
17
|
+
|
|
18
|
+
date: 2012-10-04 00:00:00 Z
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
21
|
+
name: rdoc
|
|
22
|
+
prerelease: false
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ~>
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
hash: 19
|
|
29
|
+
segments:
|
|
30
|
+
- 3
|
|
31
|
+
- 10
|
|
32
|
+
version: "3.10"
|
|
33
|
+
type: :development
|
|
34
|
+
version_requirements: *id001
|
|
35
|
+
- !ruby/object:Gem::Dependency
|
|
36
|
+
name: hoe
|
|
37
|
+
prerelease: false
|
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
|
+
none: false
|
|
40
|
+
requirements:
|
|
41
|
+
- - ~>
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
hash: 7
|
|
44
|
+
segments:
|
|
45
|
+
- 3
|
|
46
|
+
- 0
|
|
47
|
+
version: "3.0"
|
|
48
|
+
type: :development
|
|
49
|
+
version_requirements: *id002
|
|
50
|
+
description: sportdb - sport.db command line tool
|
|
51
|
+
email: opensport@googlegroups.com
|
|
52
|
+
executables: []
|
|
53
|
+
|
|
54
|
+
extensions: []
|
|
55
|
+
|
|
56
|
+
extra_rdoc_files:
|
|
57
|
+
- Manifest.txt
|
|
58
|
+
files:
|
|
59
|
+
- History.markdown
|
|
60
|
+
- Manifest.txt
|
|
61
|
+
- README.markdown
|
|
62
|
+
- Rakefile
|
|
63
|
+
- lib/sportdb.rb
|
|
64
|
+
homepage: http://geraldb.github.com/sport.db
|
|
65
|
+
licenses: []
|
|
66
|
+
|
|
67
|
+
post_install_message:
|
|
68
|
+
rdoc_options:
|
|
69
|
+
- --main
|
|
70
|
+
- README.markdown
|
|
71
|
+
require_paths:
|
|
72
|
+
- lib
|
|
73
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
74
|
+
none: false
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
hash: 3
|
|
79
|
+
segments:
|
|
80
|
+
- 0
|
|
81
|
+
version: "0"
|
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
|
+
none: false
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
hash: 3
|
|
88
|
+
segments:
|
|
89
|
+
- 0
|
|
90
|
+
version: "0"
|
|
91
|
+
requirements: []
|
|
92
|
+
|
|
93
|
+
rubyforge_project: sportdb
|
|
94
|
+
rubygems_version: 1.8.24
|
|
95
|
+
signing_key:
|
|
96
|
+
specification_version: 3
|
|
97
|
+
summary: sportdb - sport.db command line tool
|
|
98
|
+
test_files: []
|
|
99
|
+
|