Displaying 13 results from an estimated 13 matches for "simply_help".
Did you mean:
simplehelp
2007 Apr 20
1
simply_helpful and edge
Does anyone have view specs running on edge with simply_helpful?
I tried
http://blog.methodmissing.com/2006/11/23/using-simply_helpful-with-rspec-controller-tests/but
it seems that was written for pre-9 versions.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070420/0b...
2006 Nov 23
2
Some tips for testing respond_to block and making controller tests work with simply_helpful
Hi,
Here''s two blog posts for those that need to test respond_to blocks
and/or are currently using simply_helpful extensively.
http://blog.methodmissing.com/2006/11/22/testing-different-content-
types-with-rspec
http://blog.methodmissing.com/2006/11/23/using-simply_helpful-with-
rspec-controller-tests
- Lourens
2006 Dec 13
4
RSpec and simply_helpful
Hi All
I''m having some problems running my view specs when using
simply_helpful. I have it semi-working via the following:
module SimplyHelpfulHelper
def self.included(base)
base.send :include, SimplyHelpful::RecordIdentificationHelper
base.send :include, SimplyHelpful::RecordTagHelper
end
end
context "The index template" do
setup do
@shift =...
2007 Feb 27
0
Simply_helpful and nested resources
Hi all,
my question is Does simply_helpful is ready for use with nested
resources ?
I''ve tried something like :
# Routes.rb
map.resources :projects do |projects|
projects.resources :iterations
end
# edit.rhtml
<% form_for(@project, @iteration) do |f| %>
# => <form action="/projects/1/iterations/3...
2007 Mar 15
2
simply_helpful's form_for not respecting default_url_options (only_path)
Looking over the discussions and Trac tickets am I correct in assuming
that the simply_helpful''s form_for not respecting the
default_url_options (specifically only_path) is a side-effect of some
other default behavior choices?
Personally, I set only_path to true as my default as I think except
were you are dealing with https it makes life much easier (especially
in testing) and...
2007 Jan 03
2
error_message_on broken?
...lper like this:
<label for="user_name">User name:</label>
<%= error_message_on ''user'', :name %>
<%= f.text_field :name %>
generates the following error:
undefined method `errors'' for :user:Symbol
I am using edge revision 5813 and the simply_helpful plugin. Is there a
way to fix this?
Ingo
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to ruby...
2007 Feb 02
7
Coming Soon...
Dear spec''ers,
As many of you already know, we''re gearing up for a pretty big 0.8
release of RSpec in the next couple of weeks. I''m writing in advance
because I want to give you a heads up about upcoming changes and how
they may impact your existing specs.
Two important things to note first:
1. We will provide a translator that you''ll be able to use to
2007 May 21
0
Helpers not available to ActionMailer classes in backgroundrb
Hi there,
I''ve got a problem I''m hoping someone else has run into before and might
have some tips on.
I have an ActionMailer class where I''m manually including my application
helper along with simply_helpful for use in my html emal templates.
This works fine when calling the mailer class from another model class..
(example.. @order.deliver_emails would be a method that would call the
deliver methods of my ActionMailer object.
But when I offload the delivery of emails to a Backgroundrb process, eve...
2006 Sep 24
0
+ evan weaver''s blog
Hey, if you''re into Camping hacks, you might enjoy Evan''s blog. He''s been doing
a whole pile of articles on bringing bits of Rails into Camping.
* using simply_helpful and resource_feeder in Camping.
http://blog.evanweaver.com/articles/2006/09/19/how-to-publish-feeds-with-resource_feeder
* camping + mysql tips
http://blog.evanweaver.com/articles/2006/09/17/make-camping-connect-to-mysql
* his bugtracker software, written in camping
http://blog...
2006 Oct 26
2
Mocha and SimplyHelpful
...assert_equal "car_1", assigns(:car_dom_id)
end
end
This is just an empty rails project running Edge Rails, i.e. rake
rails:freeze:edge with the Mocha plugin (./script/plugin install
svn://rubyforge.org/var/svn/mocha/trunk) and SimplyHelpful plugin (./
script/plugin install simply_helpful) installed.
Anyone run into this sort of thing before?
Thanks,
Jonathan
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/mocha-developer/attachments/20061026/ec56f671/attachment.html
2007 Oct 01
1
form urls and activeresource object
I have an update form that looks like this:
<% form_for @article do |f| %>
<p>
<b>Title</b><br />
<%= f.text_field :title %>
</p>
<p>
<%= f.submit "Update" %>
</p>
and when I try to update it doesn''t work because it prints this in the
html form:
<form
2006 Nov 24
13
rSpec on Rails 1.2?
I just updated my Rails install to the most current Edge and my
controller specs fail:
1)
TypeError in ''The User Controller should be a user controller''
can''t convert nil into String
Each spec fails the same way.
<context string> <spec string>
can''t convert nil into String
Any ideas what''s up with this?
Thanks,
s.ross
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