Hello everybody, first I would like to tell you I''m new to this forum and Ruby. I tried Hackety Hack (www.hacketyhack.com). I love the Ruby language, since it'' s great to learn for beginners. It uses simple English-like commands. And is very Linux-friendly (as I use Xubuntu 10.10). Now I installed the Ruby enabled Netbeans IDE (Netbeans with Ruby support and without support for other languages). I saw you can make Rails Web applications with it. But in project setup wizard Netbeans asks me to choose a database adapter and you also have to choose a username and password (I chose the option "Specify Database Information Directly"). But when I click on "Next" nothing happens. When I choose no username and password, there also happens nothing. I even don''t get a error message or something. Does anyone no whats going on? Kind Regards, Superpelican -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Best advice we can give you is : use the console, always, no matter what ide you are using. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Use IDE for coding, and do all the stuff in console. There are tons of tutorials and screencasts available. All folks use terminals. You just won''t be able to do anything. As I remember, the Netbeans have an option "Initialize Rails project with existing sources" or something like that. So you do everything in terminal, run your app, and then open it with Netbeans. On Thu, Mar 10, 2011 at 10:17 PM, Superpelican X. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hello everybody, > > first I would like to tell you I''m new to this forum and Ruby. I tried > Hackety Hack (www.hacketyhack.com). I love the Ruby language, since it'' > s great to learn for beginners. It uses simple English-like commands. > And is very Linux-friendly (as I use Xubuntu 10.10). > > Now I installed the Ruby enabled Netbeans IDE (Netbeans with > Ruby support and without support for other languages). I saw you can > make Rails Web applications with it. But in > project setup wizard Netbeans asks me to choose a database adapter and > you also have to choose a username and password (I chose the option > "Specify Database Information Directly"). But when I click on "Next" > nothing happens. When I choose no username and password, there also > happens nothing. I even don''t get a error message or something. > > Does anyone no whats going on? > > Kind Regards, > > Superpelican > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Superpelican X.
2011-Mar-11 15:36 UTC
Re: Problem with making Rails Web App - Netbeans IDE
Could you explain to me what you mean with ''do everything in the terminal''. And give a good link for beginners. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Michael Pavling
2011-Mar-11 15:40 UTC
Re: Re: Problem with making Rails Web App - Netbeans IDE
On 11 March 2011 15:36, Superpelican X. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Could you explain to me what you mean with ''do everything in the > terminal''.Use the command prompt to manage your application.> And give a good link for beginners.http://guides.rubyonrails.org/getting_started.html -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Superpelican X.
2011-Mar-13 09:18 UTC
Re: Problem with making Rails Web App - Netbeans IDE
First thank for the tutorial link. I already read a piece of it. But at 3.5 "Create a database" I have a problem. I have to use the command "rake db:create" but the terminal tells me: --------------------------------------------------------------------------- No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb) /usr/lib/ruby/1.8/rake.rb:2377:in `raw_load_rakefile'' (See full trace by running task with --trace) --------------------------------------------------------------------------- Does anyone know what I have to do now? Maybe I have to configure rake for an other directory? Kind Regards, Superpelican :) -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 13 March 2011 09:18, Superpelican X. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> First thank for the tutorial link. I already read a piece of it. But at > 3.5 "Create a database" I have a problem. I have to use the command > "rake db:create" but the terminal tells me: > > --------------------------------------------------------------------------- > No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, > Rakefile.rb) > /usr/lib/ruby/1.8/rake.rb:2377:in `raw_load_rakefile'' > (See full trace by running task with --trace) > --------------------------------------------------------------------------- > > Does anyone know what I have to do now? Maybe I have to configure rake > for an other directory?Which directory are you in when you run rake? You should be in the top level of your rails application (the one with subfolders app, config etc). Colin -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Superpelican X.
2011-Mar-13 17:39 UTC
Re: Problem with making Rails Web App - Netbeans IDE
Thanks! It worked! A dumb mistake of me. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Vladimir Rybas
2011-Mar-13 22:43 UTC
Re: Re: Problem with making Rails Web App - Netbeans IDE
All right. And ask questions if you stuck. That is what community for ) On Sun, Mar 13, 2011 at 8:39 PM, Superpelican X. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Thanks! It worked! A dumb mistake of me. > > -- > 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.