Displaying 20 results from an estimated 75 matches for "verkhovsky".
2007 Feb 11
4
Let's make RAILS_ROOT an absolute path on Windows
...n Windows, and it can
bite you in unexpected ways. I had that problem while working on
CruiseControl.rb.
There is a trivial patch fixing it (by simply applying
File.expand_path to the path before assigning it into the RAILS_ROOT
constant): http://dev.rubyonrails.org/ticket/7259
Best regards,
Alex Verkhovsky
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to rubyonrails-c...
2008 Feb 07
2
[CruiseControl] RubyOnRails build 8820 fixed
The build has been fixed.
CHANGES
-------
Revision 8820 committed by bitsweat on 2008-02-07 23:10:01
Remove empty .rhtml templates
D /trunk/actionmailer/test/fixtures/templates/signed_up.rhtml
D /trunk/actionmailer/test/fixtures/helper_mailer/use_example_helper.rhtml
D /trunk/actionmailer/test/fixtures/first_mailer/share.rhtml
D
2005 May 06
17
FYI: watch out for google's web accelerator - can empty your app of data
Hi All,
A co-worker passed this info on to me:
http://37signals.com/svn/archives2/google_web_accelerator_hey_not_so_fast_an_alert_for_web_app_designers.php
The Skinny: Google has a "Web Accelerator" that pre-caches pages by
following url''s. If you have any plain/simple URL''s that don''t take
paramaters (like what often happens in rails apps), it will try to
2006 Mar 19
20
Instiki 0.11.0 - ActiveRecord Forever
...ly big thanks to Rick Olson aka technoweenie for his help with porting Instiki to ActiveRecord.
Big thanks to DHH and Co. for Rails, to Why the Lucky Stiff for RedCloth, and everybody who sent me patches and otherwise
prodded me to keep going for that extra bit of motivation.
Best regards,
Alexey Verkhovsky
2008 May 06
4
Git support - kinda works, have design questions
...s for build labels, we''ll need to order
builds by mtime of a build directory and display abbreviated build
labels instead of full ones. Or we need to generate our own build
numbers. Either way sucks, in its own special way. Does anyone have a
strong preference or a better idea?
--
Alexey Verkhovsky
CruiseControl.rb [http://cruisecontrolrb.thoughtworks.com]
RubyWorks [http://rubyworks.thoughtworks.com]
2007 Mar 02
6
Multiple apps on the same server, all should be able to survive slashdotting
...process only takes 7Mb of RAM, perhaps
a "blank" Mongrel is not much more (haven''t checked yet). Wonder if this
makes sense, or am I just crazy.
I think, we can implement (and open-source) any solution that needs weeks
rather than years of effort.
Thoughts?
Best regards,
Alex Verkhovsky
ThoughtWorks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20070302/fbe5d764/attachment.html
2008 Mar 12
5
XHTML validation
Is the dashboard output of 1.2.1 supposed to validate (I get numerous
failures)? I''m seeing some issues that I hadn''t been running into
before my upgrade. The first time I load the dashboard I''m seeing a
blank area at the top and first button isn''t styled. When the refresh
triggers the all of the projects except the first are duplicated and
the
2007 Nov 05
29
Mongrel and memory usage
Hello,
I''m running a Rails application which must sort and manipulate a lot of data
which are loaded in memory.
The Rails app runs on 2 mongrel processes.
When I first load the app, both are 32Mb in memory.
After some days, both are between 200Mb and 300Mb.
My question is : is there some kind of garbage collector in Mongrel?
I never see the two Mongrel processes memory footprint
2008 Jan 26
6
UI Integration with RSpec?
Hi all,
Is there any integration with testing tools such as RSpec or
Test::Unit planned? I see that the cruise task is run correctly, but
the tests show up underneath the build log. Ideally I''d like them to
show up the same way that they do in ''java'' CruiseControl, in their
own section of tests.
Will.
2005 May 03
8
SQLite3 + RAM drive => 3 times faster unit tests
...est to be.
Today I had a very simple idea (why, oh why didn''t I have it half a year
ago?!). Set up a RAMDrive (a memory area treated by the OS as a virtual
"disk") and put SQLite3 database on it.
Voila! RForum test suite in 32 seconds instead of 104.
--
Best regards,
Alexey Verkhovsky
Ruby Forum: http://ruby-forum.org (moderator)
RForum: http://rforum.andreas-s.net (co-author)
Instiki: http://instiki.org (maintainer)
2005 Oct 21
3
Need feedback on Instiki-AR beta
...l.
One thing for sure is that it''s certainly getting downloaded (20 times a day, as it were)!
I''d like to know which way is it.
So, if you are using Instiki-AR, or have tried and found it completely unusable, please tell me about your experience. Thank you.
Best regards,
Alexey Verkhovsky
2007 Mar 06
59
Memory leaks in my site
Hi all,
My environment is ruby-1.8.4, rails 1.2.2, mongrel 1.0.1, linux 2.6. Now, i
have a problem on memory leaks with mongrel. My site is running 5 mongrel
processes on a 2G RAM machine, the memory of each process grows from about
20M to about 250M, but it never recover to the initial 20M, so i had to
restart the mongrel processes once per day. The load is about 1M hits per
day.
Waiting for
2008 May 06
5
Failing build is restarted again and again (manual request + Win32)
Dear all,
I am a recent user of this great tool for rails development and I have an issue with version 1.3.0. Sorry if I duplicate the question but I have been over the whole mailing list archives and could not find any answer.
I have set up cruisecontrolrb on my home server (which runs WinXP, sorry, but it is better for the girlfriend to use than some linux distrib which I use on my laptop)
2007 Dec 10
4
Mongrel and http 1.1 OPTIONS keyword
Hello.
I just seen some errors in my mongrel application log:
It seems related to the httpd OPTIONS keyword
Example:
Processing LoginController#login (for .30.5.208 at 2007-12-10 09:00:23)
[OPTIONS]
and our ruby application does not know what to do with it. and finally
send an error
Does mongrel (which is the http server) is supposed to deal with these
kind of request ?
I think these
2005 Feb 19
5
Routing: How do I use what is left from an URL
Hi,
I have this scenario. I have the full path of a page stored in the
database (column ''path''). I want to be able to have very short urls for
retrieving the pages, so i have this route in my map
map.connect ''-/:title'', :controller => ''page'',
:action => ''view_by_title'', :title => nil
so when I go to
2007 Aug 10
10
what is the correct way to stop/start a mongrel instance using monit with mongrel cluster
Hi --
I have been reading documentation and googling around to find the
correct way to do this but I have found many ways that seem to not
work, or the documentation makes no reference to.
I am using mongrel cluster with 10 mongrels for each server. Recently
I installed monit but which lead me to find the correct way to
start/stop mongrel instances one pid at a time. I am assuming one pid
at a
2007 Nov 22
7
Gentoo warning
Hi,
I''ve done some benchmarking on our new servers (being built now), AMD X2
5600, gentoo-hardened.
With the same CFLAGS (safe cflags: -march=k8 -O2) I''ve tested the following
configs:
1, emerge ruby rubygems, then gem install mongrel (or emerge mongrel, the
performance was similar)
2, download the same ruby version, untar, ./configure, make, make install,
download rubygems,
2008 Jan 17
3
CruiseControl problem. Broken Pipe?
Hi Friends,
Just happened to catch this err in the CC log:
Build loop failed
BuilderError: Write failed: Broken pipe
./script/../config/../app/models/subversion.rb:98:in
`execute_in_local_copy''
./script/../config/../lib/command_line.rb:86:in `call''
./script/../config/../lib/command_line.rb:86:in `e''
./script/../config/../lib/command_line.rb:84:in `popen''
2006 Mar 04
2
Canada on Rails announces location, and a site redesign
BCIT Downtown Campus[1] has been chosen, with a maximum capacity of 300
people. With already over 50% of the seats filled, be sure to register soon
or you might miss out on one of the most exciting technical events to come
to Vancouver.
YVR06 will be twice the size of the last conference by Open Source Events[2]
held last June, and with 4 times the amount of speakers, during the two
days. All for
2007 Sep 15
1
ANN: [Yet Another ] AJAXy Petstore
...here is the code: http://tw-commons.rubyforge.org/svn/petstore2/trunk/
It''s work in progress, especially the ratings/comments stuff and the
checkout flow. Still, looks more 2007 than the J2EE Blueprints classic
that started the genre :)
Enjoy your oinpet shopping experience.
--
Alexey Verkhovsky
CruiseControl.rb [http://cruisecontrolrb.thoughtworks.com]
RubyWorks [http://rubyworks.thoughtworks.com]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, sen...