ok, I will.
thanks again for reaching out. it's appreciated.
--
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 unsubscribe from this group and stop receiving emails from it, send an email
to
On 22 January 2015 at 16:15, Justin Cheeze wrote:
> control flow. learning how to think. like, obviously I know exactly what
> this test is doing
>
> test "should get show" do
>get :show
>assert_response :success
> end
>
> however, when doing other testing on another application to help ho
control flow. learning how to think. like, obviously I know exactly what
this test is doing
test "should get show" do
get :show
assert_response :success
end
however, when doing other testing on another application to help hone my
craft, I have no idea what the heels I'm doing.
thanks for
On 22 January 2015 at 12:33, Justin Cheeze wrote:
> I've been working on that tutorial but still confused. thanks for
> reaching out.
Where on the tutorial are you confused?
Colin
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To unsu
I've been working on that tutorial but still confused. thanks for
reaching out.
--
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 unsubscribe from this group and stop receiving emails from it,
If you don't know what you are doing, then learn the basics. Here is a free
coupon for TDD in Ruby course for
beginners:
https://www.udemy.com/learn-test-driven-development-in-ruby/?couponCode=railsfree
On Wednesday, January 21, 2015 at 4:21:06 PM UTC-8, Ruby-Forum.com User
wrote:
>
> i recrea
It appears the opposite happened with Ruby, as we rarely use Semi-Colons!
The point of the article is to point out Ruby features to reduce confusion
for new Rubyist.
-Wale
On Wednesday, February 19, 2014 11:12:42 AM UTC-5, Rick wrote:
>
> This announcement surfaced back in the late seventies:
This announcement surfaced back in the late seventies:
"*CAUTION*: *The Programmer General has advised that excessive use of
Syntactic Sugar has been shown to lead to Hardening of the Semi-Colon*."
It has never been retracted, as far as I know.
On Wednesday, February 19, 2014 10:09:27 AM UTC-5,
Hi,
Did you install ruby environment on your computer? I do not have any experience
on running ruby on Window 8. I think you could try this:
http://www.racap.net/2012/02/how-to-install-ruby-on-rails-in-windows.html.
--
Yong Gu
Sent with Sparrow (http://www.sparrowmailapp.com/?sig)
On Wedne
Dear Yong Gu,
You guys are fast. I mean really fast i have been on unix forums
(unix.com) for a while, but replies this fast its amazing.
I have tried writing "rails s" it always says "sh.exe: rake: command not
found"
Do i need to use some other emacs as of now i am using Aptana Studio 3
on Wi
Muhammad Salman wrote in post #1080505:
> I am new with RoR. I have this HTML element
> Movie Title
First off, don't statically define this link in HTML. Instead use the
Rails link_to helper:
<%= link_to @movies ->
http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#method-i-l
Hi,
here you could see what 'resource :something' will do in config/routes.rb
http://guides.rubyonrails.org/routing.html#crud-verbs-and-actions
for example it creates the route:
GET /photos/:id show
the ":id" part will populate the params[] hash in the controller with an id
so in the control
Hi, Thanks for the Link. I am working on Linux environment
On Monday, September 17, 2012 3:22:51 PM UTC+5:30, Wasif Hyder wrote:
>
> http://ureddit.com/class/40250/web-programming-with-ruby-on-rails -
> This is a good choice to supplement with the Ruby on Rails tutorial.
> Once you get throug
http://ureddit.com/class/40250/web-programming-with-ruby-on-rails -
This is a good choice to supplement with the Ruby on Rails tutorial.
Once you get through these comfortably, you can move onto more
advanced topics, and books.
Also, Try keeping a blog as a journal and keep track of your day to
Thanks Friends. All the above links are really very helpful. :)
On Saturday, September 15, 2012 10:46:15 AM UTC+5:30, Samir wrote:
>
> Hi Friends. I am extremely new to Ruby. can you please suggest me how to
> proceed to grab this in a short span of time...
>
--
You received this message becaus
http://RubyLearning.com is there for you too.
There is a Core Ruby batch starting in about a week as well. Not
'Rails-centric' but Ruby-centric.
--
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 rubyon
thanks very much, i m newbie too
On Sat, Sep 15, 2012 at 10:01 PM, fuzzy wrote:
> 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
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
Hey Eric,
Thanks for the book recommedations - I will definitely pick all if them up.
Will also try your solutions for adding a variant, per instructions below.
Again, thanks for the help!
It is much appreciated.
Sincerely,
Kisha
On Sat, Feb 25, 2012 at 11:52 AM, Eric L. wrote:
> Top 3 book
Top 3 book for Rails/Ruby Development
1. The Ruby Programming Language by David Flanagan & Yukihiro Matsumoto
or
1. Programming Ruby 1.9 (3rd edition): The Pragmatic Programmers' Guide
by by Dave Thomas, with Chad Fow
Hi Kisha,
I'm new to Rails too so my answer my not be perfect, but here's a try
anyway...
I think you're overcomplicated the Product model with
product_instance. To allow each Product to have different size options
I would look into storing serialized data in your "products" table in
a column cal
ScottyMar11 wrote in post #968437:
> I am new to Ruby on Rails. To tell you the truth I dont know much
> about it at all. I have been trying to read about it but I figured why
> dont I ask the experts directly!
Well, it's usually best to ask only after having done research on your
own. That make
This message sometimes appears when the gem of the adapter to the database
is not installed.
What database do you use?
On Thu, Apr 16, 2009 at 9:13 AM, Harold wrote:
>
> The page you're getting is just a default error page for production
> environments. How are you starting the server?
> ruby s
The page you're getting is just a default error page for production
environments. How are you starting the server?
ruby script\server? Try adding RAILS_ENV=development to that command:
ruby script\server RAILS_ENV=development
In the development environment, the page shown when an error occurs
sh
Eric Raio wrote:
> I just got an interesting repository from github and I have been trying
> diligently to get this app to work. This seems like a general error to
> me but I do not understand how to fix it.
There are much, much better ways to learn Rails than finding interesting GitHub
project
25 matches
Mail list logo