[Rails] Re: render and render_to_string

2013-03-18 Thread fuzzy
I am currently reading 'Jose_Valim-Crafting_Rails_Application' wherein he discussed the Rails stack and shows you how this all works. I am not proficient enough to explain it since I am still trying to absorb it all but as a reference to the subject I think it will answer your questions if you are

[Rails] Re: BEST WAY TO DEVELOP DYNAMIC DROPDOWNS

2013-03-11 Thread fuzzy
Hello adolfo, Here is another option, it is Ryan Bates' railscasts, some of his episodes are free and on others you pay a monthly subscription of $9.00: http://railscasts.com/episodes/88-dynamic-select-menus I think this just gives you another option. On Mar 10, 2:45 pm, adolfo igualada wrote:

[Rails] Re: Rspec Test Failing?

2013-01-24 Thread fuzzy
lso about your cookie problem, is there anything that might look like > this:http://stackoverflow.com/questions/9960732/rspec-vs-cookies-the-test-... > > all the best, > > Andre > > > > On Tuesday, 22 January 2013 15:00:21 UTC+1, fuzzy wrote: > > > Hi Andre, &

[Rails] Re: Rspec Test Failing?

2013-01-22 Thread fuzzy
ope, just an alias. > > > On Sat, Jan 19, 2013 at 12:48 AM, fuzzy > >wrote: > > >> Thanks Mirri for you post ... I had a look at the link ... are they > >> saying that 'specify' has now been superceded by 'it'? > > >> O

[Rails] Re: Rspec Test Failing?

2013-01-18 Thread fuzzy
es it reads better. See > here:https://github.com/rspec/rspec-core/blob/master/lib/rspec/core/exampl... > > - Mirri > > > > > > > > On Fri, Jan 18, 2013 at 5:22 PM, wrote: > > Hey fuzzy, > > > I think the first thing that is maybe wrong with your spe

[Rails] Re: Rspec Test Failing?

2013-01-18 Thread fuzzy
text: text) end end def sign_in(employee) visit signin_path fill_in "Email", with: employee.email fill_in "Password", with: employee.password click_button "Sign in" # Sign in when not using Capybara. cook

[Rails] Re: Rspec Test Failing?

2013-01-16 Thread fuzzy
hanks. On Jan 15, 5:09 pm, fuzzy wrote: > Hi, > > rails 3.2.11 and Capybara 2.0.2 and the latest rspec. > > I have another test that has me searching for a solution ... just now, I do > not have one and I have spent a number of days trying out different > solutions. > >

[Rails] Rspec Test Failing?

2013-01-15 Thread fuzzy
Hi, rails 3.2.11 and Capybara 2.0.2 and the latest rspec. I have another test that has me searching for a solution ... just now, I do not have one and I have spent a number of days trying out different solutions. If I may ... here is the test, spec/features: describe "submittin

[Rails] Re: Rails 3.2.10 and Rspec Tests that Fail?

2013-01-15 Thread fuzzy
I found another solution ... a little more professional in my opinion. It has to do with defining a Rspec_matcher ... see it here: http://stackoverflow.com/questions/13573525/rspec-capybara-2-0- tripping-up-my-have-selector-tests It works great. On Jan 11, 1:30 pm, fuzzy wrote

[Rails] Re: Rails 3.2.10 and Rspec Tests that Fail?

2013-01-11 Thread fuzzy
uot;) now my title tests work ... thanks On Jan 9, 10:40 am, fuzzy wrote: > The following tests used to reside in requests directory and used to > work ... since I have upgraded to rails 3.2.9 and now 3.2.10 they > fail. > I have the following tests in(I am only showing the first two tests): &g

[Rails] Rails 3.2.10 and Rspec Tests that Fail?

2013-01-09 Thread fuzzy
The following tests used to reside in requests directory and used to work ... since I have upgraded to rails 3.2.9 and now 3.2.10 they fail. I have the following tests in(I am only showing the first two tests): spec/features/authentication_pages_spec.rb require 'spec_helper' des

[Rails] Re: Nested Form with Add/Remove Attributes Button.

2012-12-13 Thread fuzzy
Thanks Jim ... I will check that link out. On Dec 12, 7:01 pm, Jim Ruther Nill wrote: > On Thu, Dec 13, 2012 at 6:18 AM, fuzzy wrote: > > Hi, > > > I finally, w/paid help, got my nested form working such that the add/ > > remove attributes button works. > >

