ANN: Sequel 3.23.0 Released018 (5/2/2011 4:52:42 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensi... Jeremy
ANN: Sequel 3.22.0 Released027 (4/1/2011 5:09:53 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensi... Jeremy
ANN: Sequel 3.16.0 Released016 (10/1/2010 4:40:43 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensi... Jeremy
ANN: home_run 0.9.1 Released1223 (9/1/2010 4:16:29 PM) comp.lang.ruby = home_run home_run is an implementation of ruby's Date/DateTime classes in C, with much better performance (20-200x) than the version in the standard library, while being almost completely compatible. == Per... Jeremy
ANN: Sequel 3.15.0 Released014 (9/1/2010 3:52:34 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensi... Jeremy
ANN: Sequel 3.14.0 Released018 (8/2/2010 4:24:56 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensi... Jeremy
ANN: zozo 1.0.0 Released518 (7/1/2010 7:54:27 PM) comp.lang.ruby = What? zozo is a tool that makes it easy to reduce the memory footprint of your applications by having them not load rubygems/bundler at runtime: $ unicorn -c unicorn.conf -D $ ps ux USER PID %CP... Jeremy
ANN: Sequel 3.13.0 Released017 (7/1/2010 3:31:24 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing SQL queries and table schemas. * Sequel includes a comprehensi... Jeremy
ANN: Sequel 3.10.0 Released018 (4/2/2010 9:46:33 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas. * Sequel also includes a l... Jeremy
ANN: Sequel 3.9.0 Released017 (3/4/2010 8:17:43 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas. * Sequel also includes a l... Jeremy
ANN: home_run 0.9.1 Released1223 (9/1/2010 4:16:29 PM) comp.lang.ruby = home_run home_run is an implementation of ruby's Date/DateTime classes in C, with much better performance (20-200x) than the version in the standard library, while being almost completely compatible. == Per... code(58)
ANN: zozo 1.0.0 Released518 (7/1/2010 7:54:27 PM) comp.lang.ruby = What? zozo is a tool that makes it easy to reduce the memory footprint of your applications by having them not load rubygems/bundler at runtime: $ unicorn -c unicorn.conf -D $ ps ux USER PID %CP... code(58)
Convert Sequel Dataset to JSON Object1037 (2/17/2010 12:07:54 AM) comp.lang.ruby Hi, I'm trying to do an AJAX request from my xhtml page to a controller. The AJAX request passes "id=idgoeshere" where idgoeshere is a number. Inspecting in Chrome inspector shows me that the id is being passe... philsmithson(7)
ANN: Sequel 3.4.0 Released721 (9/2/2009 5:03:07 PM) comp.lang.ruby Sequel is a lightweight database access toolkit for Ruby. * Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas. * Sequel also includes a l... code(58)
ANN: ThirdBase 1.2.0429 (8/17/2009 9:31:05 PM) comp.lang.ruby ThirdBase is a replacement for Ruby's standard Date/DateTime classes, with the following differences: - ThirdBase is roughly 2-10 times faster depending on usage - ThirdBase has a lower memory footprint - Thir... code(58)
ruby/sequel/mysql problem119 (4/8/2009 11:35:56 PM) comp.lang.ruby newbie here. have ruby/sequel/sqlite and windows 2003 server working smooth. but have problem with mysql "gem install mysql" run a basic ruby test script, got error popop "this application has failed to s... stangbos(1)
Sequel Newbie question121 (12/23/2008 6:16:28 AM) comp.lang.ruby Hello Folks, I am trying out sequel and have a simple question. Here is my sample: DB = Sequel.connect('mysql://blah:blah@localhost:3306/thyu') news_stories = DB[:feed_items].filter({:content_grabbed => '0'} ... m8r-8wb2f4(1)
ANN: Sequel 2.6.0 Released331 (10/12/2008 1:27:35 AM) comp.lang.ruby * Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas. * Sequel also includes a lightweight but comprehensive ORM layer for mapping record... code(58)
ANN: Sequel 2.4.0 Released229 (8/6/2008 5:26:56 PM) comp.lang.ruby * Sequel provides thread safety, connection pooling and a concise DSL for constructing database queries and table schemas. * Sequel also includes a lightweight but comprehensive ORM layer for mapping record... code(58)
constants defined in Kernel are also defined in Object?1325 (2/28/2008 5:17:33 PM) comp.lang.ruby This seems peculiar to me: cout@bean:~/tmp$ ruby -e 'module M; FOO = 42; end; class Foo; include M; end; p Foo.const_defined?(:FOO)' false cout@bean:~/tmp$ ruby -e 'Kernel.const_set(:FOO, 42); p Object.const_d... pbrannan(331)