search for: mckibl

Displaying 9 results from an estimated 9 matches for "mckibl".

Did you mean: mckible
2007 Jun 21
9
it_should_behave_like
...fixtures'' for #<Spec::DSL::EvalModule:0x324a2cc> (NoMethodError) Here''s the spec http://pastie.caboo.se/72287 Am I using it_should_behave_like properly? Am I making a separate mistake? I have RSpec setup as a svn external (currently rev2101). Thanks, Jordan http://jordan.mckible.com -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/rspec-users/attachments/20070621/f5da66f8/attachment.html
2007 Jun 04
10
ActiveBudget - Track your money and learn Rails
...ment. It''s also far from feature complete. I plan to add SMS text messaging and more reporting in the future. I''m committed to making ActiveBudget well documented, so if you find yourself having questions, let me know and I''ll do my best to clarify. Jordan http://jordan.mckible.com -- 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-/JYPxA39Uh5TLH3MbocFFw@publi...
2006 Apr 13
3
Java/J2EE DAO/model objects vs. Ruby/Rails model objects
In typical Java/J2EE applications, domain model object do not have much logic, they are basically data holders. It seems to be considered a sin to put persistence logic in the domain model objects, instead it should be put a DAO (Data Access Object). I have always thought this seems funny, after all, what seems more natural/object-oreiented?: user.save() or userDao.save(user) In Ruby/Rails,
2006 Jul 18
3
basic variable question
Sorry if this may be a stupid question.. In my controller, what is the difference between doing: total = 0 and @total = 0 Thanks, /mich -- Posted via http://www.ruby-forum.com/.
2006 Apr 13
1
New Guide - Looking for Feedback
I''ve written a new Rails howto guide. It covers installation of a development environment, how to use Subversion and Capistrano effectively, and deploying to production using Textdrive. It''s basically a compilation of all the best guides I''ve found, plus a few new things I''ve come up with. I''d love to have you take a look and let me know what
2007 Jul 25
2
svn down
I tried to checkout AAF from the repository but get: Fetching external item into ''trunk/vendor/plugins/acts_as_ferret'' svn: Can''t connect to host ''projects.jkraemer.net'': Connection refused Anyone else experiencing the same ? -- Posted via http://www.ruby-forum.com/.
2007 Jun 09
1
Rake test tasks only work with --trace
...;ll post below. It looks to me like the schema dump is running into problems. I just can''t figure out why it works for some tasks and not other. They all seem to go through the same db building process. The app is running with Rails 1.2.2 frozen into vendor/rails. Jordan http://jordan.mckible.com /dev/myapp/config/../vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:1127:in `write'' /dev/myapp/config/../vendor/rails/activerecord/lib/active_record/vendor/mysql.rb:1177:in `finalizer'' /dev/myapp/config/../vendor/rails/activerecord/lib/active_record/connection_a...
2006 Jul 18
0
Naming Relationship
This is not a technical question persay, but since rails is all about opinions, I figured it was worth asking: Now that CRUD is on people''s minds as a way to design webapps, I''m wondering if anyone has put thought into a naming convention for relationships. Some relationships have good terms, like User -> Subscription -> Magazine. I''ve found working with
2007 Mar 15
1
Helper content_tag and Blocks
The content_tag helper allows you to do things like: content_tag(:p, "Hello world!") # => <p>Hello world!</p> It can take in blocks, for functionality like this: <% content_tag :div, :class => "strong" do -%> Hello world! <% end -%> # => <div class="strong"><p>Hello world!</p></div> Unfortunately blocks