[Rails] RubyHACK - scholarships available

2019-03-18 Thread Allen Maxwell
Hi All, Quick note. RubyHACK is coming in a few weeks. We still have seats and some scholarships available. If you can join us that would be great! Lot’s of great topics and Matz is talking about Ruby 3.0! If you’re interested in scholarships, apply at https://rubyhack.com/scholarships

[Rails] RubyHACK 2019 speakers announced!

2019-02-14 Thread Allen Maxwell
Please check us out and get registered for the April event! We have = Matz and an exciting lineup of speakers coming. https://rubyhack.com > Max /// / ^ \ ( o-o ) ---oOOO--(_

[Rails] ANN: RubyHACK CFP Closing Soon

2018-12-24 Thread Allen Maxwell
We’re gearing up for our third annual Ruby Developer Conference: RubyHACK 2019. Our theme this year is "Leveling Up": presenting materials and opportunities to help developers of all levels (newbie to senior) hone their craft. CFP submissions will close at the end of December which is fast

[Rails] Announcing RubyHACK 2019

2018-10-03 Thread Allen Maxwell
CFP and registration is open for the next event. Also looking for sponsors! https://rubyhack.com for details. Max -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving

[Rails] Re: help me debug this model

2018-03-27 Thread Allen Maxwell
It might help to have the models for auction and user... also, I like to add the annotate gem which gives some header comments in all my models to show what fields etc are there. Very helpful info and references. you already know that the validate needs to be validates... is this an active sys

[Rails] [ANN] RubyHACK speakers announced for 2018!

2018-02-27 Thread Allen Maxwell
Ok, the official speaker list for RubyHACK is on the website! (sorry it's taken so long - lots of work involved in this.) Please check us out and get registered. Early Bird discounts ending soon! (like in 2 days!) we are still looking for sponsors! http://rubyhack.com -- You received th

[Rails] [ANN] RubyHACK CFP closing soon

2017-12-28 Thread Allen Maxwell
Hi All, Last year was a very successful event and we hope to top that when we hold the 2nd annual RubyHACK conference in Salt Lake City, Utah May 3 / 4 2018. The CFP is still open until January and we’d like your support! If you’ve got fine-tuned presentations or are a beginner wishing to get

[Rails] RubyHACK coming next month!

2017-03-19 Thread Allen Maxwell
Hi All, Quick note - a new Ruby dev conference is starting it’s first annual event next month. 4/20 and 4/21. Look at http://rubyhack.com for details. Max -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group

[Rails] Re: Your procedure for starting a new Ruby on Rails app

2016-10-23 Thread Allen Maxwell
Depending on my needs, I often use RailsComposer by Daniel Kehoe. Some great options and the ability to create your own scripts - so you can build whatever you like... -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe fr

[Rails] RubyHACK coming in spring 2017 - Call for Presenters and Registration is Live!

2016-10-22 Thread Allen Maxwell
/call_for_presentations <http://rubyhack.com/call_for_presentations> Come to Salt Lake City in April and get your Ruby on! Thanks, Allen Maxwell aamaxwo...@gmail.com 801 790 4500 -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To

[Rails] ruby conference announced for SLC Utah

2016-10-04 Thread Allen Maxwell
Hi All, If anyone is interested in presenting or attending (or sponsoring) the upcoming event in the spring, please sign up on this site and let us know! http://rubyhack.com Max -- You received this message because you are subscribed to the Google Groups "Ruby on Ra

[Rails] Re: group_by in views

2015-11-23 Thread Allen Maxwell
%> On Sunday, November 22, 2015 at 9:13:51 AM UTC-7, Allen Maxwell wrote: > > Doing it this way seems to return an array of arrays where the 0 index is > the index and the 1 index is the list of items in that group... > > try doing something like this: > > Categorie

[Rails] Re: group_by in views

2015-11-22 Thread Allen Maxwell
Doing it this way seems to return an array of arrays where the 0 index is the index and the 1 index is the list of items in that group... try doing something like this: Categories <% @categories.group_by(&:parent_id).each do |parent_id, categories| %> <%= parent_id %> <% categories.each do |c

[Rails] Re: group_by in views

2015-11-22 Thread Allen Maxwell
This isn't related to your issue BUT, you shouldn't have <%= on the do line... just use <% Categories <% @categories.group_by(&:parent_id).each do |category| %> <%= category.name %> <% end %> On Saturday, November 21, 2015 at 2:24:51 PM UTC-7, fugee ohu wrote: > > Categories > <%= @categor

[Rails] Re: Open source support system architecture (ROR) query

2014-09-07 Thread Allen Maxwell
A rails engine is how I'd do it myself but if that's off the table, the only way I see that could remotely (and poorly) work would be to manage the work in git branches somehow. you'd have to be very careful and it's a bad idea - but could be possible. have a core branch of code and a set of

[Rails] help with some ugly code: refactoring

2012-01-05 Thread Allen Maxwell
Hi all, I have a user model and associated controller/views. the model has a password field and the security for logging into my site etc. and all of this works pretty well. When i implemented it i had a need to be able to allow users to edit the user data (demographic stuff) and not edit the

Re: [Rails] tutorial: gravatar_image_tag problem

2011-10-02 Thread Allen Maxwell
Exactly... Thx. Sent from Samsung tabletVinod Kurup wrote:On Sun, Oct 2, 2011 at 1:29 PM, Allen A. Maxwell wrote: I posted a gist entry  at https://gist.github.com/1257103 The spec is looking for an IMG tag within an H1 tag, and it wants that IMG tag to have CLASS="gravatar". If you sc

Re: [Rails] tutorial: gravatar_image_tag problem

2011-10-02 Thread Allen Maxwell
Please disregard the post... I think i have it figured out... I had not quite read far enough and missed a key piece in the explanation... I needed to define the helper to put the class reference in there... All is well in ruby-land now... Thx Sent from Samsung tablet"Allen A. Maxwell" wro

Re: [Rails] Where is heroku?

2011-10-01 Thread Allen Maxwell
Its in mine gem list --local Sent from Samsung tabletStavros Kefaleas wrote:I can't see heroku in my gem list although I installed it (using : sudo gem install heroku) Any ideas? Thank you. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscr