Latest heroku gem

2012-08-24 Thread Jeff Schmitz
heroku update caused be netrc issues, so I got the toolbelt last night. A problem: This is installed as a package, so when I cd to my project dir, rvm is running its own version of heroku gem, which has the issue I started with. So I uninstalled and reinstalled the gem there, which fixed

Re: Latest heroku gem

2012-08-24 Thread Ed Jones
, rvm is running its own version of heroku gem, which has the issue I started with. So I uninstalled and reinstalled the gem there, which fixed the netrc problem??? I guess heroku update does not fix any new dependencies. Now, though, I can't run a console (bamboo/rails 2.3.11) the right

Re: Latest heroku gem

2012-08-24 Thread Jeff Schmitz
, 2012 7:53:00 AM UTC-4, iamtheschmitzer wrote: heroku update caused be netrc issues, so I got the toolbelt last night. A problem: This is installed as a package, so when I cd to my project dir, rvm is running its own version of heroku gem, which has the issue I started with. So I uninstalled

Re: Latest heroku gem

2012-08-24 Thread Ed Jones
the toolbelt last night. A problem: This is installed as a package, so when I cd to my project dir, rvm is running its own version of heroku gem, which has the issue I started with. So I uninstalled and reinstalled the gem there, which fixed the netrc problem??? I guess heroku update

Re: Latest heroku gem

2012-08-24 Thread vincent daubry
7:53:00 AM UTC-4, iamtheschmitzer wrote: heroku update caused be netrc issues, so I got the toolbelt last night. A problem: This is installed as a package, so when I cd to my project dir, rvm is running its own version of heroku gem, which has the issue I started with. So I uninstalled

Re: Latest heroku gem

2012-08-24 Thread Jeff Schmitz
. A problem: This is installed as a package, so when I cd to my project dir, rvm is running its own version of heroku gem, which has the issue I started with. So I uninstalled and reinstalled the gem there, which fixed the netrc problem??? I guess heroku update does not fix any new dependencies

Re: Latest heroku gem

2012-08-24 Thread Keith Rarick
On Fri, Aug 24, 2012 at 4:53 AM, Jeff Schmitz jeffrey.j.schm...@gmail.com wrote: So I uninstalled and reinstalled the gem there, which fixed the netrc problem??? If you're using Heroku Toolbelt, there's little reason to use the heroku gem either inside or outside of a particular app. I'd

Re: Unable to install heroku gem on ruby 1.8.6

2012-01-17 Thread John Maxwell
Why don't you use RVM to install a more modern version of ruby to run the Heroku gem, that way you can keep 1.8.6 for running the app, but have a new install for the Herkou gem. I'm surprised you really need 1.8.6 - there is so much to gain from moving to 1.9 -- You received this message

Re: Unable to install heroku gem on ruby 1.8.6

2012-01-14 Thread Daniel Schmidt da Silva
Please, can anyone give some insight on that? Thanks! On Jan 5, 6:11 pm, Daniel Schmidt da Silva daniel.schmidt.si...@gmail.com wrote: I’m facing trouble trying to install the latest version of heroku gem (gives me an “aborttrap” message). Currently it’s 2.17.0. I’ve been able to install

Re: cross-thread violation on rb_gc when invoking heroku gem

2011-01-17 Thread JDeville
I'm completely reinstalled ree, and all gems. Still no luck. Once I got it to show me the help messages, but that's it. On Jan 14, 10:40 am, JDeville jeffdevi...@gmail.com wrote: I'd never had this before, and just reinstalled the heroku gem.  I'm on version 1.17.5.  I have ree installed via

cross-thread violation on rb_gc when invoking heroku gem

2011-01-14 Thread JDeville
I'd never had this before, and just reinstalled the heroku gem. I'm on version 1.17.5. I have ree installed via rvm. I believe I have the following gems installed that require native compilation: bson_ext curb ffi gherkin hpricot johnson json linecache mongrel nokogiri rmagick ruby sqlite3 sys

Re: Heroku gem RVM problems

2010-09-04 Thread Alex
Just go into synaptic manager and install the libreadline and libreadline-dev packages and enter into your ruby sources,into the readline folder and run extconf.rb -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email

Re: Use Heroku gem from within application?

2010-08-13 Thread marcel
}' end -- 1. Add the heroku gem to your .gems file or vendor it, so its available to your app. Require the heroku gem. 2. create a new install of Herkou::Client, which needs your username and password. I put mine into the app's config to keep it out

