[Rails] Re: other css design framework like bootstrap

2013-08-08 Thread Robert Walker
Dave Aronson wrote in post #1118150: > On Thu, Aug 8, 2013 at 4:00 PM, mukul saharia > wrote: > >> i am using twitter bootstrap css designing framwork.. is there other >> framework like bootstrap.. please suggest. > > There are plenty. Off the top of my head, though I might be > misunderstand

Re: [Rails] other css design framework like bootstrap

2013-08-08 Thread Dave Aronson
On Thu, Aug 8, 2013 at 4:00 PM, mukul saharia wrote: > i am using twitter bootstrap css designing framwork.. is there other > framework like bootstrap.. please suggest. There are plenty. Off the top of my head, though I might be misunderstanding what some of these are: - Compass - Bourbon

[Rails] other css design framework like bootstrap

2013-08-08 Thread mukul saharia
hello friends, i am using twitter bootstrap css designing framwork.. is there other framework like bootstrap.. please suggest. -- 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 emails f

[Rails] Images with fingerprinting

2013-08-08 Thread Nick Khamis
Looking through the asset pipeline documentation, I was able to make everything work as expected. Really nice!! However, not for images that we are loading using a variable (i.e., wine.picture) which basically resolves to (bold_nine.jpg). First question, is it possible to use (asset_path) and pa

Re: [Rails] Find URL paramenters from a string

2013-08-08 Thread Dheeraj Kumar
Pass it only the string after the `?` -- Dheeraj Kumar On Thursday 8 August 2013 at 10:59 PM, Renato Co wrote: > I have a string which contain some parameters I want to extract but I > cant get it to look good. Here is what I have right now > > > puts > Rack::Utils.parse_query("http://www.as

[Rails] Find URL paramenters from a string

2013-08-08 Thread Renato Co
I have a string which contain some parameters I want to extract but I cant get it to look good. Here is what I have right now puts Rack::Utils.parse_query("http://www.aspnetpage.com/frmindex?id=5&shelf=111";) {"http://www.aspnetpage.com/frmindex?id"=>"5", "shelf"=>"111"} As you can see my main p

Re: [Rails] Re: Issue with mering ActiveRecord query results

2013-08-08 Thread Dheeraj Kumar
@Joel: It isn't Hash#merge, but ActiveRecord::SpawnMethods#merge -- Dheeraj Kumar On Thursday 8 August 2013 at 10:00 PM, Joel Pearson wrote: > If you were going to use Hash#merge to remove duplicates between the two > result sets, you might as well just use Array#uniq on the Array. > > --

[Rails] Re: Issue with mering ActiveRecord query results

2013-08-08 Thread Joel Pearson
If you were going to use Hash#merge to remove duplicates between the two result sets, you might as well just use Array#uniq on the Array. -- 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 unsu

[Rails] Re: What's the proper way to delete all associated children in one SQL statement, with AR 4.0 ?

2013-08-08 Thread Robert Walker
Savater Sebastien wrote in post #1118021: > class Parent < ActiveRecord::Base > has_many :items > end > > class Item < ActiveRecord::Base > belongs_to :parent > end > > I need to delete all items associated to one parent, without callback. > I don't need to call #destroy, but only executing the

[Rails] Re: Dificuldade

2013-08-08 Thread Kleber Shimabuku
Hey Pedro, Please do not use portuguese in this group. The people here are most english speakers. If you want to discuss something in portuguese there are the "rails-br" group. Feel free to join us there. Em terça-feira, 6 de agosto de 2013 11h40min33s UTC-3, Pedro Schimmelpfeng escreveu:

[Rails] Adwords API get keywords with ruby on rails

2013-08-08 Thread alex
Hello, I took the ruby on rails example, and tried to add to it a view which is displaying the keywords from an AdGroup, I am able to get the keywords, and the total no of keywords from a campaign but I don't know why I can not display them in the view. keyword model: class Keyword attr_rea

[Rails] Re: :disable_with combined with Ajax form: Possible?

2013-08-08 Thread javinto
Rails 3.2 and later One should use it like this: =submit_tag, data: {disable_with: 'busy'} Op vrijdag 30 juli 2010 13:16:39 UTC+2 schreef Ruby-Forum.com User: > > Hi there, > > I'm trying to have an Ajax form with a submit button that has the > :disable_with feature, but the submit button d