[Rails] Re: Using RVM gemset

2013-01-22 Thread Fahim Patel
Hi, @keerthi priya says correct. * * *You have to create .rvmrc file in app structure.* *And keep below line in this file* rvm --create use "ruby-1.9.3-p125@your_app_name" And you are done. Thanks Best Regards Fahim Babar Patel * * * * On Tuesday, January 22, 2013 2:17:18 PM UTC+5:30, Kashif U

Re: [Rails] Need to change jquery version in my rails project

2013-01-22 Thread Jordon Bedwell
On Wed, Jan 23, 2013 at 12:36 AM, Saravanan P wrote: > Currently my rails 3.2.8 project loading jquery 1.9.0 > In this jquery 1.9.0 live() method not working. > > How can i change loading jquery version? > Please help. Remove jquery-rails from your Gemfile, use Google Javascript CDN [1]. Note

[Rails] Need to change jquery version in my rails project

2013-01-22 Thread Saravanan P
Hello everyone, Currently my rails 3.2.8 project loading jquery 1.9.0 In this jquery 1.9.0 live() method not working. How can i change loading jquery version? Please help. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to t

Re: [Rails] Bootstrap issues with RoR

2013-01-22 Thread Javier Quarite
On Wed, Jan 23, 2013 at 12:18 AM, xscr...@gmail.com wrote: > I added bootstrap-sass to my Gemfile, did bundle install, added "@import > bootstrap" to my css file. Yet, bootstrap does;t work. Safari fails > silently, Mozila says: >The stylesheet http://localhost:3000/assets/bootstrap was not lo

Re: [Rails] hope RAILS COMMUNITY MEMBERS help me solve this SIMPLE PROBLEM

2013-01-22 Thread Javier Quarite
On Wed, Jan 23, 2013 at 12:20 AM, New_to_Rails wrote: > hi > i am new to rails help me to solve this simple problem, i'm using default > sqlite db in railsi want to work and use oracle database now for > upcomming rails application here is my ruby and rails version > > rails 3.2.1 > > ruby1.9.

[Rails] hope RAILS COMMUNITY MEMBERS help me solve this SIMPLE PROBLEM

2013-01-22 Thread New_to_Rails
hi i am new to rails help me to solve this simple problem, i'm using default sqlite db in railsi want to work and use oracle database now for upcomming rails application here is my ruby and rails version rails 3.2.1 ruby1.9.3 and i tried connecting rails3 with oracle 8i but i could not

[Rails] Bootstrap issues with RoR

2013-01-22 Thread xscr...@gmail.com
I added bootstrap-sass to my Gemfile, did bundle install, added "@import bootstrap" to my css file. Yet, bootstrap does;t work. Safari fails silently, Mozila says: The stylesheet http://localhost:3000/assets/bootstrap was not loaded because its MIME type, "application/javascript", is not "tex

Re: [Rails] Cucumber issues when generating a new rails app.

2013-01-22 Thread Rob Biedenharn
On Jan 22, 2013, at 4:12 PM, Craig White wrote: > On Jan 21, 2013, at 1:15 PM, Osifo Anosike wrote: >> "Андрей Большов" wrote in post #1093053: >>> What about: >>> rake -T >>> rake --version >>> >>> in common rake always print out some results, try run your command with >>> `--trace`. If you have

Re: [Rails] Cucumber issues when generating a new rails app.

2013-01-22 Thread Craig White
On Jan 21, 2013, at 1:15 PM, Osifo Anosike wrote: > "Андрей Большов" wrote in post #1093053: >> What about: >> rake -T >> rake --version >> >> in common rake always print out some results, try run your command with >> `--trace`. If you have blank output for `rake -T` and got output `rake >> --v

[Rails] [ANN] Ruby Manor 4, London UK, 6th April 2013

2013-01-22 Thread James Adam
There's a good chance you've already seen this, but just in case not... Tickets for Ruby Manor 4 are now available, happening on the 6th of April 2013 in London, UK. Full details and ticket info: http://rubymanor.org/4/ We'd love to see you there. All the best, - James -- You received this

[Rails] Re: Rspec Test Failing?

2013-01-22 Thread fuzzy
Hi Andre, Thanks for your reply. I did see a 'put_via_redirect'. So I would have to rewrite the test and use this command and it would be testing the redirect which is a way to test the put? I will give that a try. Thanks again. On Jan 22, 2:57 am, and...@benjamin.dk wrote: > So basically I

[Rails] Re: Should ActionView's label tag helper be extended to accept a _complementary_ content block ?

2013-01-22 Thread Frederick Cheung
On Monday, January 21, 2013 11:42:29 PM UTC, Luis Reis wrote: > > > Currently using a method (:password) is mutually exclusive with supplying > a block. > > You sure ? It's documented as allowing that and a 2 second test on one of my apps seemed to work Fred > So, in other words, if I subm

[Rails] Should ActionView's label tag helper be extended to accept a _complementary_ content block ?

2013-01-22 Thread Luis Reis
Hi, Sometimes it is useful to use label with both a contained label and supplied content, eg, in Devise's default registration edit view this is the supplied code for passwords: [...] <%= f.label :password %> (leave blank if you don't want to change it) <%= f.password_field :password, :aut

[Rails] Re: [JOBS] Seeking rockstar junior RoR dev for a startup [remote/London]

2013-01-22 Thread jane
Hi, I'd like to know if there's a part-time position for this post. I love working with startups and contributing to open source projects. :) Regards, Jezrel Jane Himbing *Software Developer* AB Dev Labs, LLC PO Box 500, New York, NY 10159 USA

Re: [Rails] Using RVM gemset

2013-01-22 Thread keerthi priya
Yes! you can use different gem set for each project that is what best of RVM. After going to your app folder just type this command " rvm gemset create gemset_name " to use that gemset you need to run this command " rvm use rvm_version@gemset_name " Now you can use your selected rvm version and a

Re: [Rails] Using RVM gemset

2013-01-22 Thread Colin Law
On 22 January 2013 08:47, Kashif Umair Liaqat wrote: > If anybody here can help me about using RVM gemsets, then I have a question. > > I want to use different versions of gems for every rails project. How can I > do that? I know that we can use different gemsets for different versions of > Ruby b

Re: [Rails] Re: Rspec Test Failing?

2013-01-22 Thread andreo
So basically I think you are near the solution: request tests, allow you to test requests(like put and others): https://www.relishapp.com/rspec/rspec-rails/docs/request-specs/request-spec when you doing integration testing at a feature level you dont make requests(you would have instantiate the

[Rails] Using RVM gemset

2013-01-22 Thread Kashif Umair Liaqat
If anybody here can help me about using RVM gemsets, then I have a question. I want to use different versions of gems for every rails project. How can I do that? I know that we can use different gemsets for different versions of Ruby but I want to use separate gemset for every project. -- You