[Rails] Nested Form with Add/Remove Attributes Button.

2012-12-12 Thread fuzzy
Hi, I finally, w/paid help, got my nested form working such that the add/ remove attributes button works. Now I am wondering if it is possible to only have the 'remove' attributes button, only show up after the first row of attributes. For example ... my form starts out with its initial row of

[Rails] Re: New Ruby On Rails Group to Connect Midwest Developers

2012-12-11 Thread fuzzy
Yeah ... Facebook ... not for me either ... now google groups ... I'll join in a flash. On Dec 11, 11:19 am, Jordon Bedwell wrote: > On Mon, Dec 10, 2012 at 9:39 PM, Joshua Woodward-Clarke > > wrote: > > Very good point, especially to a facebook link. > > Atleast in this case the title gave some

[Rails] Re: Midwest Group?

2012-12-10 Thread fuzzy
Wisconsin here ... USA ... still on the learning curve though. Tom. On Dec 9, 8:55 am, Aaron Vargas wrote: > Any Ruby on Rails guys from the Midwest? -- 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

[Rails] Re: Stop User from Changing URL

2012-12-03 Thread fuzzy
Thanks Jordon ... I take your point ... I begin with some sites discussing both these issues, authentication, and authorization. fuzzy. On Dec 3, 8:51 am, Jordon Bedwell wrote: > On Mon, Dec 3, 2012 at 8:42 AM, fuzzy wrote: > > If you change the url to any other page, ie, to contr

[Rails] Stop User from Changing URL

2012-12-03 Thread fuzzy
orization. Is there a way to use the authentication and authorization of 'employee' to prevent a user from changing the url to circumvent the sign-in, and also to govern the access to any other page without using a gem? Thanks, fuzzy. -- You received this message because you are subs

[Rails] Re: Developing A Better Curriculum for Learning Rails

2012-10-23 Thread fuzzy
Hi Kevin, If you dont mind, let me give you some perspective from the other side of the coin ... a students perspective. I am in my mid sixties and from an accounting background with experience in writing vba for Microsoft Excel and Access. In fact I have an Excel working model as well as an Acce

[Rails] Drop Down Menu in Navigation Bar?

2012-10-09 Thread fuzzy
I would like to design a drop down menu to use in my navigation bar. I know that twitter bootstrap has one, but I would like to design my own since many of the sites that are using twitter bootstrap are beginning to look alike. Does anyone know of a good tutorial on how to go about designing such

[Rails] Re: New in town

2012-10-05 Thread fuzzy
This posting offers some options that you might find useful: http://groups.google.com/group/rubyonrails-talk/browse_thread/thread/35451bac46677efc/d82de35d30d07d47?hl=en&lnk=gst&q=rob+connery#d82de35d30d07d47 On Oct 4, 4:52 pm, Richard McKenna wrote: > Hi all, > > I'm just stepping into the what

[Rails] Re: New to Ruby

2012-09-15 Thread fuzzy
Hello Samir, I am a newbie as well, and not even a programmer ... I have built up this list of potential help. Some are free and others you pay for. Just check each one out and use there free services until you get more proficient. I used Michael Hartl' screencasts to learn the basics. Here is th

[Rails] Re: Nested form and a link to add fields question?

2012-08-21 Thread fuzzy
t; Vishal Singh > > > > On Mon, Aug 20, 2012 at 12:23 PM, Colin Law wrote: > > On 19 August 2012 22:11, fuzzy wrote: > > > Thanks Bertly ... that is funny ... but even coders must have > > > explanations somewhere in there vocabulary ... even before you begi

[Rails] Re: Nested form and a link to add fields question?

2012-08-19 Thread fuzzy
getting. This makes it hard to help you. Plus your explanation is > waaa to long for folks whose reading expertise taps out at a 1 and > a 0. ;-). > > > > On Wednesday, August 15, 2012 9:24:12 PM UTC+3, fuzzy wrote: > > > I seem to be stuck on a very steep learning curve

[Rails] Nested form and a link to add fields question?

2012-08-16 Thread fuzzy
I seem to be stuck on a very steep learning curve in my quest to learn rails ... essentially from tutorials and the like on the web ... my profession is accounting so please excuse the lack of sophistication in my attempt to speak rails or for that matter code it. I subscribed to Ryan Bate' web si