[Rails] Best_in_place Gem in Ruby on Rails 2

2014-01-07 Thread Manoj M.
Hi, i have a need to do inline editing, so found best_in_place gem can be used for this. But my application is in Ruby on Rails 2, please anybody help me to find whether gem is compatible with ruby on rails 2. Thanks, Manoj Menon, RoR Developer, Maxxion Systems. -- Posted via

Re: [Rails] Best_in_place Gem in Ruby on Rails 2

2014-01-07 Thread Walter Lee Davis
IPE was one of the many fine gee-whiz features that I remember attracted me to Rails in the first place (somewhere in the middle 1.x years). Here's the JavaScript side from Scriptaculous: http://madrobby.github.io/scriptaculous/ajax-inplaceeditor/ and here's the Ruby gem:

[Rails] Re: Best IDEs for Ruby on Rails

2014-01-07 Thread Sean L.
unknown wrote in post #1102265: RubyMine 5.0.2 Fabulous IDE, excellent value for money, superb debugging with code coverage and VCS integration, stack analysis, object tree view, model diagrams, db integration and lots more. I think the obsession with the command line just overwhelms you

Re: [Rails] Re: Best IDEs for Ruby on Rails

2014-01-07 Thread James Turley
This might help? http://docs.sublimetext.info/en/latest/reference/build_systems.html#file-format When I was using an IDE for this, it was Aptana, which has a shell built in (and most of the other standard extra IDE gubbins, which if you're otherwise happy with ST, you probably don't want). Code

[Rails] Heroku problem

2014-01-07 Thread pramod gupta
While deploying a new app on heroku i got this error !You've reached the limit of 5 apps for unverified accounts. !Add a credit card to verify your account. how to overcome this?? -- You received this message because you are subscribed to the Google Groups Ruby on Rails: Talk group.

[Rails] Streaming audio mp3 with limit download

2014-01-07 Thread Emílio Yaakov
I want to provide streaming audio from my rails application, but the files are not in my server, they are in others servers and I don't have folders access, just http request. My biggest concern is in places that limit download files up to 10mb, for example. I tried using Icecast and Red5, but

Re: [Rails] Heroku problem

2014-01-07 Thread Thomas Murphy
This isn't a Rails problem. It's a very straightforward Heroku error. Go to Heroku and delete some of your sample apps, or pay for an account. On Tue, Jan 7, 2014 at 10:46 AM, pramod gupta pramod77...@gmail.com wrote: While deploying a new app on heroku i got this error !You've reached

Re: [Rails] Streaming audio mp3 with limit download

2014-01-07 Thread Walter Lee Davis
On Jan 7, 2014, at 10:58 AM, Emílio Yaakov wrote: I want to provide streaming audio from my rails application, but the files are not in my server, they are in others servers and I don't have folders access, just http request. My biggest concern is in places that limit download files up to

[Rails] Xml problem remove node

2014-01-07 Thread Daniel Van den oord
Hi i am trying to create a sort of xml proxy.. Receving xml through rest and then using nokogiriand mechanize posting it to another api. This last api isnt accepting true xml as i will explain. The api needs hash item bid1/bid /item item bid2/bid /item /hash I am using rails4

[Rails] rails engine - vendor/bundle and vendor/cache

2014-01-07 Thread jsnark
I created two rails engines. In one of them 'bundle install' generated only a vendor/cache directory. In the other one, 'bundle install' created both vendor/cache and vendor/bundle. The vendor/bundle directory is causing me some problems. I do not remember what I did differently when

[Rails] Re: Problems testing a destroy failure

2014-01-07 Thread Clem Rock
Bingo - that totally worked and here's my solution: [code] def test_unsuccessful_delete payment_info = Factory.create(:payment_info, :user_guid=@user.guid, :card_expires_month='04', :card_expires_year=(Date.today.year+2).to_s, :cardholder_city=test city,