[Rails] rails 2.3.5 and ruby 1.8.7 expert

2015-07-24 Thread Gift Mfugale
I have an app running in rails 2.3.5 and ruby 1.8.7, That require some customization. I'm looking for someone who can work with me at a very minimal budget i have Thanks. -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group. To unsubscribe

Re: [Rails] Re: sunspot_configuration.rb:52:in `block in top (required)': undefined method `gsub' for nil:NilClass

2015-07-24 Thread Colin Law
On 24 July 2015 at 03:17, Agustina Diaz de Tuesta agus...@gmail.com wrote: Thanks for your answer! I understand that It shouldn't have changed just because I uploaded it, the thing is I did make some minor changes (on the views) and upload them without checking on the local host but on the

[Rails] Ruby on Rails compatibility issues with Windows 2012

2015-07-24 Thread Ksshin
I use the 1.9.3 version of Ruby, there the Rails while using the 3.2.17 Whether this version is not compatible with Windows2012, enormous disk I / O is occurring at Ruby Process. You will care whether there is a problem with the version -- You received this message because you are subscribed

Re: [Rails] Ruby on Rails compatibility issues with Windows 2012

2015-07-24 Thread Colin Law
On 24 July 2015 at 07:22, Ksshin sksbe...@gmail.com wrote: I use the 1.9.3 version of Ruby, there the Rails while using the 3.2.17 Whether this version is not compatible with Windows2012, enormous disk I / O is occurring at Ruby Process. You will care whether there is a problem with the

[Rails] Capistrano deploy:assets:backup_manifest

2015-07-24 Thread Pratap Dasar
Hi Deploying an ruby on rails project with capistrano, getting the following error INFO [1cc980d1] Finished in 966.458 seconds with exit status 0 (successful). ** Invoke deploy:assets:backup_manifest (first_time) ** Execute deploy:assets:backup_manifest DEBUG [2935fe97] Running /usr/bin/env if

[Rails] Re: More practice for rails

2015-07-24 Thread Milo Arse
I was thinking to use someone else project and develop that project from scratch because he has solution. I know about small idea then to upgrade it some bigger thing, but i would rather use someone else web application and practice on it. If you know some web project (open source) which are

[Rails] Re: rails 2.3.5 and ruby 1.8.7 expert

2015-07-24 Thread Elizabeth McGurty
I would be happy to help you, but I think you may need to provide more information here as to your business, affiliations and/or purpose. Liz On Friday, July 24, 2015 at 2:37:15 AM UTC-4, Gift Mfugale wrote: I have an app running in rails 2.3.5 and ruby 1.8.7, That require some

[Rails] Re: Rails scheduled SMS sender

2015-07-24 Thread Marco Dias
Here is the update of my post : EDIT: I'm able to send SMS now, but weird thing, it only sends to one user, even if I have 3 users. My method in User.rb def send_daily_sms(user) @user = user # put your own credentials here account_sid =

[Rails] Re: Best practices with migrations in production deployments

2015-07-24 Thread Andrew Schutt
Came here to recommend using Capistrano as well. I second what tamouse recommended. Capistrano can automate the running of the migrations as you do deployments to different environments. Check it out http://capistranorb.com/ On Thursday, July 23, 2015 at 7:44:41 AM UTC-5, Rafa F wrote:

[Rails] Re: Capistrano deploy:assets:backup_manifest

2015-07-24 Thread Andrew Schutt
Looks like the version of ruby that is expected isn't installed (1.9.3-p484)? Does the user that you are using to deploy (looks like deployer) have the correct access and permissions to the destination for your deployment? The user used for the deployment is the one that needs access to the

[Rails] Re: beginner in Ruby on rails

2015-07-24 Thread Taras Matsyk
Thank you, @Colin. Good to know that I have not taken a wrong direction for the very beginning. :) -- 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 unsubscribe from this group and stop

[Rails] Background stripes not seen in my web application.

2015-07-24 Thread Bruce Howard
I am learning Ruby on Rails using the textbook called Agile Web Development with Rails (4th edition). I am currently on Chapter 6. I created the Depot application. Everything matches up with the author's results except for the alternating purple stripes in the product listings page. Instead, I end

Re: [Rails] Background stripes not seen in my web application.

2015-07-24 Thread Jesse Knutsen
Are you cycling the class of the tr or div that you are using to house the data? Also did you remember to define the classes in your css? On 7/24/15 3:42 PM, Bruce Howard wrote: I am learning Ruby on Rails using the textbook called Agile Web Development with Rails (4th edition). I am currently

[Rails] Re: React.JS and what server to use ?

2015-07-24 Thread Taras Matsyk
Thanks Andrey! I have not heard about Flux before. -- 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 unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: Background stripes not seen in my web application.

2015-07-24 Thread Frederick Cheung
On Friday, July 24, 2015 at 8:42:38 PM UTC+1, Ruby-Forum.com User wrote: I am learning Ruby on Rails using the textbook called Agile Web Development with Rails (4th edition). I am currently on Chapter 6. I created the Depot application. Everything matches up with the author's results except

[Rails] Making rails-api (rails 4.0.2/9) work with strong parameters.

2015-07-24 Thread Donald Ziesig
Hi All! I have been trying just about everything I can find on the web to make rails-api work with strong_parameters but no matter what I do, I get the following error: NoMethodError (undefined method `permit' for {email: x...@xxx.org, password: x}:String): All of the answers I

Re: [Rails] Making rails-api (rails 4.0.2/9) work with strong parameters.

2015-07-24 Thread BuyzLots
Your payload looks like a string, is permit something you can call on a string object? On Jul 24, 2015, at 9:31 PM, Donald Ziesig don...@ziesig.org wrote: Hi All! I have been trying just about everything I can find on the web to make rails-api work with strong_parameters but no matter

Re: [Rails] Making rails-api (rails 4.0.2/9) work with strong parameters.

2015-07-24 Thread Donald Ziesig
Unfortunately, no. That is exactly the problem. The expression params.require(:user) (for example) returns a string in rails-api and an object which has .permit as a method in just plain rails. All of the solutions try to change the controller from one derived from ::Api (does not support