search for: reginato

Displaying 13 results from an estimated 13 matches for "reginato".

Did you mean: regina
2006 Mar 23
8
The fastcgi crash after few hours
.../log/fastcgi.crash.log is: [23/Mar/2006:09:11:23 :: 5668] Ignoring unsupported signal USR1. [23/Mar/2006:09:11:23 :: 5668] Ignoring unsupported signal USR2. [23/Mar/2006:09:11:23 :: 5668] Ignoring unsupported signal HUP. [23/Mar/2006:09:11:23 :: 5668] starting Thanks so much for the time --Andrea Reginato -- Posted via http://www.ruby-forum.com/.
2006 Jan 29
15
Reload the lib directory
Im writing a module in the lib directory. If I change the module, the changes are not visible to the application when i releod the web page (i am in the development evironment). I must restart the web server (WEBrick) and so i see the changes... but I lost more time. How can I reload the module in the dirictory lib, without reload WEBrick? Thanks so much --Reis -- Posted via
2006 Jan 30
3
ActiveRecord without database
The question is this. Can I use ActiveRecord without the presence of a database? I use only YAML file for my project and I would like use the power of ActiveRecord for my models. I have not tested and so I ask you if this is possible. Thanks so much. --Reis -- Posted via http://www.ruby-forum.com/.
2009 Jan 19
2
Can I use my own map
...g mapstraction is possible to use my own maps (I create my own tiles I would like to visualize) or if just a service that wraps existing services. I f I can use my own maps, I wanted to know if you can give me a link or something that can be useful to get started with it! Thanks a lot! -- Andrea Reginato, http://mikamai.com Writing http://sensejs.wordpress.com/ Collaborating http://therubymine.it Reading http://stacktrace.it -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.mapstraction.com/pipermail/mapstraction-mapstraction.com/attachments/20090119/2...
2006 Feb 01
5
Apache 2.2 don''t work with fastcgi
I''m trying to install mod_fastcgi for my rails app. I use Apache 2.2 and FastCGI 2.4.2 in windows xp. I have modified the httpd.conf adding LoadModule fastcgi_module modules/mod_fastcgi.dll (with mod_fastcgi.dll and mod_fastcgi.so in the modules directory). Whe i try to start Apache i have this error ---------------------------- apache: Syntax error on line 122 of
2011 Mar 02
6
calbacks on models
Hi, I''m having some strange behavior on callbacks when testing with RSpec2. On my test, when I create a resource using the #create method the callbacks related to #before_create are not called. If I go to the console and I try to type the command Resource.create(client_uri: "http://example.com") all works fine. There are no mocks around, and I can''t understand if this
2006 Jul 26
2
Question about Recipe 52
I''m reading Rails Recipes, for the precision the recipe 52 that speak about ''Making your own Rails plugin''. The question, so stupid, is that i don''t understand wath do the code def self.search(query, fields, options = {}) find :all, options.merge(:conditions => [[fields].flatten.map { |f| "LOWER(#{f}) LIKE :query"}.join(''
2006 Jan 28
0
I don''t find the problem with Apache
This is the second day I try to install my rails web application unter apache 2, but nothig to do. I think the solution is banal, but i don''t find it :-( I would like access to my application with this sample adress: http://localhost:82/fatturazione/public/ My configuration on httpd.conf is this: ------------------------------------------------------------------ <Directory />
2005 Dec 24
0
Problem with the association.
I have a problem with the association. I have the model called Invoice whit the associations: belongs_to :company belongs_to :client belongs_to :type_invoice has_many :row_invoices belongs_to :bank belongs_to :payment When i create the invoice i use a session variable, so i can add all the information i wont and I can save all at the end. This is all ok. def new session[:invoice] =
2008 Sep 04
0
ActiveResource testing
Hi, I''m trying to make some good testing on active resources, but I''ve some trouble with the *post* method. Basically this is my mock, where I set the POST verb and the expected URI. ActiveResource::HttpMock.respond_to do |mock| mock.post "/locations/buildings.xml?description=new- description&name=new-name", {}, @variable, 201 end Now, if I call the post
2012 Jul 06
0
Spork doesn't reload 'some' models
Hi everyone. I''ve been using spork+guard+rspec with great happiness in my latest projects, but yesterday I came across to a wired bug I can''t really understand and where I''ve spent the whole morning trying to figure out what was going wrong. Let me explain. I''ve making unit test to my models. When I apply changes to the spec files they are correctly reloaded
2012 Oct 03
1
[OT] betterspecs.org | rspec best practices
Hi everyone. I''ve just released a new website collecting all best practices about testing your rails app. You can find them at http://betterspecs.org. It''s an open source project open to any kind of discussion. Hope you''ll enjoy it. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on
2006 Feb 01
3
Configure Apache 2.0.55 and FastCGI
I''m installing a Rails App under Apache 2.0.55 with FastCGI. I have this config under httpd.conf ------------------------ LoadModule fastcgi_module modules/mod_fastcgi.dll ... Alias /fatturails/ "C:/Programmi/Apache Group/Apache2/htdocs/fatturails/public/" <Directory "C:/Programmi/Apache Group/Apache2/htdocs/fatturails/public"> AddHandler fastcgi-script .fcgi