Re: Use Heroku gem from within application?

2010-08-13 Thread Phillip Ridlen
This really intrigued me, so I thought I'd dig into the Heroku gem ( http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb) and see what I could find. On line 120 of client.rb ( http://github.com/heroku/heroku/blob/master/lib/heroku/client.rb#L120) there is a function called add_domain

Re: Use Heroku gem from within application?

2010-08-13 Thread mwhuss
the Heroku gem/command line tool from within the app, analagous to the command-line expression: heroku domains:addwww.example.com Is this possible?  If so, what is the syntax? Thanks! Brett -- You received this message because you are subscribed to the Google Groups Heroku group. To post

Re: Use Heroku gem from within application?

2010-08-13 Thread Phillip Ridlen
'#{bundle_name}' end -- 1. Add the heroku gem to your .gems file or vendor it, so its available to your app. Require the heroku gem. 2. create a new install of Herkou::Client, which needs your username and password. I put mine

Use Heroku gem from within application?

2010-08-12 Thread Brett
Hi all, I want to let users purchase custom domain names to access my app on Heroku. When the purchase transaction takes place, I'd like to add the custom domain to my app in real time. I thought of using the Heroku gem/command line tool from within the app, analagous to the command-line

Re: Use Heroku gem from within application?

2010-08-12 Thread Daniel Spangenberg
, I want to let users purchase custom domain names to access my app on Heroku. When the purchase transaction takes place, I'd like to add the custom domain to my app in real time. I thought of using the Heroku gem/command line tool from within the app, analagous to the command-line expression

Re: Heroku gem RVM problems

2010-05-17 Thread Petros Amiridis
Any ideas anyone? Haven't solved it yet. Thanks Petros -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com. To unsubscribe from this group, send email to heroku+unsubscr...@googlegroups.com.

Re: Heroku gem RVM problems

2010-05-17 Thread daniel
Got the same problem and solved it. I'm using ubuntu linux, but every debian based system should work the same way. 1. Installing libreadline-dev, sudo apt-get install libreadline-dev 2. go to the ruby source ext/readline and 3. sudo ruby extconf.rb 4. make 5. make install and it should

Heroku gem RVM problems

2010-05-14 Thread Petros Amiridis
Hi, I have installed the Heroku gem both in my system Ruby and in an RVM Ruby (1.8.7 MRI). Heroku runs fine in my system Ruby but I get the following error when I switch to my RVM Ruby: ~/.rvm/rubies/ruby-1.8.7-p249/lib/ruby/site_ruby/1.8/rubygems/ custom_require.rb:31:in `gem_original_require

Re: error message with Heroku gem

2010-04-11 Thread DAZ
Now I get this: /usr/local/lib/site_ruby/1.8/rubygems.rb:827:in `report_activate_error': RubyGem version error: rest-client(1.4.2 not ~ 1.3.0) (Gem::LoadError) I had to uninstall version 1.4.2 and go back to version 1.3.1 Any chance the heroku gem could be updated to work with the updated rest

error message with Heroku gem

2010-04-01 Thread DAZ
Hi, I updated the Heroku gem yesterday and now I get this message if I try to use it: /usr/local/lib/site_ruby/1.8/rubygems.rb:827:in `report_activate_error': RubyGem version error: rest-client(1.0.3 not ~ 1.3.0) (Gem::LoadError) from /usr/local/lib/site_ruby/1.8/rubygems.rb:261

Re: error message with Heroku gem

2010-04-01 Thread Chris
You need to update your rest-client gem to something 1.3.0 -Chris On Thu, Apr 1, 2010 at 7:24 PM, DAZ daz4...@gmail.com wrote: Hi, I updated the Heroku gem yesterday and now I get this message if I try to use it: /usr/local/lib/site_ruby/1.8/rubygems.rb:827:in `report_activate_error

Re: error message with Heroku gem

