kgio 2.0.0pre1 → 2.0.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.
- data/GIT-VERSION-GEN +1 -1
- data/GNUmakefile +2 -2
- data/ISSUES +2 -2
- data/Rakefile +2 -2
- data/kgio.gemspec +1 -1
- metadata +10 -12
data/GIT-VERSION-GEN
CHANGED
data/GNUmakefile
CHANGED
|
@@ -64,7 +64,7 @@ ChangeLog: GIT-VERSION-FILE
|
|
|
64
64
|
git log $(log_range) | sed -e 's/^/ /' >> $@+
|
|
65
65
|
mv $@+ $@
|
|
66
66
|
|
|
67
|
-
news_atom := http://
|
|
67
|
+
news_atom := http://bogomips.org/kgio/NEWS.atom.xml
|
|
68
68
|
cgit_atom := http://git.bogomips.org/cgit/kgio.git/atom/?h=master
|
|
69
69
|
atom = <link rel="alternate" title="Atom feed" href="$(1)" \
|
|
70
70
|
type="application/atom+xml"/>
|
|
@@ -177,7 +177,7 @@ publish_doc:
|
|
|
177
177
|
TZ=UTC xargs touch -d '1970-01-01 00:00:00' doc/rdoc.css
|
|
178
178
|
$(MAKE) doc_gz
|
|
179
179
|
chmod 644 $$(find doc -type f)
|
|
180
|
-
$(RSYNC) -av doc/
|
|
180
|
+
$(RSYNC) -av doc/ bogomips.org:/srv/bogomips/kgio/
|
|
181
181
|
git ls-files | xargs touch
|
|
182
182
|
|
|
183
183
|
# Create gzip variants of the same timestamp as the original so nginx
|
data/ISSUES
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
The kgio {mailing list}[mailto:kgio@librelist.com] is the best
|
|
4
4
|
place to report bugs, submit patches and/or obtain support after you
|
|
5
5
|
have searched the mailing list archives and
|
|
6
|
-
{documentation}[http://
|
|
6
|
+
{documentation}[http://bogomips.org/kgio].
|
|
7
7
|
|
|
8
8
|
* Do not {top post}[http://catb.org/jargon/html/T/top-post.html] in replies
|
|
9
9
|
* Quote only the relevant portions of the message you're replying to
|
|
@@ -30,5 +30,5 @@ guidelines for patch submission.
|
|
|
30
30
|
|
|
31
31
|
== Mailing List Archives (coming soon)
|
|
32
32
|
|
|
33
|
-
* http://
|
|
33
|
+
* http://bogomips.org/kgio/archives/
|
|
34
34
|
* nntp://news.gmane.org/gmane.comp.lang.ruby.kgio.general
|
data/Rakefile
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
def tags
|
|
6
6
|
timefmt = '%Y-%m-%dT%H:%M:%SZ'
|
|
7
7
|
@tags ||= `git tag -l`.split(/\n/).map do |tag|
|
|
8
|
-
if %r{\Av[\d\.]
|
|
8
|
+
if %r{\Av[\d\.]+} =~ tag
|
|
9
9
|
header, subject, body = `git cat-file tag #{tag}`.split(/\n\n/, 3)
|
|
10
10
|
header = header.split(/\n/)
|
|
11
11
|
tagger = header.grep(/\Atagger /).first
|
|
@@ -25,7 +25,7 @@ end
|
|
|
25
25
|
|
|
26
26
|
cgit_url = "http://git.bogomips.org/cgit/kgio.git"
|
|
27
27
|
git_url = ENV['GIT_URL'] || 'git://git.bogomips.org/kgio.git'
|
|
28
|
-
web_url = "http://
|
|
28
|
+
web_url = "http://bogomips.org/kgio"
|
|
29
29
|
|
|
30
30
|
desc 'prints news as an Atom feed'
|
|
31
31
|
task :news_atom do
|
data/kgio.gemspec
CHANGED
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.name = %q{kgio}
|
|
8
8
|
s.version = ENV["VERSION"]
|
|
9
9
|
|
|
10
|
-
s.homepage = 'http://
|
|
10
|
+
s.homepage = 'http://bogomips.org/kgio/'
|
|
11
11
|
s.authors = ["kgio hackers"]
|
|
12
12
|
s.date = Time.now.utc.strftime('%Y-%m-%d')
|
|
13
13
|
s.description = description
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kgio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 15
|
|
5
|
+
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 2
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 2.0.
|
|
9
|
+
- 0
|
|
10
|
+
version: 2.0.0
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- kgio hackers
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-11-
|
|
18
|
+
date: 2010-11-19 00:00:00 +00:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies: []
|
|
21
21
|
|
|
@@ -91,7 +91,7 @@ files:
|
|
|
91
91
|
- test/test_unix_server.rb
|
|
92
92
|
- test/test_unix_server_read_client_write.rb
|
|
93
93
|
has_rdoc: true
|
|
94
|
-
homepage: http://
|
|
94
|
+
homepage: http://bogomips.org/kgio/
|
|
95
95
|
licenses: []
|
|
96
96
|
|
|
97
97
|
post_install_message:
|
|
@@ -113,14 +113,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
113
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
none: false
|
|
115
115
|
requirements:
|
|
116
|
-
- - "
|
|
116
|
+
- - ">="
|
|
117
117
|
- !ruby/object:Gem::Version
|
|
118
|
-
hash:
|
|
118
|
+
hash: 3
|
|
119
119
|
segments:
|
|
120
|
-
-
|
|
121
|
-
|
|
122
|
-
- 1
|
|
123
|
-
version: 1.3.1
|
|
120
|
+
- 0
|
|
121
|
+
version: "0"
|
|
124
122
|
requirements: []
|
|
125
123
|
|
|
126
124
|
rubyforge_project: rainbows
|