Ruby on Rails Friday, November 30, 2012

I like to deploy the Spreecommerce locally and want to implement my own
changes. I have deployed successfully but I don't know where the actual
sources files comes or running. I need help to sort this out. Please can
any one help me.

Thanks in Advance

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

I'm with a growing RoR shop in Washington state. We're looking for a
senior RoR developer who would like to work from home. If you'd like
more info, visit our website at
http://www.k3integrations.com/news-blog/news/were-growing

Thanks,

Gary

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

I'm with a growing RoR shop in Washington state. We're looking for a
senior RoR developer who would like to work from home. If you'd like
more info, visit our website at
http://www.k3integrations.com/news-blog/news/were-growing

Thanks,

Gary

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

never mind, client caching


On Fri, Nov 30, 2012 at 11:32 PM, tom <tomabroad@gmail.com> wrote:
> hi
> im reading through the topic above and trying to apply it to my app.
> as reference i found:http://leopard.in.ua/2012/07/08/using-cors-with-rails/
>
> my prob is that i dont see the 'preflight', meaning the first request
> prior the actual post, which should(?) deliver this:
> request.request_method=='OPTIONS'
>
> the js code look like this:
> $.ajax
> ({
> type: 'POST',
> dataType: "json",
> crossDomain: true,
> url: "http://someserver/foo.json",
> data: {test:999},
>
> in application_controller.rb i have this in a before filter:
> def cors
> p "calling - CORS"
> p request.request_method #<< this is "POST" instead of the expected OPTIONS
> p request.headers["HTTP_ORIGIN"] #<< this is http://localhost
> from which im posting
> head(:ok) if true # request.request_method == "OPTIONS"
> end
> also in the browser inspection i see only the actual post, not the
> preflight request sending the OPTIONS.
>
> am i on a wrong track here?
>
> thx

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

hi
im reading through the topic above and trying to apply it to my app.
as reference i found:http://leopard.in.ua/2012/07/08/using-cors-with-rails/

my prob is that i dont see the 'preflight', meaning the first request
prior the actual post, which should(?) deliver this:
request.request_method=='OPTIONS'

the js code look like this:
$.ajax
({
type: 'POST',
dataType: "json",
crossDomain: true,
url: "http://someserver/foo.json",
data: {test:999},

in application_controller.rb i have this in a before filter:
def cors
p "calling - CORS"
p request.request_method #<< this is "POST" instead of the expected OPTIONS
p request.headers["HTTP_ORIGIN"] #<< this is http://localhost
from which im posting
head(:ok) if true # request.request_method == "OPTIONS"
end
also in the browser inspection i see only the actual post, not the
preflight request sending the OPTIONS.

am i on a wrong track here?

thx

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

To my way of thinking you could start defining the database (maybe with
the aid of something like uml) and the rest should be straightforward
from that.
Another approach would be to define what you want each part of the user
interface to look and work like and then create the system to work with
that. I am an advocate of thinking about the system before implementing it.

YMMV
Norm

On 11/30/2012 05:22 AM, Dylan Keys wrote:
> Hi all,
>
> i have just finished reading Beginning Rails 3 and have done as many
> tutorials on the web I can find.
>
> So I have decided for my first real project I would like to create a
> system where an admin can created courses controlled from some sort of
> back-end.
>
> Users could then register an account book and pay for course utilizing
> maybe some sort of calender system.
>
> Am I starting out too big for my first project? Any advice on how I
> should tackle it would be great.
>
> Thanks.
>

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

On Fri, Nov 30, 2012 at 12:13 PM, Robert Buck <lists@ruby-forum.com> wrote:
> It would be nice if the test framework for rails AT LEAST spit out the
> line where this happened.

You are blaming Rails for a problem created by another person?

>
> So, without any useful information from the test suite, what I wanted to
> do was to find out blow by blow when bad things happen so I can
> correlate it to the step-wise actions in a debugger, and so trace WHERE
> the bad thing is happening. But no, the test suite eats all STDOUT and
> only spits it out after all tests have completed.

There is plenty of useful information, that is what logs are for, and
a test log is kept, try looking in log/test.log which will have all
that in there from start to finish of each request.

> Does anyone know how to get Rails to emit all stdout immediately instead
> of buffering it until after ALL tests have completed?

With RSpec use fail fast.

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

[SOLVED]  in my functional test I had a bad :put ,


      assert_difference [ 'Place.count', 'Geolocation.count' ], 0 do
        put :update, :id => @place[:id], 
        :geolocation_attributes =>  { 
            street_address: @street_address,
            postal_code: @postal_code,
            city: @city,
            country: @country }
      end

when I should have added the :place => {  :geolocation_attributes =>  {   !!

      assert_difference [ 'Place.count', 'Geolocation.count' ], 0 do
        put :update, :id => @place[:id], :place => {
        :geolocation_attributes =>  { 
            street_address: @street_address,
            postal_code: @postal_code,
            city: @city,
            country: @country }
          }
      end

updating correctly now 

Le vendredi 30 novembre 2012 19:01:51 UTC+1, Erwin a écrit :
I have  a nested model  Place => Geolocation

class Place < ActiveRecord::Base
  has_one :geolocation, :dependent => :destroy
  accepts_nested_attributes_for :geolocation, :reject_if => :all_blank, :allow_destroy => true
  attr_accessible :geolocation_attributes

class Geolocation < ActiveRecord::Base
  belongs_to :place
----------------------

Creating Place + Geolocation  is ok ,  
= simple_form_for  @place, :url => backoffice_places_path, :html => {:class => 'form-vertical' } do |f|
   ...
   = f.simple_fields_for :geolocation do |g|
         = render "geolocation_fields", :f => g

Editing Place + geolocation doesnt pass ,   the update method  receives the new geolocation attributes from the form, but the geolocation instance is not updated... ( no validation error )

=  simple_form_for @place, :url => backoffice_place_path, :html => {:method => :put, :class => 'form-vertical' } do |f|
   ...
    = f.simple_fields_for :geolocation_attributes, @place.geolocation  do |g|
 = render "geolocation_fields", :f => g

Place controller 
  def edit
     @place = Place .find(params[:id])
    
  def update
    debugger
    if @place.update_attributes(params[:place])
      debugger
      redirect_to backoffice_place_path(@place), notice: t(:place_updated)

params
{"id"=>"76", "geolocation_attributes"=>{"street_address"=>"19 Camp Road", "postal_code"=>"Greater London SW19 4UW", "city"=>"London", "country"=>"United Kingdom"}, "controller"=>"backoffice/places", "action"=>"update"}

any ide where I am wrong  ?  thanks for any clue 


--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/9B3-GbsASNgJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

I am trying to debug a database adapter for active record, and I have a
case where it spits back after all tests have run a partial error
message with no context at all.

For example:

Exception raised:
<#<ActiveRecord::StatementInvalid: NoMethodError: undefined method `[]'
for nil:NilClass: INSERT INTO `subscribers` (`books_count`, `name`,
`nick`) VALUES (?, ?, ?)>>.

It would be nice if the test framework for rails AT LEAST spit out the
line where this happened.

So, without any useful information from the test suite, what I wanted to
do was to find out blow by blow when bad things happen so I can
correlate it to the step-wise actions in a debugger, and so trace WHERE
the bad thing is happening. But no, the test suite eats all STDOUT and
only spits it out after all tests have completed.

Does anyone know how to get Rails to emit all stdout immediately instead
of buffering it until after ALL tests have completed?

Bob

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

I have  a nested model  Place => Geolocation


class Place < ActiveRecord::Base
  has_one :geolocation, :dependent => :destroy
  accepts_nested_attributes_for :geolocation, :reject_if => :all_blank, :allow_destroy => true
  attr_accessible :geolocation_attributes

class Geolocation < ActiveRecord::Base
  belongs_to :place
----------------------

Creating Place + Geolocation  is ok ,  
= simple_form_for  @place, :url => backoffice_places_path, :html => {:class => 'form-vertical' } do |f|
   ...
   = f.simple_fields_for :geolocation do |g|
         = render "geolocation_fields", :f => g

Editing Place + geolocation doesnt pass ,   the update method  receives the new geolocation attributes from the form, but the geolocation instance is not updated... ( no validation error )

=  simple_form_for @place, :url => backoffice_place_path, :html => {:method => :put, :class => 'form-vertical' } do |f|
   ...
    = f.simple_fields_for :geolocation_attributes, @place.geolocation  do |g|
 = render "geolocation_fields", :f => g

Place controller 
  def edit
     @place = Place .find(params[:id])
    
  def update
    debugger
    if @place.update_attributes(params[:place])
      debugger
      redirect_to backoffice_place_path(@place), notice: t(:place_updated)

params
{"id"=>"76", "geolocation_attributes"=>{"street_address"=>"19 Camp Road", "postal_code"=>"Greater London SW19 4UW", "city"=>"London", "country"=>"United Kingdom"}, "controller"=>"backoffice/places", "action"=>"update"}

any ide where I am wrong  ?  thanks for any clue 


--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/1TDuT-eIzxAJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

Hey, I know this was an old post of your. By any chance are you still interested in speaking with Rails programmers?

On Monday, May 30, 2011 10:33:44 PM UTC-4, Long wrote:

Anyone in Ottawa (or is relocating to :) Canada looking for a Rails position? Send me a note for more information.

Cheers,
Long

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/AEhzr53HcHEJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

On 29 November 2012 18:07, Walter Kyrie Pitcher <kyrie.newton@gmail.com> wrote:
> How powerful can this framework be?

Very

> What can you do with it?

Lots

> How/where do I go to learn it?

The Rails Guides.
railstutorial.org.
The railscasts.
The Rails (and Ruby) docs
Google

...

Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

On 30 November 2012 13:01, comopasta Gr <lists@ruby-forum.com> wrote:
> Ok, I would remove my previous post if I could but I can't access it
> anymore.
>
> In any case. I have improved that code to a better version where I rely
> on raise and rescues to handle exceptions generated by the module. No
> more ugly if xxxx != false
>
> Anyway my question was not about how to generate exceptions but about
> the fact of using a struc in my initializers.
>
> I would delete the whole thread anyway...

This is a mailing list not a forum (though you may be accessing via a
forum like interface). Emails cannot be deleted by the sender. Once
it is on my machine only I can delete it (I hope, otherwise I am in
trouble).

Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

Ok, I would remove my previous post if I could but I can't access it
anymore.

In any case. I have improved that code to a better version where I rely
on raise and rescues to handle exceptions generated by the module. No
more ugly if xxxx != false

Anyway my question was not about how to generate exceptions but about
the fact of using a struc in my initializers.

I would delete the whole thread anyway...

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

Hi all,

i have just finished reading Beginning Rails 3 and have done as many
tutorials on the web I can find.

So I have decided for my first real project I would like to create a
system where an admin can created courses controlled from some sort of
back-end.

Users could then register an account book and pay for course utilizing
maybe some sort of calender system.

Am I starting out too big for my first project? Any advice on how I
should tackle it would be great.

Thanks.

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

On 30 November 2012 14:43, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 4:56 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 14:16, Colin Law <clanlaw@googlemail.com> wrote:
On 30 November 2012 06:50, sumit srivastava
<sumit.theinvincible@gmail.com> wrote:
> Verified it. Don't have puts anywhere else.

Jim asked you to post the contents of the log (log/development.log)
when you click the link.  Why have you not done that?  Or have I
missed that message?

I haven't posted the log yet because the code I posted is an example of what I am using. I can't post the code as it is proprietary. And so the log contains info that might violate it.

Create a new rails app and try to replicate the behavior.  If you can do that, we
might be able to help.  If not, consult within your company. Good luck!

Thanks for the help. Will give it a try and post accordingly.
 
 


Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

On 30 November 2012 04:57, Soichi Ishida <lists@ruby-forum.com> wrote:
> Rails 3.1.3
>
> After watching
> http://railscasts.com/episodes/258-token-fields?autoplay=true
> I have installed the similar functionality to my app.
>
> However,
>
> def index
> @cities = City.all
> ...
>
> does in fact give the list of all cities in the text field, but
>
> def index
> @cities = City.where("name like ?", "%#{params[:q]}%")
> ...
>
> does NOT search cities at all.

If you look in log/development.log it will show you the database query
being run. If you still can't see the problem then post the section
of the log for that action (including the query).

Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails




On Fri, Nov 30, 2012 at 4:56 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 14:16, Colin Law <clanlaw@googlemail.com> wrote:
On 30 November 2012 06:50, sumit srivastava
<sumit.theinvincible@gmail.com> wrote:
> Verified it. Don't have puts anywhere else.

Jim asked you to post the contents of the log (log/development.log)
when you click the link.  Why have you not done that?  Or have I
missed that message?

I haven't posted the log yet because the code I posted is an example of what I am using. I can't post the code as it is proprietary. And so the log contains info that might violate it.

Create a new rails app and try to replicate the behavior.  If you can do that, we
might be able to help.  If not, consult within your company. Good luck!
 


Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

On 30 November 2012 01:32, Soichi Ishida <lists@ruby-forum.com> wrote:
> Rails 3.1.3
>
> Gemfile
> gem 'authbuttons-rails'
> gem 'twitter'
> gem 'omniauth-twitter'
> gem 'omniauth-facebook'
>
> My app needs Facebook integration, and the similar method works for
> Twitter API.
> When it comes to Facebook, the create method in services_controller.rb
> raises an error
>
> You have a nil object when you didn't expect it!
> You might have expected an instance of Array.
> The error occurred while evaluating nil.[]
>
> app/models/user.rb:47:in `connect_service'
> app/controllers/services_controller.rb:18:in `create'
>
> Sorry about the length of the code.
>
> Do you see any problem? I believe that I'm making a stupid mistake
> because the code got too long...
>
> # and connect_service method in user.rb is
>
> def connect_service(omniauth)
> #set uid and provider
> case omniauth['provider']
> when 'twitter'
> omniauth['uid'] ? uid = omniauth['uid'] : uid = ''
> omniauth['provider'] ? provider = omniauth['provider'] :
> provider = ''
> token = (omniauth['credentials']['token'] rescue nil)
> secret = (omniauth['credentials']['secret'] rescue nil)
> when 'facebook'
> omniauth['extra']['user_hash']['id'] ? uid =
> omniauth['extra']['user_hash']['id'] : uid = '' ###HERE!!
> omniauth['provider'] ? provider = omniauth['provider'] :
> provider = ''
> token = (omniauth['credentials']['token'] rescue nil)
> secret = ''
> end
> services.build(:provider => provider, :uid => uid, :token =>
> token, :secret => secret)
> end
>
>
> at line 18 where I indicated by putting "###HERE!" in the code

I presume that you meant line 47 in user.rb rather than 18.
That suggests that omniauth['extra'] or omniauth['extra']['user_hash']
is nil. Have a look at the Rails Guide on debugging for ideas on how
to debug this. You could break in here with the debugger or put some
extra tests in the code with puts statements to show the result.

Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails

On 30 November 2012 14:16, Colin Law <clanlaw@googlemail.com> wrote:

On 30 November 2012 06:50, sumit srivastava
<sumit.theinvincible@gmail.com> wrote:
> Verified it. Don't have puts anywhere else.

Jim asked you to post the contents of the log (log/development.log)
when you click the link.  Why have you not done that?  Or have I
missed that message?

I haven't posted the log yet because the code I posted is an example of what I am using. I can't post the code as it is proprietary. And so the log contains info that might violate it.


Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.



--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

Hi
   I am working with ruby on rails application.
   I can make a user to signin facebook when he click the facebook button.
        I am having a button as Add facebook button, in that, when the user click the button, he need to add one more facebook account.
        Since a user is already logged in, i cant able to show the facebook signin page, it again logging with the same account.

Help me to solve this,
    I thought of logout the previous account, and make signin for the new user.... but for logout we need previous user access token.. how can we get who is logged in presently in our system.....  Is there a query to find a person who is logged in presently in facebook

Thankx


--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/--_1gnm_PEwJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

On 30 November 2012 06:50, sumit srivastava
<sumit.theinvincible@gmail.com> wrote:
> Verified it. Don't have puts anywhere else.

Jim asked you to post the contents of the log (log/development.log)
when you click the link. Why have you not done that? Or have I
missed that message?

Colin

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Ruby on Rails Thursday, November 29, 2012




On Fri, Nov 30, 2012 at 2:50 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
Verified it. Don't have puts anywhere else.

ok.  sorry but I ran out of ideas.  without looking at the logs or the whole code, i won't be able to
help.
 

Regards
Sumit Srivastava

The power of imagination makes us infinite...


On 30 November 2012 11:39, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:50 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
If it were being directed to some other action, then *************** should not have been printed. And when I am trying to access this parameter from the view "index.html.haml", its value is printed exactly what is being passed.

You're right but you may have the same kind of puts code in other parts of your file.  We're just making
sure that it really is going to the index action.  Try to use debugger instead of puts when you're debugging.
There may be times when you're rendering the same template from a different action which is why
the value is printed correctly.
 

Regards
Sumit Srivastava

The power of imagination makes us infinite...



On 30 November 2012 11:12, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:32 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:55, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:16 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:41, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 12:51 PM, Sumit Srivastava <sumit.theinvincible@gmail.com> wrote:
Hi,

I have a controller named Users with index action.

def index
    puts "************* #{params[:city]}"
    ...
    ...
end

From the view,
link_to(:city, list_users_with_city_path(:city => city.name))

You implied below that list_users_with_city_path is not yet defined
at this point so why is it not giving any errors?  where did you 
get list_user_with_city_path if you haven't defined it in the routed yet?

Wrote this by mistake. I use it this way after defining the path. What doesn't works is,

link_to(:city, users(:city => city.name)
And this is not giving any errors but nothing is received in the index action.

use users_path.  I'm not sure why it's not giving any errors.

Ah! Again I typed wrong. Yes, this is what I used, users_path and seems like I also missed the closing bracket for link_to up here. Certainly, it gave errors without "path".

So, with the correct syntax, link_to(:city, users_path(:city => city.name)), it didn't work.

i'm not sure why params[:city] isn't set when you reach that puts statement.  It may be caused by
a number of things.  Can you check if it really goes to the index action, you may have declared
something on your routes that takes precedence over the users resources?  Paste in the log after
you click on the link and you routes file (everything before the resources :users line).
 

 

 
 
But when I click on this link, it doesn't prints out anything for the params. All the "*" are being printed. The url in the browser displays,

localhost:3000/users?city=delhi

Instead when I create a new route, get '/users/:city' => 'users#index', :as => list_users_with_city
This works fine. I get proper output. 

What could be the problem?




--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/lpsqYbWtC0cJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails




On Fri, Nov 30, 2012 at 2:45 PM, Fahim Patel <pafahim@gmail.com> wrote:
Hi 

 As per i know assets folder is include in app directory .
And when we do asset pre compile than assets folder created in public folder.

Q  But what is use of assets folder in vendor and lib directory' s ?

I think it's mainly for a more organized way of handling assets as stated in the guide

 

Thanks

Fahim

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/o3hsmV6ekgMJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

Verified it. Don't have puts anywhere else.

Regards
Sumit Srivastava

The power of imagination makes us infinite...


On 30 November 2012 11:39, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:50 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
If it were being directed to some other action, then *************** should not have been printed. And when I am trying to access this parameter from the view "index.html.haml", its value is printed exactly what is being passed.

You're right but you may have the same kind of puts code in other parts of your file.  We're just making
sure that it really is going to the index action.  Try to use debugger instead of puts when you're debugging.
There may be times when you're rendering the same template from a different action which is why
the value is printed correctly.
 

Regards
Sumit Srivastava

The power of imagination makes us infinite...



On 30 November 2012 11:12, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:32 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:55, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:16 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:41, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 12:51 PM, Sumit Srivastava <sumit.theinvincible@gmail.com> wrote:
Hi,

I have a controller named Users with index action.

def index
    puts "************* #{params[:city]}"
    ...
    ...
end

From the view,
link_to(:city, list_users_with_city_path(:city => city.name))

You implied below that list_users_with_city_path is not yet defined
at this point so why is it not giving any errors?  where did you 
get list_user_with_city_path if you haven't defined it in the routed yet?

Wrote this by mistake. I use it this way after defining the path. What doesn't works is,

link_to(:city, users(:city => city.name)
And this is not giving any errors but nothing is received in the index action.

use users_path.  I'm not sure why it's not giving any errors.

Ah! Again I typed wrong. Yes, this is what I used, users_path and seems like I also missed the closing bracket for link_to up here. Certainly, it gave errors without "path".

So, with the correct syntax, link_to(:city, users_path(:city => city.name)), it didn't work.

i'm not sure why params[:city] isn't set when you reach that puts statement.  It may be caused by
a number of things.  Can you check if it really goes to the index action, you may have declared
something on your routes that takes precedence over the users resources?  Paste in the log after
you click on the link and you routes file (everything before the resources :users line).
 

 

 
 
But when I click on this link, it doesn't prints out anything for the params. All the "*" are being printed. The url in the browser displays,

localhost:3000/users?city=delhi

Instead when I create a new route, get '/users/:city' => 'users#index', :as => list_users_with_city
This works fine. I get proper output. 

What could be the problem?




--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/lpsqYbWtC0cJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

Hi 


 As per i know assets folder is include in app directory .
And when we do asset pre compile than assets folder created in public folder.

Q  But what is use of assets folder in vendor and lib directory' s ?

Thanks

Fahim

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/o3hsmV6ekgMJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails




On Fri, Nov 30, 2012 at 1:50 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
If it were being directed to some other action, then *************** should not have been printed. And when I am trying to access this parameter from the view "index.html.haml", its value is printed exactly what is being passed.

You're right but you may have the same kind of puts code in other parts of your file.  We're just making
sure that it really is going to the index action.  Try to use debugger instead of puts when you're debugging.
There may be times when you're rendering the same template from a different action which is why
the value is printed correctly.
 

Regards
Sumit Srivastava

The power of imagination makes us infinite...



On 30 November 2012 11:12, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:32 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:55, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:16 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:41, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 12:51 PM, Sumit Srivastava <sumit.theinvincible@gmail.com> wrote:
Hi,

I have a controller named Users with index action.

def index
    puts "************* #{params[:city]}"
    ...
    ...
end

From the view,
link_to(:city, list_users_with_city_path(:city => city.name))

You implied below that list_users_with_city_path is not yet defined
at this point so why is it not giving any errors?  where did you 
get list_user_with_city_path if you haven't defined it in the routed yet?

Wrote this by mistake. I use it this way after defining the path. What doesn't works is,

link_to(:city, users(:city => city.name)
And this is not giving any errors but nothing is received in the index action.

use users_path.  I'm not sure why it's not giving any errors.

Ah! Again I typed wrong. Yes, this is what I used, users_path and seems like I also missed the closing bracket for link_to up here. Certainly, it gave errors without "path".

So, with the correct syntax, link_to(:city, users_path(:city => city.name)), it didn't work.

i'm not sure why params[:city] isn't set when you reach that puts statement.  It may be caused by
a number of things.  Can you check if it really goes to the index action, you may have declared
something on your routes that takes precedence over the users resources?  Paste in the log after
you click on the link and you routes file (everything before the resources :users line).
 

 

 
 
But when I click on this link, it doesn't prints out anything for the params. All the "*" are being printed. The url in the browser displays,

localhost:3000/users?city=delhi

Instead when I create a new route, get '/users/:city' => 'users#index', :as => list_users_with_city
This works fine. I get proper output. 

What could be the problem?




--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/lpsqYbWtC0cJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Ruby on Rails

If it were being directed to some other action, then *************** should not have been printed. And when I am trying to access this parameter from the view "index.html.haml", its value is printed exactly what is being passed.

Regards
Sumit Srivastava

The power of imagination makes us infinite...


On 30 November 2012 11:12, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:32 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:55, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 1:16 PM, sumit srivastava <sumit.theinvincible@gmail.com> wrote:
On 30 November 2012 10:41, Jim Ruther Nill <jvnill@gmail.com> wrote:



On Fri, Nov 30, 2012 at 12:51 PM, Sumit Srivastava <sumit.theinvincible@gmail.com> wrote:
Hi,

I have a controller named Users with index action.

def index
    puts "************* #{params[:city]}"
    ...
    ...
end

From the view,
link_to(:city, list_users_with_city_path(:city => city.name))

You implied below that list_users_with_city_path is not yet defined
at this point so why is it not giving any errors?  where did you 
get list_user_with_city_path if you haven't defined it in the routed yet?

Wrote this by mistake. I use it this way after defining the path. What doesn't works is,

link_to(:city, users(:city => city.name)
And this is not giving any errors but nothing is received in the index action.

use users_path.  I'm not sure why it's not giving any errors.

Ah! Again I typed wrong. Yes, this is what I used, users_path and seems like I also missed the closing bracket for link_to up here. Certainly, it gave errors without "path".

So, with the correct syntax, link_to(:city, users_path(:city => city.name)), it didn't work.

i'm not sure why params[:city] isn't set when you reach that puts statement.  It may be caused by
a number of things.  Can you check if it really goes to the index action, you may have declared
something on your routes that takes precedence over the users resources?  Paste in the log after
you click on the link and you routes file (everything before the resources :users line).
 

 

 
 
But when I click on this link, it doesn't prints out anything for the params. All the "*" are being printed. The url in the browser displays,

localhost:3000/users?city=delhi

Instead when I create a new route, get '/users/:city' => 'users#index', :as => list_users_with_city
This works fine. I get proper output. 

What could be the problem?




--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/lpsqYbWtC0cJ.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
-------------------------------------------------------------
visit my blog at http://jimlabs.heroku.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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

--
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@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.