Numlock
2006-Mar-29 21:40 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Good afternoon, I''ve two quick questions for the Ruby/Rails community. 1) Do you use Linux for Ruby or Rails development? 2) If you use Linux, which distro do you normally use to develop? Thank you for your input. :-) -- Posted via http://www.ruby-forum.com/.
Joe
2006-Mar-29 21:49 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
1. Yep 2. FC4. Joe -- Posted via http://www.ruby-forum.com/.
James Ludlow
2006-Mar-29 21:59 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
On 3/29/06, Numlock <nospammers@nospam.com> wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development?Yes> 2) If you use Linux, which distro do you normally use to develop?Fedora Core 5
Charlie Bowman
2006-Mar-29 22:08 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
I use fedora. On Wed, 2006-03-29 at 23:06 +0200, Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? > > Thank you for your input. :-)Charlie Bowman http://www.recentrambles.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060329/6d12f39c/attachment-0001.html
Richard Livsey
2006-Mar-29 22:25 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? >Windows, although as soon as I scrape some extra cash together I plan on getting a Mac. Never thought I''d hear myself saying that! -- R.Livsey http://livsey.org
Alan Francis
2006-Mar-29 22:27 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? >Nope> 2) If you use Linux, which distro do you normally use to develop?MacOSX. I do, however, deploy onto Debian. A. -- Posted via http://www.ruby-forum.com/.
Jon Gretar Borgthorsson
2006-Mar-29 22:46 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
On 3/29/06, Richard Livsey <richard@livsey.org> wrote:> Numlock wrote: > > Good afternoon, > > I''ve two quick questions for the Ruby/Rails community. > > > > 1) Do you use Linux for Ruby or Rails development?Mac for development. Linux for hosting.> > 2) If you use Linux, which distro do you normally use to develop?CentOS for my hosting.> > Windows, although as soon as I scrape some extra cash together I plan on > getting a Mac. > > Never thought I''d hear myself saying that!hehe... Trust me... You will love using TextMate and iTerm for development. It absolutely rocks. But for jokes... Here is a chart of what to expect. http://img231.imageshack.us/img231/3951/osxsatisfactionchart1qk.jpg But in reality. Switching to Mac those 2 years ago was the best thing that ever happened to me. I love not having to spend 10% of my personal time just keeping Windows working and virus free. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
Stephen Bannasch
2006-Mar-29 22:54 UTC
[Rails] after adding table_name_prefix existing controllers don''t work
I had a small working app with three models and one controller. I decided to add a table_name_prefix to the tables because I am planning to deploy to a shared hosting environment where multiple rails apps will use the same database. I added this to config/environment.rb: ActiveRecord::Base.table_name_prefix = ''teemss2_'' I deleted the existing tables and the file db/schema.rb and ran rake migrate again. Doing rake I now have the same set of tables in the db with a prefix on their names BUT when I try and execute a controller database name: teemss2_development table_name_prefix: teemss2_ table name: activities I would think that Active Record should be trying to load: teemss2_development.teemss2_activities Instead it is trying to load: teemss2_development.activities which doesn''t exist. I''m sure I shouldn''t have to refer to the actual table_name_prefix in my controllers. In fact I don''t see how I can. I''ve been looking at the rails source for clues and I''ll try a simple smaple app from scratch using table_name_prefix to see if the controllers work and what if any differences I can find. Here the stack trace: Instead here Mysql::Error: #42S02Table ''teemss2_development.activities'' doesn''t exist: SHOW FIELDS FROM activities RAILS_ROOT: script/../config/.. Application Trace | Framework Trace | Full Trace /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/connection_adapters/abstract_adapter.rb:120:in `log'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/connection_adapters/mysql_adapter.rb:185:in `execute'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/connection_adapters/mysql_adapter.rb:293:in `columns'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/base.rb:696:in `columns'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/calculations.rb:212:in `column_for'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/calculations.rb:135:in `calculate'' /usr/local/lib/ruby/gems/1.8/gems/activerecord-1.14.0/lib/active_record/calculations.rb:64:in `count'' /usr/local/lib/ruby/gems/1.8/gems/actionpack-1.12.0/lib/action_controller/pagination.rb:172:in `count_collection_for_pagination'' /usr/local/lib/ruby/gems/1.8/gems/actionpack-1.12.0/lib/action_controller/pagination.rb:196:in `paginator_and_collection_for'' /usr/local/lib/ruby/gems/1.8/gems/actionpack-1.12.0/lib/action_controller/pagination.rb:129:in `paginate'' #{RAILS_ROOT}/app/controllers/page_controller.rb:13:in `list'' -- - Stephen Bannasch Concord Consortium, http://www.concord.org
Bakki Kudva
2006-Mar-29 23:07 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Debian Sarge bakki On 3/29/06, Numlock <nospammers@nospam.com> wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? > > Thank you for your input. :-) > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Ben Reubenstein
2006-Mar-29 23:18 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
> 1) Do you use Linux for Ruby or Rails development?No, mainly Mac and Windows All my hosting is done on Gentoo Linux On 3/29/06, Numlock <nospammers@nospam.com> wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. >> > Thank you for your input. :-) > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Ben Reubenstein http://www.benr75.com
Christophe Gimenez
2006-Mar-29 23:19 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
I use CentOS as a development platform with RadRails running on a Windows XP work station. I have also installed a full ruby (1.8.4 RC1) + rails (1.1) that I run under cygwin (because cygwin gives me a real shell under Windows) on my laptop. I didn''t tried with the cygwin version of ruby but I should... -- Posted via http://www.ruby-forum.com/.
Martin Scheffler
2006-Mar-29 23:20 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? > > Thank you for your input. :-)OpenSuse 10.0 Apt4Suse http://linux01.gwdg.de/apt4rpm/ KDE 3.5.1 Editor: Jedit (jedit.org) I hate macs :) -- Posted via http://www.ruby-forum.com/.
Joe
2006-Mar-29 23:22 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
J?n Borg??rsson wrote:> > hehe... Trust me... You will love using TextMate and iTerm for > development. It absolutely rocks. > > But for jokes... Here is a chart of what to expect. > http://img231.imageshack.us/img231/3951/osxsatisfactionchart1qk.jpgLOL, what''s day 3 all about? Joe -- Posted via http://www.ruby-forum.com/.
Jon Gretar Borgthorsson
2006-Mar-29 23:45 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
On 3/29/06, Joe <joe@yahoo.com> wrote:> J?n Borg??rsson wrote: > > > > hehe... Trust me... You will love using TextMate and iTerm for > > development. It absolutely rocks. > > > > But for jokes... Here is a chart of what to expect. > > http://img231.imageshack.us/img231/3951/osxsatisfactionchart1qk.jpg > > LOL, what''s day 3 all about?hehe... Even though MacOS is much simpler in use than Windows, it is a bit of a shock moving into it. You keep looking for the start button. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
Jeremy Cowgar
2006-Mar-29 23:55 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Ubuntu ... when in Linux, I develop on Mac OS X most of the time. Jeremy http://lifewithchrist.org <--- currently being redeveloped in RoR
Gregory Seidman
2006-Mar-29 23:56 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
On Wed, Mar 29, 2006 at 11:06:34PM +0200, Numlock wrote: } Good afternoon, } I''ve two quick questions for the Ruby/Rails community. } } 1) Do you use Linux for Ruby or Rails development? Yes. } 2) If you use Linux, which distro do you normally use to develop? Debian testing/unstable. } Thank you for your input. :-) --Greg
Lori Olson
2006-Mar-30 00:10 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
On Wednesday, March 29, 2006, at 11:06 PM, Numlock wrote:>Good afternoon, >I''ve two quick questions for the Ruby/Rails community. > >1) Do you use Linux for Ruby or Rails development? >Yes, for the build server, Fedora Core 4. Staging and production servers are RedHat EL4.>2) If you use Linux, which distro do you normally use to develop? >Mac OSX. -- Lori Olson http://blog.dragonsharp.com -- Posted with http://DevLists.com. Sign up and save your time!
Just Someone
2006-Mar-30 00:17 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Hi,> 1) Do you use Linux for Ruby or Rails development?Yes. Both development and deployment on Linux.> 2) If you use Linux, which distro do you normally use to develop?Fedora Core 4 for both. Guy. -- Family management on rails: http://www.famundo.com - coming soon! My development related blog: http://devblog.famundo.com
Henry Turner
2006-Mar-30 00:29 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
If you wait till the 1st of june you can get ubuntu dapper. Comes with a new gedit that has snippets support and a plugin engine(big potential ie svn). And with xgl/compiz you''ll see all the effects that make osx pretty like it is. http://tw.apinc.org/weblog/2006/02/26#a-closer-look-to-gedit-214 On Wednesday, March 29, 2006, at 11:06 PM, Numlock wrote:>Good afternoon, >I''ve two quick questions for the Ruby/Rails community. > >1) Do you use Linux for Ruby or Rails development? > >2) If you use Linux, which distro do you normally use to develop? > >Thank you for your input. :-) > >-- >Posted via http://www.ruby-forum.com/. >_______________________________________________ >Rails mailing list >Rails@lists.rubyonrails.org >http://lists.rubyonrails.org/mailman/listinfo/rails-- Posted with http://DevLists.com. Sign up and save your time!
Vincent Gov
2006-Mar-30 00:34 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Archlinux On 30 Mar 2006 00:28:01 -0000, Henry Turner < devlists-rubyonrails@devlists.com> wrote:> > If you wait till the 1st of june you can get ubuntu dapper. Comes with a > new gedit that has snippets support and a plugin engine(big potential ie > svn). And with xgl/compiz you''ll see all the effects that make osx > pretty like it is. > > http://tw.apinc.org/weblog/2006/02/26#a-closer-look-to-gedit-214 > > > On Wednesday, March 29, 2006, at 11:06 PM, Numlock wrote: > >Good afternoon, > >I''ve two quick questions for the Ruby/Rails community. > > > >1) Do you use Linux for Ruby or Rails development? > > > >2) If you use Linux, which distro do you normally use to develop? > > > >Thank you for your input. :-) > > > >-- > >Posted via http://www.ruby-forum.com/. > >_______________________________________________ > >Rails mailing list > >Rails@lists.rubyonrails.org > >http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > -- > Posted with http://DevLists.com. Sign up and save your time! > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Vincent H Gov -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060330/c530320c/attachment.html
David Mitchell
2006-Mar-30 01:07 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Develop on Windows and Ubuntu. Test on Gentoo (i.e. my latest "presumed good" version is on Gentoo) Production is on Gentoo (for things I host myself) and whatever Dreamhost uses (for things that aren''t) Regards Dave M. On 30/03/06, Numlock <nospammers@nospam.com> wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? > > Thank you for your input. :-) > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
Matthew Beale
2006-Mar-30 01:39 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
On Wed, 2006-03-29 at 23:06 +0200, Numlock wrote:> 1) Do you use Linux for Ruby or Rails development?Yes> 2) If you use Linux, which distro do you normally use to develop?Gentoo (debian for servers if the load isn''t a large scale one) -- -Matthew Beale mixonic@synitech.com :: 607 227 0871 Resume and Portfolio @ http://madhatted.com
John Smith
2006-Mar-30 02:54 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? > > Thank you for your input. :-)1. Sometimes. I use both Linux and Windows 2000. 2. I use Debian 3.1 (sarge) because I like to develop on the same distro as the production server. Too bad rails 1.1 breaks ''rake freeze_edge'' for Debian 3.1 shared hosts (because Debian 3.1 still uses svn 1.1.4 which doesn''t support the --limit option). In the future, I''ll probably buy a Mac and develop on that. And deploy on Ubuntu 7.x because I think their server version will become VERY compelling over the next 12 months for current Debian users. -- Posted via http://www.ruby-forum.com/.
Allen Fair
2006-Mar-30 03:09 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
> 1) Do you use Linux for Ruby or Rails development? > 2) If you use Linux, which distro do you normally use to develop?Developing on Gentoo Deploying on FreeBSD (Did you see that coming?) :-)
Larry Kelly
2006-Mar-30 03:23 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Yep, Started using Fedora Core 5 last week. Really easy to set up. Radrails 0.6.1 with Rails 1.1, Ruby 1.8.4 Also develop on WindowsXP. Sorry, don''t have a Mac. My son won''t let me borrow his :) -Larry On 3/29/06, John Smith <nospam1@nospam1.lan> wrote:> > Numlock wrote: > > Good afternoon, > > I''ve two quick questions for the Ruby/Rails community. > > > > 1) Do you use Linux for Ruby or Rails development? > > > > 2) If you use Linux, which distro do you normally use to develop? > > > > Thank you for your input. :-) >-- Best Regards, -Larry "Work, work, work...there is no satisfactory alternative." --- E.Taft Benson -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060330/ecce5b8c/attachment.html
Guido Sohne
2006-Apr-04 14:04 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
I develop on Mac OS X. I stage on Ubuntu Dapper. I deploy on Windows Server 2003 ... -- G. On Mar 29, 2006, at 9:06 PM, Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? > > 2) If you use Linux, which distro do you normally use to develop? > > Thank you for your input. :-) > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails
M. Edward (Ed) Borasky
2006-Apr-16 04:00 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
Yes, I use Linux ... Gentoo Linux. Guido Sohne wrote:> I develop on Mac OS X. I stage on Ubuntu Dapper. I deploy on Windows > Server 2003 ... > > -- G. > > On Mar 29, 2006, at 9:06 PM, Numlock wrote: > >> Good afternoon, >> I''ve two quick questions for the Ruby/Rails community. >> >> 1) Do you use Linux for Ruby or Rails development? >> >> 2) If you use Linux, which distro do you normally use to develop? >> >> Thank you for your input. :-) >> >> --Posted via http://www.ruby-forum.com/. >> _______________________________________________ >> Rails mailing list >> Rails@lists.rubyonrails.org >> http://lists.rubyonrails.org/mailman/listinfo/rails > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- M. Edward (Ed) Borasky http://linuxcapacityplanning.com
John Hornbeck
2006-Apr-16 04:04 UTC
[Rails] Poll: Which distro do you use for Rails/Ruby development?
My developers work on Ubuntu, while I work on a Mac. John On 4/15/06, M. Edward (Ed) Borasky <znmeb@cesmail.net> wrote:> > Yes, I use Linux ... Gentoo Linux. > > Guido Sohne wrote: > > I develop on Mac OS X. I stage on Ubuntu Dapper. I deploy on Windows > > Server 2003 ... > > > > -- G. > > > > On Mar 29, 2006, at 9:06 PM, Numlock wrote: > > > >> Good afternoon, > >> I''ve two quick questions for the Ruby/Rails community. > >> > >> 1) Do you use Linux for Ruby or Rails development? > >> > >> 2) If you use Linux, which distro do you normally use to develop? > >> > >> Thank you for your input. :-) > >> > >> --Posted via http://www.ruby-forum.com/. > >> _______________________________________________ > >> Rails mailing list > >> Rails@lists.rubyonrails.org > >> http://lists.rubyonrails.org/mailman/listinfo/rails > > > > _______________________________________________ > > Rails mailing list > > Rails@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > -- > M. Edward (Ed) Borasky > > http://linuxcapacityplanning.com > > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- John Hornbeck -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060416/bed4796c/attachment.html
Keith Lancaster
2006-Apr-16 04:34 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
We develop on mac and Windows (me on the mac). Going back to the mac after 10 year absense is the best thing I''ve done for myself in a LONG time. Deploy (currently) to Windows, with svn running on Suse. Looking into deploying on x serve (mac os and hardware). Keith -- Posted via http://www.ruby-forum.com/.
Christian Klauser
2006-Apr-16 23:57 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
> 1) Do you use Linux for Ruby or Rails development?No> 2) [If you use Linux], which distro do you normally use to develop?Windows XP Pro SP2 -- Posted via http://www.ruby-forum.com/.
Vince W.
2006-Apr-17 00:29 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Numlock wrote:> Good afternoon, > I''ve two quick questions for the Ruby/Rails community. > > 1) Do you use Linux for Ruby or Rails development? >Yes.> 2) If you use Linux, which distro do you normally use to develop? >Archlinux for development. Debian and Ubuntu for deployment. -- Posted via http://www.ruby-forum.com/.
Aaron Kulbe
2006-Apr-17 11:23 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Numlock wrote:> > Good afternoon, > > I''ve two quick questions for the Ruby/Rails community. > > > > 1) Do you use Linux for Ruby or Rails development? > >Yes.> 2) If you use Linux, which distro do you normally use to develop?> >Gentoo> -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060417/5766fe82/attachment.html
cdr
2006-Apr-17 19:13 UTC
[Rails] Re: Re: Poll: Which distro do you use for Rails/Ruby develop
>> > 1) Do you use Linux for Ruby or Rails development? > Yes. > >> 2) If you use Linux, which distro do you normally use to develop? > Gentoosame and same. IMO the biggest problem for using linux for development, is the lack of a web browser that is both decent and fast. Konqueror has a tendency to lock up for 10 seconds after loading a page with heavy javascript, and easily runs into the hundreds of MB''s of RAM. Firefox is slow all around (although with heavy JS its faster than Konqi) and has similar RAM problems. Opera''s CSS/AJAX stuff is screwed in general, and it requires a multilib setup to use if youre on 64bit. IE6 in WINE is probably the fastest, but for whatever reason Maxton/Slimbrowser won''t run.. -- Posted via http://www.ruby-forum.com/.
> same and same. IMO the biggest problem for using linux for development, > is the lack of a web browser that is both decent and fast.Ruby-Gtk2MozEmbed is cool though. especially the HTML Editor with live preview. im pretty sick of continually paging between emacs and shitty-browser-of-choice and hitting reload and am about to just glue all of this together with mongrel and sqlite.. refreshing the page every time you edit a single character.. i guess its not as good as developing in Squeak but pretty close -- Posted via http://www.ruby-forum.com/.
Fido Gesiwuj
2006-Apr-17 19:47 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Richard Livsey wrote:> Numlock wrote: >> Good afternoon, >> I''ve two quick questions for the Ruby/Rails community. >> >> 1) Do you use Linux for Ruby or Rails development? >> >> 2) If you use Linux, which distro do you normally use to develop? >> > > Windows, although as soon as I scrape some extra cash together I plan on > getting a Mac. > > Never thought I''d hear myself saying that! > > -- > R.Livsey > http://livsey.orgSame here. I''m also planning on learning Linux and I will be using Ubuntu. -- Posted via http://www.ruby-forum.com/.
Devon Jones
2006-Apr-17 19:53 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Fido Gesiwuj wrote:> Richard Livsey wrote: > >> Numlock wrote: >> >>> Good afternoon, >>> I''ve two quick questions for the Ruby/Rails community. >>> >>> 1) Do you use Linux for Ruby or Rails development? >>> >>> 2) If you use Linux, which distro do you normally use to develop? >>> >>> > Same here. I''m also planning on learning Linux and I will be using > Ubuntu. > >1) Yes and No. I use Linux and FreeBSD dependent on the customer 2) In order of preference Gentoo Linux (the easiest to get rails playing nicely with apache in my experience), Ubuntu, Debian Devon Jones
Peter Szinek
2006-Apr-17 22:00 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Hi, I have switched from gentoo to ubuntu quite some time ago (i think around Warty) and i like it very much! However, getting Rails to run gave me 2 days of headache... Find out why: http://www.rubyrailways.com/?p=6 But, after this lesson learned i would still recommend linux, and the distro... well, gentoo, debian, or ubuntu. I am very curious about Rubuntu - i am not sure about its release date (or is it released already?) - that might by a very interesting alternative as well. Cheers, Peter
Chris Martin
2006-Apr-17 23:18 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
On 4/17/06, Peter Szinek <peter@rt.sk> wrote:> Hi, > > I have switched from gentoo to ubuntu quite some time ago (i think > around Warty) and i like it very much! However, getting Rails to run > gave me 2 days of headache... Find out why: > > http://www.rubyrailways.com/?p=6FWIW you could''ve also done sudo apt-get install libmysql-ruby instead of fussing with the gem 1. Yes 2. Debian / Kubuntu I also use OS X, but typically run my KDE apps via fink, so it''s still Linux to me. -- Chris Martin Web Developer Open Source & Web Standards Advocate http://www.chriscodes.com/
Peter Szinek
2006-Apr-17 23:27 UTC
[Rails] Re: Poll: Which distro do you use for Rails/Ruby development
Chris Martin wrote:> On 4/17/06, Peter Szinek <peter@rt.sk> wrote: >> Hi, >> >> I have switched from gentoo to ubuntu quite some time ago (i think >> around Warty) and i like it very much! However, getting Rails to run >> gave me 2 days of headache... Find out why: >> >> http://www.rubyrailways.com/?p=6 > > FWIW you could''ve also done > sudo apt-get install libmysql-ruby > instead of fussing with the gemHeh, do you think i did not try that? Maybe it was not clear from the sentence ''Under Ubuntu, the MySQL-Ruby binding was outdated'' I just upgraded to dapper an hour before i begun with the rails install, so i assume my repositories were as up-to-date as possible. Yet i got a message during the scaffold generation, saying that i should create the DB table for my model (what i did of course) and the rails book suggested that this is an outdated mysql-ruby connector problem. Because of this i begun the gem Via-Dolorosa ;-) Cheers, Peter