Re: [Rails] using wrapbootstrap theme.

2014-03-07 Thread Avinash Behera
No. I have contacted to wrapbootstrap support also. They said to contact the seller or search in internet. They don't provide implementation support. On Sat, Mar 8, 2014 at 8:12 AM, tamouse pontiki wrote: > On Fri, Mar 7, 2014 at 4:38 AM, Avi wrote: > > Hello All, > > > > I purchased a wrapboot

Re: [Rails] using wrapbootstrap theme.

2014-03-07 Thread tamouse pontiki
On Fri, Mar 7, 2014 at 4:38 AM, Avi wrote: > Hello All, > > I purchased a wrapbootstrap theme. What is the correct implementation with > rails application? > > In one article - we need to add asset folder to vendor folder. Copy all css, > js & images on respective folders. & define all the css & j

[Rails] Looking for ruby on rails software developer

2014-03-07 Thread Angie Olita
I am currently working on a position that needs somebody who has a background with ruby on rails. Below is the brief job description. Work with a profitable startup in the luxury vacationing industry. Small team with freedom to work independently in the Boulder area. If you have a strong softwa

[Rails] [JOBS] Seeking a Sr. Ruby on Rails Engineer TDD and agile frameworks (sScrum, XP) for an employee po

2014-03-07 Thread Robin Marsh
*Seeking a Sr. Ruby on Rails Engineer for a employee position in Chicago* * Excellent compensation package* Qualifications: 5+ to 7 years of experience Need someone who can: Take a lead role in development of our consumer-facing web applications Work with UX experts in bringing concepts to

Re: [Rails] Rails controller problems

2014-03-07 Thread Brandon
Found the answer: can :payment_made, Order, : *seller_id* => user.id Then leave payment_received blank or make changes to @orders as follows. def payment_received @orders = @orders.order("id DESC") end This way the user can see his own and not other's payment_received. On Frida

Re: [Rails] syntax: render partial: "account"

2014-03-07 Thread Antônio Augusto Sousa Britto
I guess it is the new hash notation. Not sure which version of Ruby implements it ( > 2.0 ?) 2014-03-07 15:32 GMT-03:00 Jedrin : > so this is valid syntax then, I never realized that > > {mykey: 'xx''} > > => {:mykey=>"xx"} > > -- > You received this message because you are subscribed to the Goo

Re: [Rails] syntax: render partial: "account"

2014-03-07 Thread mike
On Friday, March 7, 2014 1:27:41 PM UTC-5, Jedrin wrote: > > > this isn't valid syntax because of the colon at the end of 'something' > > my_var = something: > > this is not valid > > key: 'car' > > If there is some shorthand or special case I do not understand > > > > On Friday, March 7, 2014

Re: [Rails] syntax: render partial: "account"

2014-03-07 Thread Jedrin
so this is valid syntax then, I never realized that {mykey: 'xx''} => {:mykey=>"xx"} -- 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 from it, send an email to rubyonrails-talk+u

Re: [Rails] Rails controller problems

2014-03-07 Thread Brandon
Worked it out now. :) can :payment_received, Order, :*seller_id* => user.id On Friday, March 7, 2014 8:37:55 PM UTC+8, Brandon wrote: > > Thanks Dave, been spending days cleaning up my code based on your > suggestions and pretty proud of it now. > > I've a dilemma now with CanCan vs Nest

Re: [Rails] syntax: render partial: "account"

2014-03-07 Thread Jedrin
this isn't valid syntax because of the colon at the end of 'something' my_var = something: this is not valid key: 'car' If there is some shorthand or special case I do not understand On Friday, March 7, 2014 1:07:47 PM UTC-5, Antônio Augusto Sousa Britto wrote: > > its a hash of paramet

Re: [Rails] syntax: render partial: "account"

2014-03-07 Thread Antônio Augusto Sousa Britto
its a hash of parameters to the render method ?! 2014-03-07 14:54 GMT-03:00 Jedrin : > > The syntax of partial here does not make sense to me. If it was :partial > then it's a symbol, but > what is it this way ? > > <%= render partial: "account" %> > > -- > You received this message because y

[Rails] syntax: render partial: "account"

2014-03-07 Thread Jedrin
The syntax of partial here does not make sense to me. If it was :partial then it's a symbol, but what is it this way ? <%= render partial: "account" %> -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group

[Rails] Abril Pro Ruby 2014 - The Tropical Ruby Conference

2014-03-07 Thread Marcos Brizeno
Hello everybody, On April 24th to 27th the biggest Ruby Conference on the Northeast of Brazil will be happening, Abril Pro Ruby . We would like to invite you to be part of the event and share you experiences with great rubists from all over the world in Porto de Galinh

Re: [Rails] Rails controller problems

2014-03-07 Thread Brandon
Thanks Dave, been spending days cleaning up my code based on your suggestions and pretty proud of it now. I've a dilemma now with CanCan vs Nested Resources in Routes.rb: *In Routes.rb:* resources :users do resources :orders do collection do get :payment_received end

[Rails] using wrapbootstrap theme.

2014-03-07 Thread Avi
Hello All, I purchased a wrapbootstrap theme. What is the correct implementation with rails application? In one article - we need to add asset folder to vendor folder. Copy all css, js & images on respective folders. & define all the css & js in application.css & application.js files.( http://

Re: [Rails] Steps to develop a Rails app.

2014-03-07 Thread Colin Law
On 7 March 2014 06:46, Selvag Ruby wrote: > Hi Rails people, I've plan to develop own Rails app based on very simple > concepts like Student mark sheet, where we can do: First work right through a good tutorial such as railstutorial.org (which is free to use online). Then you will understand the

[Rails] Re: Steps to develop a Rails app.

2014-03-07 Thread Julien Itard
Hi 1- Create 2 models: Student and Mark 2- Add relation between them. belongs_to :student in the Mark model and has_many :mark in the Student model 3- rake db:create && rake db:migrate 4- Create Controllers 5- Create Views 6- Create Routes maybe the rails 'generate scaffold Mark Student' coul