Displaying 11 results from an estimated 11 matches for "jfrankov".
2008 Sep 16
8
rspec, Rails 2.1.0, rubygems, Mac OS X Leopard - rubygems does not recognize latest version
....rb
Rails requires RubyGems >= 0.9.4 (you have 0.9.3). Please `gem update
--system` and try again.
...but I already have the latest & greatest installed:
$ gem search --local rubygem
*** LOCAL GEMS ***
rubygems-update (1.2.0, 0.9.5)
Tue Sep 16 14:51:38 [~/Seethroo/working/code/ror/trunk]
jfrankov@bigmac (504) $ sudo gem update --system
Password:
Updating RubyGems
Nothing to update
$ spec spec/models/my_spec.rb
Rails requires RubyGems >= 0.9.4 (you have 0.9.3). Please `gem update
--system` and try again.
Any idea why this is "stuck"? I''ve tried to reinstall the gem u...
2006 Jun 24
2
error log for views?
...for Rails overall or for view errors specifically? Or is there some
erb code I can insert into 500.html to show me the exact error
message being generated?
Thanks!
-Jason
--
Jason Frankovitz - jason@seethroo.us - http://www.seethroo.us/
work: (310) 601-8454
cell: (415) 254-4890
AIM/Skype: jfrankov
2007 Jan 11
0
writing tests for rescue_action_in_public
...greatly appreciated. Thanks in advance
to everyone.
-Jason
PS: As far as routes.rb, there''s nothing in there doing any explicit
routing to my application controller or the rescue_action_in_public
method, so I don''t think that''s a factor.
--
Jason Frankovitz - jfrankov-e+AXbWqSrlAAvxtiuMwx3w@public.gmane.org
work: (310) 601-8454
cell: (415) 254-4890
AIM/Skype: jfrankov
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send...
2008 Aug 30
1
rails 2.1.0 doesn't find my rails app
I''m upgrading from rails 1.2.3 to 2.1.0. I got all my 1.2.3 tests to
pass in 2.1.0 with no deprecation warnings, renamed my views, replaced
all the config files with a fresh "rails --force /path/to/app" and
fired up mongrel. Problem is when I visit the homepage of my app,
rails serves that default page that says "Ruby on Rails: Welcome
Aboard". It acts like
2006 Jul 08
1
conditional table association?
...to tell the Event model that lort_id
belongs_to links if the value is 1, and that it belongs_to tags if
the value is 2. Is this possible/wise/insane?
Thanks in advance!
-Jason
--
Jason Frankovitz - jason@seethroo.us - http://www.seethroo.us/
work: (310) 601-8454
cell: (415) 254-4890
AIM/Skype: jfrankov
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060708/2065746a/attachment.html
2007 Oct 21
13
[ANN/RFC] Rathole, a fixtures extension plugin
Like lots of other folks, I''ve been searching for a way to scratch my
fixture itches. Rathole is my extraction of a few techniques we''ve
successfully applied at my day job.
We''ve been using Rathole for a month or so now, but I''d really like
some feedback from a wider audience. Rathole tackles:
* Conflicting PK''s (no more id''s in fixture
2006 Jun 28
2
hash value won''t increment with =+ operator
...b.tags.include?(t) then hash[b.id] = x; x = x + 1; hash[b.id] = x
...but got the exact same output.
Any advice about what I''m missing here would be great. Thanks!
-Jason
--
Jason Frankovitz - jason@seethroo.us - http://www.seethroo.us/
work: (310) 601-8454
cell: (415) 254-4890
AIM/Skype: jfrankov
2006 Oct 17
3
rake -T is missing rake db:fixtures:dump?
...on Web Service version 1.1.6
Action Mailer version 1.2.5
Active Support version 1.3.1
Application root [snip]
Environment development
Database adapter mysql
Database schema version 28
Thanks!
-Jason
--
Jason Frankovitz - jfrankov at pobox dot 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-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from...
2007 Jun 15
1
mongrel cluster issues, plain old mongrel OK
I just created a test rails app, and am having very wierd issues with
mongrel cluster. Here''s what I''m doing:
rails test
sudo chown -R mongrel:mongrel test
cd test
sudo mongrel_rails \
cluster::configure -e production \
-p 8000 -N 3 -a 127.0.0.1 --user mongrel \
--group mongrel
It correctly writes the mongrel_cluster.yml file to the config
directory. Now,
2006 Sep 06
22
ROR host: dreamhost or godaddy?
hi all,
i am looking for a host for my ROR web app. the target audience will be
70% from mainland china, and 30% from the rest of the world.
i dont want a chinese hosst because:
1. it''s very slow for the rest of the world to access to it.
2. the speed is quite ok for china to access the us sites.
both dreamhost and godaddy provide similar budget plans, and i saw them
all from this
2007 Jun 28
1
complete stumper: variable exists in hidden_field_tag, but nil everywhere else
This is a real mystery to me. I have an instance variable in a partial
that only gives its value inside a hidden_field_tag. If I try to use
the variable anywhere else in the partial, i either get nil or an
undefined error. The goal is to use the value of @event.id outside of
hidden_field_tag.
Here''s what works:
<%= hidden_field_tag ''id'', @event && @event.id,