2010-04-01 Thread DAZ
-Chris On Thu, Apr 1, 2010 at 7:24 PM, DAZ daz4...@gmail.com wrote: Hi, I updated the Heroku gem yesterday and now I get this message if I try to use it: /usr/local/lib/site_ruby/1.8/rubygems.rb:827:in `report_activate_error': RubyGem version error: rest-client(1.0.3 not ~ 1.3.0

Re: error message with Heroku gem

2010-04-01 Thread Chris
, 11:27 am, Chris r3ap3r2...@gmail.com wrote: You need to update your rest-client gem to something 1.3.0 -Chris On Thu, Apr 1, 2010 at 7:24 PM, DAZ daz4...@gmail.com wrote: Hi, I updated the Heroku gem yesterday and now I get this message if I try to use it: /usr/local/lib/site_ruby

Re: error message with Heroku gem

2010-04-01 Thread DAZ
, Chris r3ap3r2...@gmail.com wrote: You need to update your rest-client gem to something 1.3.0 -Chris On Thu, Apr 1, 2010 at 7:24 PM, DAZ daz4...@gmail.com wrote: Hi, I updated the Heroku gem yesterday and now I get this message if I try to use it: /usr/local/lib/site_ruby/1.8

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-12 Thread dan
gem is installing correctly on my system now sudo gem install heroku Successfully installed mime-types-1.16 Successfully installed rest-client-1.2.0 Successfully installed heroku-1.6.4 Successfully installed configuration-1.1.0 4 gems installed Installing ri documentation for mime-types-1.16...

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread Devyn Cairns
Hmm... try unzipping the .gem and poking around. If you install all of the dependencies minus the 'json' gem, it may work. I don't work at Heroku, by the way. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread David Dollar
I'm currently working on getting the heroku gem running on as many platforms as possible. If anyone would like to get involved in this effort, the gem is open source at http://github.com/heroku/heroku - David On Fri, Jan 8, 2010 at 2:32 AM, dan mr.dan.ma...@gmail.com wrote: i was looking

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread Devyn Cairns
Do you think there's any way we can remove the requirement of the 'json' gem for 1.9? This is what appears to be causing the problem—Ruby 1.9 includes the json library. On Fri, Jan 8, 2010 at 8:36 AM, David Dollar da...@heroku.com wrote: I'm currently working on getting the heroku gem running

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread Terence Lee
It looks like json isn't necessarily 1.9 on every platform. We might have to detect when using 1.9 and use the fake json gemspec talked about here: http://isitruby19.com/json Have you tried 1.8.6? Heroku currently runs 1.8.6 so it would make sense to dev on ruby 1.8.6 instead of 1.9.1 since

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread Devyn Cairns
Why can't you guys just give an option in the app config for the Ruby version? We can already set gem versions for the app in the .gems manifest. Doesn't this make sense? Just my two cents. -- ~devyn -- You received this message because you are subscribed to the Google Groups "Heroku" group.

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread David Dollar
Anyone using Ruby 1.9 feeling adventurous? Clone git://github.com/heroku/heroku.git, run rake spec, and let me know if you're green or not. - David On Fri, Jan 8, 2010 at 12:24 PM, Devyn Cairns devyn.cai...@gmail.com wrote: Why can't you guys just give an option in the app config for the Ruby

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-07 Thread dan
i was looking forward to giving heroku a try but am worried about the attention this issue is getting. there are no ways to submit this issue using the heroku website as i do not have a running heroku app yet. if this issue is not even acknowledged, i will have to try other hosts with better

error installing heroku gem (ruby 1.9 / mac os x)

2010-01-06 Thread dan
gem does not install on my mac - ruby 1.9 sudo gem install heroku Password: Building native extensions. This could take a while... ERROR: Error installing heroku: ERROR: Failed to build gem native extension. /usr/local/bin/ruby extconf.rb creating Makefile make gcc -Wall -I.

Re: Installing the latest Heroku gem on Windows

2009-05-25 Thread Sarah Mei
Fix is on my github; I've issued a pull request to the heroku user to merge them into the official gem. Details here: http://www.sarahmei.com/blog/?p=92 On Sun, May 24, 2009 at 10:53 AM, Sarah Mei sarah...@gmail.com wrote: Ran into this yesterday. It's a bug in heroku client. I'm working on a

Re: Installing the latest Heroku gem on Windows

2009-05-25 Thread iioiooioo
@Sarah - you rock! Checking this out now, looking forward to pure- windows heroku deploys. On May 25, 2:21 am, Sarah Mei sarah...@gmail.com wrote: Fix is on my github; I've issued a pull request to the heroku user to merge them into the official gem. Details

Re: Installing the latest Heroku gem on Windows

2009-05-24 Thread Sarah Mei
Ran into this yesterday. It's a bug in heroku client. I'm working on a patch, but in the meantime, here's a workaround: In the Git Bash shell, in your project directory that you're adding to heroku: * heroku create (this will create the app on the heroku side, give you the application name if

heroku gem points to non-existent URL

2009-05-20 Thread GreenAsJade
Running heroku addons:add custom_domains I get: Adding custom_domains to cmsfmods...FAILED !Before activating this add-on you must verify your account: !Please visit http://heroku.com/billinghttp://heroku.com/billing to set up your account. However, when I visit that URL, I get

Re: Installing the latest Heroku gem on Windows

2009-05-13 Thread Shiva
Hey did you manage to fix it on windows? I too get the same error C:\supportheroku create suport Created http://suport.heroku.com/ | g...@heroku.com:suport.git The filename, directory name, or volume label syntax is incorrect. The filename, directory name, or volume label syntax is incorrect.

Re: Installing the latest Heroku gem on Windows

2009-05-13 Thread iioiooioo
Ubuntu on VM -Configure Rails and Heroku gem -Deploy through Ubuntu reference to 'real' project directory Kind of a pita, but it beats the hell out of nothing. I think the worst part is that it becomes more difficult to manipulate your databases. On May 13, 10:28 pm, Shiva abhis...@gmail.com

Re: Installing the latest Heroku gem on Windows

2009-04-23 Thread iioiooioo
I am, for one. And getting everything setup on windows seems virtually impossible... I'm in the process of trying ubuntu on a vm, just to use heroku. I hope it works, because heroku looks pretty slick. Thanks, Brad On Apr 13, 2:25 pm, Morten Bagai mor...@heroku.com wrote: Guys, If you've

Re: Installing the latest Heroku gem on Windows

2009-04-23 Thread Morten Bagai
Did the instructions below not work for you? /Morten On Apr 23, 2009, at 8:22 PM, iioiooioo wrote: I am, for one. And getting everything setup on windows seems virtually impossible... I'm in the process of trying ubuntu on a vm, just to use heroku. I hope it works, because heroku looks

heroku gem is not compiled for windows

2009-04-20 Thread lifedispen...@gmail.com
The most recent version of heroku is not compiled for windows, and I can't get it to compile. Is there a precompiled version of the heroku gem? The error: (after getting nmake, VS express 2009, and MinGW) Building native extensions. This could take a while... ERROR: Error installing heroku

Updating heroku gem

2009-04-19 Thread giorgio
Tried to update heroku gem.. got: geo...@george-laptop:~/git/oypoints$ sudo gem update heroku [sudo] password for george: Updating installed gems Updating heroku Building native extensions. This could take a while... ERROR: While executing gem ... (Gem::Installer::ExtensionBuildError

Re: Updating heroku gem

2009-04-19 Thread Luis Martín Vallejo
Hi, try: sudo apt-get install libsqlite3-dev Then update the Heroku gem. I hope it works! Cheers, On Sun, Apr 19, 2009 at 11:36 AM, giorgio george.pever...@gmail.com wrote: Thanks for the suggestion Adam, I did the install you suggested but still get: Updating installed gems Updating

heroku gem

2009-04-18 Thread Evan Burchard
According to the description on github, heroku info --app myapp should give information about the privacy setting for an app. All I'm getting is: Web URL:http://my_app.heroku.com/ Git Repo: g...@heroku.com:my_app.git Collaborators: em...@gmail.com Am I missing something?

Warning while installing 0.7.1 heroku gem

2009-04-17 Thread GreenAsJade
No definition for cState_configure is this bad? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to heroku@googlegroups.com To unsubscribe from this group, send email

heroku gem v0.7

2009-04-08 Thread Matthew Winter
Hi, The v0.7 gem errors when installed, with the following message: custom_require.rb:31:in `gem_original_require': no such file to load -- json (LoadError) I believe that you need to add a dependency in the gem, to install the json gem. Once installed, v0.7 worked fine. Thanks.

