raindrops 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] raindrops 0.14.0 - real-time stats for preforking Rack servers
@ 2015-06-25 21:54  6% Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2015-06-25 21:54 UTC (permalink / raw)
  To: ruby-talk; +Cc: raindrops-public

Raindrops is a real-time stats toolkit to show statistics for Rack HTTP
servers.  It is designed for preforking servers such as Rainbows! and
Unicorn, but should support any Rack HTTP server under Ruby 2.0, 1.9,
1.8 and Rubinius on platforms supporting POSIX shared memory.  It may
also be used as a generic scoreboard for sharing atomic counters across
multiple processes.

* http://raindrops.bogomips.org/
* No subscription necessary, no HTML mail:
  raindrops-public@bogomips.org
* git clone git://bogomips.org/raindrops.git
* http://raindrops.bogomips.org/NEWS.atom.xml
* http://raindrops-demo.bogomips.org/

Changes: nothing terribly interesting, misc doc updates

Eric Wong (7):
      linux_inet_diag: annotate memory freeing on diag errors
      README: trim intro and update license
      modernize packaging and documentation
      move mailing list to raindrops-public@bogomips.org
      linux_inet_diag: clarify *fprintf usage without GVL
      TODO: add item for unix_diag and udp_diag
      linux_inet_diag: fix Wshorten-64-to-32 warnings

Hleb Valoshka (1):
      Add setup and teardown for ipv6 tests
-- 
EW

^ permalink raw reply	[relevance 6%]

* [raindrops] [PATCH 3/3] move mailing list to raindrops-public@bogomips.org
  @ 2015-01-13 20:36  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2015-01-13 20:36 UTC (permalink / raw)
  To: raindrops

Existing subscribers on librelist will need to resubscribe since
there's no published subscriber lists anywhere.

The public-inbox + mlmmj setup on bogomips.org allows posting
without subscription and offers downloadable archives via git.
The lack of rsyncable archives on librelist nowadays and
subscription-required nature of librelist are points against it.

Repliers should Cc: all recipients (using the reply-all
function of their mail client) since many readers are not
subscribed.

This project has never accepted or encouraged HTML email, but
librelist accepted it.  The bogomips.org mail server is
configured to treat HTML mail as spam, so do not send HTML mail
if you expect a response.

Users who wish to subscribe may send a message to:

    raindrops-public+subscribe@bogomips.org

Similarly, they may unsubscribe via:

    raindrops-public+unsubscribe@bogomips.org

HTTP archives are available via:

    http://bogomips.org/raindrops-public/

ssoma users may also use: git://bogomips.org/raindrops-public
(see README change)

Old messages to the librelist addresses will continue to
get routed to the new mailing list.

ref: http://public-inbox.org/
---
 .olddoc.yml                     |  3 ++-
 README                          | 15 +++++----------
 ext/raindrops/linux_inet_diag.c |  2 +-
 lib/raindrops.rb                |  2 +-
 raindrops.gemspec               |  2 +-
 5 files changed, 10 insertions(+), 14 deletions(-)

diff --git a/.olddoc.yml b/.olddoc.yml
index f31fa66..567cef1 100644
--- a/.olddoc.yml
+++ b/.olddoc.yml
@@ -2,5 +2,6 @@
 cgit_url: http://bogomips.org/raindrops.git
 git_url: git://bogomips.org/raindrops.git
 rdoc_url: http://raindrops.bogomips.org/
-public_email: raindrops@librelist.org
+public_email: raindrops-public@bogomips.org
 private_email: raindrops@bogomips.org
+ml_url: http://bogomips.org/raindrops-public/
diff --git a/README b/README
index e157aa8..905c44c 100644
--- a/README
+++ b/README
@@ -61,8 +61,8 @@ Unpack it, and run "ruby setup.rb"
 
 See Raindrops::Middleware and Raindrops::LastDataRecv documentation for
 use Rack servers.  The entire library is fully-documented and we are
-responsive on the mailing list (mailto:raindrops@librelist.org) if you
-have any questions or comments.
+responsive on the mailing list (mailto:raindrops-public@bogomips.org) if
+you have any questions or comments.
 
 == Development
 
@@ -91,13 +91,8 @@ raindrops is licensed under the LGPL+2.1 or later:
 == Contact
 
 All feedback (bug reports, user/development discussion, patches, pull
-requests) go to the mailing list: mailto:raindrops@librelist.org
+requests) go to the mailing list: mailto:raindrops-public@bogomips.org
 
-The mailing list is mirrored to Gmane, all information about the
-group is here:
+Mailing list archives are available here:
 
-http://gmane.org/info.php?group=gmane.comp.lang.ruby.raindrops.general
-
-Mailing list archives in mbox format may be downloaded here:
-
-http://raindrops.bogomips.org/archives/
+http://bogomips.org/raindrops-public/
diff --git a/ext/raindrops/linux_inet_diag.c b/ext/raindrops/linux_inet_diag.c
index 773e094..fa8de03 100644
--- a/ext/raindrops/linux_inet_diag.c
+++ b/ext/raindrops/linux_inet_diag.c
@@ -216,7 +216,7 @@ static const char *addr_any(sa_family_t family)
 static void bug_warn(void)
 {
 	fprintf(stderr, "Please report how you produced this at "\
-	                "raindrops@librelist.org\n");
+	                "raindrops-public@bogomips.org\n");
 	fflush(stderr);
 }
 
diff --git a/lib/raindrops.rb b/lib/raindrops.rb
index 7acde22..d3913a8 100644
--- a/lib/raindrops.rb
+++ b/lib/raindrops.rb
@@ -12,7 +12,7 @@
 # Unlike many classes in this package, the core Raindrops class is
 # intended to be portable to all reasonably modern *nix systems
 # supporting mmap().  Please let us know if you have portability
-# issues, patches or pull requests at mailto:raindrops@librelist.org
+# issues, patches or pull requests at mailto:raindrops-public@bogomips.org
 class Raindrops
 
   # Used to represent the number of +active+ and +queued+ sockets for
diff --git a/raindrops.gemspec b/raindrops.gemspec
index f338448..7864ac3 100644
--- a/raindrops.gemspec
+++ b/raindrops.gemspec
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
 
   s.authors = ["raindrops hackers"]
   s.description = readme_description
-  s.email = %q{raindrops@librelist.org}
+  s.email = %q{raindrops@bogomips.org}
   s.extensions = %w(ext/raindrops/extconf.rb)
   s.extra_rdoc_files = extra_rdoc_files(manifest)
   s.files = manifest
-- 
EW


^ 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 --
2015-01-13 20:36     [raindrops] [PATCH 1/3] README: trim intro and update license Eric Wong
2015-01-13 20:36  7% ` [raindrops] [PATCH 3/3] move mailing list to raindrops-public@bogomips.org Eric Wong
2015-06-25 21:54  6% [ANN] raindrops 0.14.0 - real-time stats for preforking Rack servers Eric Wong

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

	https://yhbt.net/raindrops.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).