Displaying 20 results from an estimated 50000 matches similar to: "For the Rails Newbies"
2007 Jul 31
9
Any liberally-licensed open source projects out there that make good use of RSpec?
I''m trolling for example RSpec code. Any pointers appreciated.
Cheers,
Obie
2005 May 11
5
Ruby on Rails Presentation to Agile Atlanta Group tonight...
Hi everyone,
We had a really successful meeting tonight in Atlanta. The topic was
an introduction to Ruby on Rails and our attendance was 30 people,
which is over double of what we normally get. (Our attendance has
dropped since moving the venue about 25 miles north of the city.
The majority of the group stayed well past two hours, at which point
we took a break. The entire presentation and
2006 May 03
3
Installing a standalone package of rails
I recently downloaded a standalone package of rails, release 0.12.1
(.zip) but I don''t know how to install. When I unzip, I get a lot of
-sometimes empty- folders. Should I copy these folders? If so, where
should I copy them?
I hope you can help me!
--
Posted via http://www.ruby-forum.com/.
2010 Jan 04
2
to_parm and how it can be used in a helper
is there a way to pass the data returned by the to_parm function in a
helper?
i followed the info provided at
http://www.jroller.com/obie/entry/seo_optimization_of_urls_in and am
able to successfully get the correct urls, now i want to be able to get
the same (id-whatever) text and pass it to a helper function for further
processing.
Any ideas as to how this can be achieved?
--
Posted via
2006 Jul 07
0
Ruby on AIX?
I have managed to compile Ruby on AIX 5.3 and have run my application
successfully on it. I have to go thru some series of simple steps to
achieve the same. I have tried to document the same for the benefit
of others.
Please go to http://karthikvkrishnan.blogspot.com/2006/03/compiling-ruby-on-ibm-aix.html
Cheers,
Karthik.
> I''ve successfully compiled and installed Ruby 1.8.3 on
2005 Dec 21
6
Rails without a db - how to run tests
I''m writing a simple app that doesn''t need to use a database. I added
:active_record to the config.frameworks -= line in environment.rb
file. This lets me run ./script/generate fine without complaining
about no connection. However if I try to run a functional test, it
complains about no connection being established. Well...I don''t want
a connection to be established.
2006 Mar 06
4
Change to set_fixture_class
So, I sat down to use set_fixture_class, and it bombed on the first
thing I tried:
set_fixture_class :content_drafts => "Article::Draft"
I made a quick patch, and I''d appreciate a quick run through your
tests to make sure it doesn''t disturb anything:
http://dev.rubyonrails.org/ticket/4095
As I was typing this, I realized that the string gives us no benefits.
I
2005 Dec 22
6
Performance and scalability
Hi,
My question is.
What are your performance experiences compared to languages such as PHP,
PERL and ASP?
Could you build a site as big as Ebay on rails and have it perform fast
enough?
I''m afraid that the generalisation in components I see so much users
asking for will make the framework too heavy compared to a clean
programmed for perfomance PHP application. Probably even
2006 May 21
12
TDD for Rails book?
It seems like half the people on this list are writing a book on Ruby
or Rails. For all the hints I''ve seen strewn across the list I have
yet to see one that will focus on test-driven development for either
Ruby or for Rails.
If anyone is looking for a topic, please consider this. I''ve been
trying to wrap my brain around the TDD process, but its way of
thinking is
2009 Jul 15
0
Aloha on Rails, Hawaii Rails Conf, Last Day for Proposals
Aloha!
July 15th is the last day for proposals to present at Aloha on Rails,
the Hawaii Ruby on Rails Conference. Join Chad Fowler, Obie
Fernandez, Gregg Pollack, Jim Weirich, Yehuda Katz, and many more at
the premier destination event for Ruby on Rails! Aloha on Rails will
be held in Waikiki, Hawaii on Oct 5-6, 2009.
To learn more, and to submit your proposal, please visit
2006 Jan 11
6
UK Rates for RoR Contract work?
Hi all,
I''ve been offered a short-term contract here in the North of England -
around 3 months work, but with RoR I think it will take considerably
less time - and am just curious what market rates were right now.
I''ve been offered a little under ?1k/week which seems ''right'' for a PHP
coder doing this kind of work, but should I be hitting for more, or is
2006 Jan 18
35
Pay rates for Rails developers
Does anyone have an idea of the rates being charged by Rails developers
(or salaries for FTEs)?
I''m curious to see whether rates will become comparable to those paid to
more experienced Java/.NET developer types, or if rates will be lowered
by the free/open source mentality, and the possible perception that
Rails makes Web development "easy."
Sometimes rates are more
2007 Aug 08
9
RSpec book?
<http://www.apress.com/book/bookDisplay.html?bID=10368>
Came across this as a stub page browsing Amazon UK. This is good
news! I''m surprised it hasn''t been discussed on the list before.
Was Chad keeping it a secret?
I hope it will have plenty of BDD theory. I''m still waiting for that
magic book I can give to someone and say "here - read this, it
2007 Apr 23
6
[CruiseControl] RubyOnRails build 6553 failed
The build failed.
See http://cruisecontrolrb.thoughtworks.com/builds/RubyOnRails/6553 for details.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group.
To post to this group, send email to rubyonrails-core@googlegroups.com
To unsubscribe from this group, send email to
2016 Oct 03
2
Desktop for newbies
> -----Original Message-----
> From: centos-bounces at centos.org [mailto:centos-bounces at centos.org] On
> Behalf Of Valeri Galtsev
> Sent: den 30 september 2016 18:14
> To: CentOS mailing list <centos at centos.org>
> Subject: Re: [CentOS] Desktop for newbies
>
> >> > I'm about to set up a non-root user on a Centos=7 server that I
control
> >>
2007 Jul 24
9
will_paginate plugin doesn't work with Association Extensions?
I have:
class Post < ActiveRecord::Base
has_many :comments do
def published
find( :all,
:conditions => {:published => true} )
end
end
end
When in my controller I do
Post.find(:first).comments.published.paginate :page => params[:page]
I get an error
undefined method `paginate'' for []:Array
Is will_paginate supposed to
2008 Jul 14
1
will_paginate paginates all instead of subclass
I''m still a newb but having fun - Any help on this problem will be
much appreciated.
I have mymodel Call.rb
class Call < ActiveRecord::Base
belongs_to :user
has_many:visits, :dependent => :destroy
has_many:visits do
def latest
find :all, :order => ''id DESC'', :limit => 3
end
def all_latest
find
2013 Mar 09
2
Server advice for RoR for newbies
Hello,
I am fairly new to Ruby and deployment. Have started creating a some apps
and going through tutorials, etc. I am thinking about buying my own server
like a HP ProLiant DL380e Gen8 Server<http://h10010.www1.hp.com/wwpc/de/de/sm/WF25a/15351-15351-3328412-241475-241475-5261094.html> to
host and deploy my own web app which is a project management database where
externals and
2006 Feb 09
11
Ruby on AIX?
We''re looking at big IBM hardware running AIX as a potential
deployment platform for the big credit card processing Rails and Ruby
stuff that my team is currently building. I was wondering if anyone
else is running on AIX or knows if Ruby is well-supported on this
platform.
I googled the subject, but
http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/3daaf60b012c1921
is
2007 Jul 23
4
RoR Postion. Full time, Utah
We have 2 positions open for experienced ROR programmers. If you feel
like you are a experienced ROR programmer and are looking for a full
time position, please send over you resume. You must be willing to re-
locate. No contract jobs. We have an in house team and have only 2
positions left.
Starting Salary DOE. $30,000-$60,000 with housing, full benefits,
401k, paid vacation, ext. Don''t