Re: Can't install heroku gem?

2009-03-31 Thread Brian Armstrong
Yeah I'm not sure why...but it's back up and working now. On Mar 30, 9:14 pm, Mat Schaffer mat.schaf...@gmail.com wrote: On Mar 30, 2009, at 9:39 PM, Adam Wiggins wrote: That's very odd.  Github downtime shouldn't affect the Heroku gem,   since it's in Rubyforge. Can you type gem

Can't install heroku gem?

2009-03-30 Thread Brian Armstrong
Hey folks, Was trying to run through the quickstart, and got stuck at the first step: Macintosh:$ sudo gem install heroku Password: ERROR: could not find gem heroku locally or in a repository Macintosh:$ Do I need to add a source for it or something? That's not good! Anyway, awesome idea

Re: Can't install heroku gem?

2009-03-30 Thread Brian Armstrong
It looks like Github (EngineYard actually) is having downtime: http://engineyard.wordpress.com/ On Mar 30, 1:58 pm, Brian Armstrong barmstr...@gmail.com wrote: Hey folks, Was trying to run through the quickstart, and got stuck at the first step: Macintosh:$ sudo gem install heroku

Re: Can't install heroku gem?

2009-03-30 Thread Adam Wiggins
That's very odd. Github downtime shouldn't affect the Heroku gem, since it's in Rubyforge. Can you type gem sources and see if it lists http://gems.rubyforge.org? Adam --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Can't install heroku gem?

