kgio RubyGem user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [ANN] kgio 2.11.3 - deprecated project moves off deprecated TLD
@ 2020-01-08  9:29  4% Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2020-01-08  9:29 UTC (permalink / raw)
  To: kgio-public

This is a legacy project, do not use it for new projects.  Ruby
2.3 and later should make this obsolete.  kgio provides
non-blocking I/O methods for Ruby without raising exceptions on
EAGAIN and EINPROGRESS.

Note: I do not recommend using kgio for future applications, Ruby 2.x
has a lot of the functionality of kgio and Ruby 2.3+ has even more.

* homepage: https://yhbt.net/kgio/
* public mailing list: kgio-public@yhbt.net
* git clone https://yhbt.net/kgio.git
* Atom feed https://yhbt.net/kgio/NEWS.atom.xml
* mail archives: https://yhbt.net/kgio-public/

Changes:

    Some doc and warning fixes for newer Rubies.

    We're no longer on bogomips.org since it's due
    for expiry and I can't pay extortionists for a .org, so
    s/bogomips.org/yhbt.net/ for now, and be prepared to move again
    when extortionists move onto the .net TLD.

          pkg.mk: use --local to "gem install"
          pkg.mk: use dark216 theme for Earth Day 2019
          test: fix warnings with RUBYOPT=-w
          tests: fix unused variable warnings from newer Rubies
          test_connect_fd_leak: do not close socket if non-existent
          test_syssend: avoid warning on cleanup
          build: remove olddoc from the gemspec
          doc: remove private email and outdated gmane archives
          doc: move from bogomips.org/kgio to yhbt.net/kgio

Again, using kgio for new projects is strongly discouraged.
Use Ruby 2.3+ instead.

^ permalink raw reply	[relevance 4%]

* [PATCH 1/3] build: remove olddoc from the gemspec
  @ 2019-12-25 22:58  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2019-12-25 22:58 UTC (permalink / raw)
  To: kgio-public

It's an unnecessary dependency for rebuilding the gem.
---
 HACKING      |  3 ---
 kgio.gemspec | 21 ++++++++++++---------
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/HACKING b/HACKING
index 86adf29..b94f25c 100644
--- a/HACKING
+++ b/HACKING
@@ -2,9 +2,6 @@
 
 === Documentation
 
-We use the latest version of {olddoc}[https://80x24.org/olddoc/] as
-much as possible.
-
 Please wrap documentation at 72 characters-per-line or less (long URLs
 are exempt) so it is comfortably readable from terminals.
 
diff --git a/kgio.gemspec b/kgio.gemspec
index 17100c6..de85c39 100644
--- a/kgio.gemspec
+++ b/kgio.gemspec
@@ -1,23 +1,26 @@
 ENV["VERSION"] or abort "VERSION= must be specified"
 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
-require 'olddoc'
-extend Olddoc::Gemspec
-name, summary, title = readme_metadata
 
 Gem::Specification.new do |s|
   s.name = %q{kgio}
   s.version = ENV["VERSION"].dup
-  s.homepage = Olddoc.config['rdoc_url']
-  s.authors = ["#{name} hackers"]
-  s.description = readme_description
+  s.homepage = 'https://bogomips.org/kgio/'
+  s.authors = ['kgio hackers']
+  s.description = <<EOF
+This is a legacy project, do not use it for new projects.  Ruby
+2.3 and later should make this obsolete.  kgio provides
+non-blocking I/O methods for Ruby without raising exceptions on
+EAGAIN and EINPROGRESS.
+EOF
   s.email = %q{kgio-public@bogomips.org}
-  s.extra_rdoc_files = extra_rdoc_files(manifest)
+  s.extra_rdoc_files = IO.readlines('.document').map!(&:chomp!).keep_if do |f|
+    File.exist?(f)
+  end
   s.files = manifest
-  s.summary = summary
+  s.summary = 'kinder, gentler I/O for Ruby'
   s.test_files = Dir['test/test_*.rb']
   s.extensions = %w(ext/kgio/extconf.rb)
 
-  s.add_development_dependency('olddoc', '~> 1.0')
   s.add_development_dependency('test-unit', '~> 3.0')
   # s.add_development_dependency('strace_me', '~> 1.0') # Linux only
 

^ permalink raw reply related	[relevance 7%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2019-12-25 22:43     bogomips.org -> yhbt.net Eric Wong
2019-12-25 22:58  7% ` [PATCH 1/3] build: remove olddoc from the gemspec Eric Wong
2020-01-08  9:29  4% [ANN] kgio 2.11.3 - deprecated project moves off deprecated TLD Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/kgio.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).