Skip to content

Commit dc6b4c8

Browse files
committed
up readme
1 parent 9a356dd commit dc6b4c8

File tree

20 files changed

+69
-95
lines changed

20 files changed

+69
-95
lines changed

alphabets/README.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# alphabets - alphabet (a-z) helpers incl. unaccent, downcase, variants, and more
22

33

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)
4+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
5+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
66
* gem :: [rubygems.org/gems/alphabets](https://rubygems.org/gems/alphabets)
77
* rdoc :: [rubydoc.info/gems/alphabets](http://rubydoc.info/gems/alphabets)
8-
* forum :: [opensport](http://groups.google.com/group/opensport)
98

109

1110
## Usage
@@ -18,9 +17,3 @@ To be done
1817
The `alphabets` scripts are dedicated to the public domain.
1918
Use it as you please with no restrictions whatsoever.
2019

21-
22-
## Questions? Comments?
23-
24-
Send them along to the
25-
[Open Sports & Friends Forum/Mailing List](http://groups.google.com/group/opensport).
26-
Thanks!

alphabets/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Hoe.spec 'alphabets' do
88
self.summary = "alphabets - alphabet (a-z) helpers incl. unaccent, downcase, variants, and more"
99
self.description = summary
1010

11-
self.urls = ['https://github.com/sportdb/sport.db']
11+
self.urls = { home: 'https://github.com/rubycoco/core' }
1212

1313
self.author = 'Gerald Bauer'
14-
self.email = '[email protected]'
14+
self.email = '[email protected]'
1515

1616
# switch extension to .markdown for gihub formatting
1717
self.readme_file = 'README.md'

date-formats/README.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# date-formats - read / parse and print dates (and times) from around the world
22

33

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)
4+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
5+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
66
* gem :: [rubygems.org/gems/date-formats](https://rubygems.org/gems/date-formats)
77
* rdoc :: [rubydoc.info/gems/date-formats](http://rubydoc.info/gems/date-formats)
8-
* forum :: [opensport](http://groups.google.com/group/opensport)
98

109

1110
## Usage
@@ -176,9 +175,3 @@ And so on.
176175
The `date-formats` scripts are dedicated to the public domain.
177176
Use it as you please with no restrictions whatsoever.
178177

179-
180-
## Questions? Comments?
181-
182-
Send them along to the
183-
[Open Sports & Friends Forum/Mailing List](http://groups.google.com/group/opensport).
184-
Thanks!

date-formats/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Hoe.spec 'date-formats' do
88
self.summary = "date-formats - read / parse and print dates (and times) from around the world"
99
self.description = summary
1010

11-
self.urls = { home: 'https://github.com/sportdb/sport.db' }
11+
self.urls = { home: 'https://github.com/rubycoco/core' }
1212

1313
self.author = 'Gerald Bauer'
14-
self.email = '[email protected]'
14+
self.email = '[email protected]'
1515

1616
# switch extension to .markdown for gihub formatting
1717
self.readme_file = 'README.md'

date-formatter/README.md

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
# date-formatter - date formatter by example; auto-builds the strftime format string from an example date
22

33

4-
* home :: [github.com/feedreader/pluto](https://github.com/feedreader/pluto)
5-
* bugs :: [github.com/feedreader/pluto/issues](https://github.com/feedreader/pluto/issues)
4+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
5+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
66
* gem :: [rubygems.org/gems/date-formatter](https://rubygems.org/gems/date-formatter)
77
* rdoc :: [rubydoc.info/gems/date-formatter](http://rubydoc.info/gems/date-formatter)
8-
* forum :: [groups.google.com/group/wwwmake](http://groups.google.com/group/wwwmake)
98

109

1110

1211
## Usage
1312

14-
The date by example lets you format dates e.g. "January 02, 2006"
13+
The date by example lets you format dates e.g. "January 02, 2006"
1514
using an example as a format string e.g "January 02, 2006" instead of the classic strftime format specifier e.g. "%B %d, %Y". The date by example adds:
1615

1716
- `String#to_strftime`
@@ -99,7 +98,7 @@ class NilClass
9998
end
10099
```
101100

102-
For convenience the new `NilClass#format` will catch format calls on `nil`
101+
For convenience the new `NilClass#format` will catch format calls on `nil`
103102
and NOT crash but return an empty string
104103
following the `NilClass#to_s` example:
105104

@@ -116,7 +115,3 @@ p nil.to_s #=> ""
116115
The `date-formatter` scripts are dedicated to the public domain.
117116
Use it as you please with no restrictions whatsoever.
118117

119-
## Questions? Comments?
120-
121-
Send them along to the [wwwmake Forum/Mailing List](http://groups.google.com/group/wwwmake).
122-
Thanks!

date-formatter/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Hoe.spec 'date-formatter' do
88
self.summary = "date-formatter - date formatter by example; auto-builds the strftime format string from an example date"
99
self.description = summary
1010

11-
self.urls = ['https://github.com/feedreader/pluto']
11+
self.urls = { home: 'https://github.com/rubycoco/core' }
1212

1313
self.author = 'Gerald Bauer'
14-
self.email = '[email protected]'
14+
self.email = '[email protected]'
1515

1616
# switch extension to .markdown for gihub formatting
1717
self.readme_file = 'README.md'

iniparser/README.md

+15-19
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# iniparser - read / parse INI configuration, settings and data files into a hash (incl. named subsections)
22

33

4-
* home :: [github.com/datatxt/iniparser](https://github.com/datatxt/iniparser)
5-
* bugs :: [github.com/datatxt/iniparser/issues](https://github.com/datatxt/iniparser/issues)
4+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
5+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
66
* gem :: [rubygems.org/gems/iniparser](https://rubygems.org/gems/iniparser)
77
* rdoc :: [rubydoc.info/gems/iniparser](http://rubydoc.info/gems/iniparser)
8-
* forum :: [groups.google.com/group/wwwmake](http://groups.google.com/group/wwwmake)
98

109

1110

@@ -89,7 +88,7 @@ puts hash['section2']['key4']
8988
puts hash['section2']['blank']
9089
#=> ''
9190
puts hash['section2']['blank2']
92-
#=> ''
91+
#=> ''
9392
puts hash['section3']['http://example.com']['title']
9493
#=> 'A rose is a rose is a rose, eh?'
9594
puts hash['section3']['http://example.com']['title2']
@@ -241,7 +240,7 @@ NEEDSPEELING
241240
# data is case sensitive and may be preserved by the application program.
242241
243242
# An optional equals sign can be used to separate configuration parameter data
244-
# from the option name. This is dropped by the parser.
243+
# from the option name. This is dropped by the parser.
245244
246245
# A configuration option may take multiple parameters separated by commas.
247246
# Leading and trailing whitespace around parameter names and parameter data fields
@@ -266,8 +265,8 @@ resulting in:
266265
### Q: Why not use TOML (Tom's Obvious, Minimal Language)?
267266

268267
The IniParser returns a simple (nested) hash table and
269-
all values are always strings, period
270-
(no auto-magic type inference or casting) and you MUST always
268+
all values are always strings, period
269+
(no auto-magic type inference or casting) and you MUST always
271270
use strings "unquoted" e.g.
272271

273272
title = Planet Open Data News
@@ -276,21 +275,21 @@ instead of requiring "typed" quoted string values:
276275

277276
title = "Planet Open Data News"
278277

279-
Yes, TOML is great for more "advanced" INI configurations / settings
280-
that require (strong) data types,
281-
nested lists, inline arrays, and much more.
278+
Yes, TOML is great for more "advanced" INI configurations / settings
279+
that require (strong) data types,
280+
nested lists, inline arrays, and much more.
282281

283282

284283
### Q: Why not use `IniFile` - the most popular library (10+ million downloads and counting)?
285284

286285
Again the IniParser returns a simple (nested) "standard" hash table and
287-
all values are always strings, period
288-
(no auto-magic type inference or casting
289-
e.g. no conversion to bool (for true/false)
290-
or numbers (for 1,2, etc.).
291-
No wrapper around Hash or anything. Here be dragons ;-).
286+
all values are always strings, period
287+
(no auto-magic type inference or casting
288+
e.g. no conversion to bool (for true/false)
289+
or numbers (for 1,2, etc.).
290+
No wrapper around Hash or anything. Here be dragons ;-).
292291

293-
The popular IniFile CANNOT handle properties without values. Example:
292+
The popular IniFile CANNOT handle properties without values. Example:
294293

295294
```
296295
[http]
@@ -355,6 +354,3 @@ BUT no dot (`.`) for now.
355354
The `iniparser` scripts are dedicated to the public domain.
356355
Use it as you please with no restrictions whatsoever.
357356

358-
## Questions? Comments?
359-
360-
Post them to the [wwwmake forum](http://groups.google.com/group/wwwmake). Thanks!

iniparser/Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Hoe.spec 'iniparser' do
88
self.summary = 'iniparser - read / parse INI configuration, settings and data files into a hash (incl. named subsections)'
99
self.description = summary
1010

11-
self.urls = ['https://github.com/datatxt/iniparser']
11+
self.urls = { home: 'https://github.com/rubycoco/core' }
1212

1313
self.author = 'Gerald Bauer'
1414
self.email = '[email protected]'

logutils-activerecord/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# logutils-activerecord - Another Logger - Addon for Database Support (LogDb, Log Model etc.)
22

3-
* home :: [github.com/rubylibs/logutils](https://github.com/rubylibs/logutils)
4-
* bugs :: [github.com/rubylibs/logutils/issues](https://github.com/rubylibs/logutils)
3+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
4+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
55
* gem :: [rubygems.org/gems/logutils-activerecord](https://rubygems.org/gems/logutils-activerecord)
66
* rdoc :: [rubydoc.info/gems/logutils-activerecord](http://rubydoc.info/gems/logutils-activerecord)
77

@@ -31,23 +31,23 @@ To clean out all log records from the database use:
3131

3232
require 'logutils'
3333
require 'logutils/activerecord' # NOTE: will also require 'active_record'
34-
34+
3535
include LogUtils # lets you use Logger instead of LogUtils::Logger
36-
36+
3737
logger = Logger[ 'Test' ]
3838
logger.info 'hello LogUtils'
39-
39+
4040
LOG_DB_CONFIG = {
4141
adapter: 'sqlite3',
4242
database: './log.db'
4343
}
44-
44+
4545
pp LOG_DB_CONFIG
4646
ActiveRecord::Base.establish_connection( LOG_DB_CONFIG )
47-
47+
4848
LogDb.create
4949
LogDb.setup
50-
50+
5151
logger.info 'hola LogUtils'
5252
logger.warn 'servus LogUtils'
5353

logutils-activerecord/Rakefile

+7-6
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,29 @@ require './lib/logutils/activerecord/version.rb'
33

44

55
Hoe.spec 'logutils-activerecord' do
6-
6+
77
self.version = LogDb::VERSION
8-
8+
99
self.summary = 'Another Logger - Addon for Database Support (LogDb, Log Model etc.)'
1010
self.description = summary
1111

12-
self.urls = ['https://github.com/rubylibs/logutils']
12+
self.urls = { home: 'https://github.com/rubycoco/core' }
1313

1414
self.author = 'Gerald Bauer'
15-
self.email = '[email protected]'
15+
self.email = '[email protected]'
16+
1617

1718
# switch extension to .markdown for gihub formatting
1819
# -- Note: auto-changed when included in manifest
1920
self.readme_file = 'README.md'
2021
self.history_file = 'HISTORY.md'
21-
22+
2223
self.licenses = ['Public Domain']
2324

2425
self.extra_deps = [
2526
['logutils', '>=0.6.1'],
2627
['activerecord'], # Note: will include activesupport,etc.
27-
]
28+
]
2829

2930
self.spec_extras = {
3031
required_ruby_version: '>= 1.9.2'

logutils-admin/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# logutils-admin - Another Logger - Addon for Browsing Logs in Database (LogDb, Log Model etc.)
22

3-
* home :: [github.com/rubylibs/logutils](https://github.com/rubylibs/logutils)
4-
* bugs :: [github.com/rubylibs/logutils/issues](https://github.com/rubylibs/logutils)
3+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
4+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
55
* gem :: [rubygems.org/gems/logutils-admin](https://rubygems.org/gems/logutils-admin)
66
* rdoc :: [rubydoc.info/gems/logutils-admin](http://rubydoc.info/gems/logutils-admin)
77

logutils-admin/Rakefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,30 @@ require './lib/logutils/admin/version.rb'
33

44

55
Hoe.spec 'logutils-admin' do
6-
6+
77
self.version = LogDbAdmin::VERSION
88

99
self.summary = 'logutils-admin - Another Logger Addon for Browsing Logs in Database (LogDb, Log Model etc.)'
1010
self.description = summary
1111

12-
self.urls = ['https://github.com/rubylibs/logutils']
12+
self.urls = { home: 'https://github.com/rubycoco/core' }
1313

1414
self.author = 'Gerald Bauer'
15-
self.email = '[email protected]'
15+
self.email = '[email protected]'
1616

1717
# switch extension to .markdown for gihub formatting
1818
# -- Note: auto-changed when included in manifest
1919
self.readme_file = 'README.md'
2020
self.history_file = 'HISTORY.md'
21-
21+
2222
self.licenses = ['Public Domain']
2323

2424
self.extra_deps = [
2525
['logutils', '>=0.6.1'],
2626
['logutils-activerecord', '>=0.1.2'],
2727
['activerecord'], # Note: will include activesupport,etc.
2828
['sinatra']
29-
]
29+
]
3030

3131
self.spec_extras = {
3232
required_ruby_version: '>= 1.9.2'

logutils/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# logutils - Another Logger in Ruby
22

33

4-
* home :: [github.com/rubylibs/logutils](https://github.com/rubylibs/logutils)
5-
* bugs :: [github.com/rubylibs/logutils/issues](https://github.com/rubylibs/logutils)
4+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
5+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core)
66
* gem :: [rubygems.org/gems/logutils](https://rubygems.org/gems/logutils)
77
* rdoc :: [rubydoc.info/gems/logutils](http://rubydoc.info/gems/logutils)
88

@@ -21,7 +21,7 @@ Start by getting a logger e.g.:
2121
or
2222

2323
include LogUtils
24-
24+
2525
logger = Logger.new
2626

2727
now you're ready to log using the methods `#debug`, `#info`, `#warn`, etc.
@@ -65,7 +65,7 @@ Example:
6565

6666
class SampleClass
6767
include Logging
68-
68+
6969
def initialize
7070
logger.info 'hello SampleClass'
7171
end
@@ -85,7 +85,7 @@ Example:
8585
[sport.db.ruby](https://github.com/sportdb/sport.db.ruby) - `sport.db` Command Line Tool
8686

8787
[Sportbook](https://github.com/openbookie) - A free, open source sports betting pool
88-
in Ruby on Rails (version 3.2 and up).
88+
in Ruby on Rails (version 3.2 and up).
8989

9090

9191
## Todos

logutils/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Hoe.spec 'logutils' do
99
self.summary = 'Another Logger'
1010
self.description = summary
1111

12-
self.urls = ['https://github.com/rubylibs/logutils']
12+
self.urls = { home: 'https://github.com/rubycoco/core' }
1313

1414
self.author = 'Gerald Bauer'
15-
self.email = '[email protected]'
15+
self.email = '[email protected]'
1616

1717
# switch extension to .markdown for gihub formatting
1818
# -- NB: auto-changed when included in manifest

props-activerecord/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Manage Setting Hierarchies Addon for Database Support (ConfDb, Props Model, etc.)
44

5-
* home :: [github.com/rubylibs/props](https://github.com/rubylibs/props)
6-
* bugs :: [github.com/rubylibs/props/issues](https://github.com/rubylibs/props/issues)
5+
* home :: [github.com/rubycoco/core](https://github.com/rubycoco/core)
6+
* bugs :: [github.com/rubycoco/core/issues](https://github.com/rubycoco/core/issues)
77
* gem :: [rubygems.org/gems/props-activerecord](https://rubygems.org/gems/props-activerecord)
88
* rdoc :: [rubydoc.info/gems/props-activerecord](http://rubydoc.info/gems/props-activerecord)
99

0 commit comments

Comments
 (0)