2009-03-30 Thread Mat Schaffer
On Mar 30, 2009, at 9:39 PM, Adam Wiggins wrote: That's very odd. Github downtime shouldn't affect the Heroku gem, since it's in Rubyforge. Can you type gem sources and see if it lists http://gems.rubyforge.org? I had that happen earlier today with another gem. Seems like gem doesn't

Heroku gem - Permission denied (publickey) upon heroku clone

2008-07-08 Thread MichaelHarmer
Hi All, I'm having a hell of a time trying to clone my app from heroku. I've created (and re-created) my rsa file using 'ssh-keygen -t rsa' and have uploaded it using 'heroku upload_authkey ~/.ssh/id_rsa.pub'. The error I get is: Initialized empty Git repository in

Re: Heroku gem - Permission denied (publickey) upon heroku clone

2008-07-08 Thread MichaelHarmer
I've worked out what was wrong, so I'm documenting it here in case others have the same problem. To work around an ssh problem after my upgrade to OS X 10.5 (see http://lists.macosforge.org/pipermail/macports-users/2007-November/006646.html) I added a line to my ~/.ssh/config file that told it

Re: New Heroku Gem Released!

2008-06-28 Thread Mark
I wanted to test out the Windows Heroku gem a good while before I gave feedback. A good while has passed, and I haven't run into any issues yet. Nice work. -Mark --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Underscores allowed by heroku gem for 'heroku create new_app_name'

2008-06-27 Thread Morten Bagai
Thanks for the report Chris. I verified this behavior, and we'll take a look at it. /Morten On Jun 27, 2008, at 11:45 AM, Chris Ricca wrote: The current version of the heroku gem allows for the creation of an app name with underscores, which messes git up, and I'm sure some other things

Re: New Heroku Gem Released!

2008-06-04 Thread Giorgio Clavelli
Thanks Morten, A post like this is exactly what I needed to get started with Git on Windows :) Giorgio On Wed, Jun 4, 2008 at 9:40 AM, Morten Bagai [EMAIL PROTECTED] wrote: Hello everyone, One of the first things Pedro and I have been working on here at Heroku is getting the API to work

Re: New Heroku Gem Released!

2008-06-04 Thread Giorgio Clavelli
I surelly will do it :) On Thu, Jun 5, 2008 at 9:36 AM, Morten Bagai [EMAIL PROTECTED] wrote: Awesome. Please let us know if you run into any issues. /Morten On Jun 4, 2008, at 1:30 AM, Giorgio Clavelli wrote: Thanks Morten, A post like this is exactly what I needed to get started

Re: Heroku gem installation problem

2008-05-27 Thread albemuth
nevermind, found it, just had to rm -rf ~/.heroku/credentials On May 27, 10:55 am, albemuth [EMAIL PROTECTED] wrote: Hey, I've been wanting to switch to git to stop the tar uploads but got stuck with the gem, after installing the gem and entering my credentials I got this Your ssh public

heroku gem / git

2008-04-25 Thread chris
Hi everyone, I'm trying to checkout the heroku project locally but I'm running into some authentication issues. I installed the heroku gem and tried to run it, I entered my email and password but it just gave an error. Now, when I run any command (list, clone, upload_authkey), I get: $ heroku

Re: Heroku Gem With GIT

2008-04-08 Thread Christopher
hierarchy is), at the bottom is Revisions. Click on that, and update your git repository. After that, the Heroku gem should work fine. On Apr 8, 8:14 am, siong1987 [EMAIL PROTECTED] wrote: I have problems when I try to issue heroku clone app_name with my laptop. Problem: fatal: '/userapps