Re: Has anyone got pony working with gmail on heroku?

2010-11-04 Thread morgoth


On 28 Paź, 20:04, Jimmy moxley.ja...@googlemail.com wrote:
 @ morgoth
 Is mail gem easier to install than pony?  Pony seemed like a good
 option as it was on the sinatrarb site, and since it was written by
 Adam at Heroku, I was hoping for an easy install.


Gem pony since version 1.0 depends on mail gem, so why have another
gem that is doing the same thing?
I switched from pony to mail, after this update.

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Has anyone got pony working with gmail on heroku?

2010-10-28 Thread morgoth
You can also use mail gem.

You can find my configuration of mail gem in sinatra applicaion in:

http://github.com/morgoth/kasia/blob/master/app.rb

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Ruby 1.9.2

2010-08-27 Thread morgoth
ping

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Ruby 1.9.2

2010-08-19 Thread morgoth
So the 1.9.2 is released.
When we can expect it on heroku?

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Rails3 RC from master failed to start

2010-08-05 Thread morgoth
After pushing application to heroku I get error: http://gist.github.com/510350

Anybody having similar problem?

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: NOTICE: Updating Bundler this week

2010-08-05 Thread morgoth
Unfortunately without luck for me:
http://groups.google.com/group/heroku/browse_thread/thread/f33a79310c0fef4d?hl=pl

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: NOTICE: Updating Bundler this week

2010-08-04 Thread morgoth
Please, update bundler to RC3 (or any higher version if will be
available)

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Rails 3 Bamboo -- App failed to start

2010-04-29 Thread morgoth
Look at this thread:

http://groups.google.com/group/heroku/browse_thread/thread/a857eb7e93cb03b2?hl=pl

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Bundler and read only file system error

2010-04-16 Thread morgoth
Hi.
If you are using bundler and you are on the edge with configuration
(rails3 and rails 2.3.5) you will get error on heroku saying about
read only file system.

That is because config/boot.rb has changed:
When you generate new rails3 app you will have config/boot.rb like
this:

require 'rubygems'
# Set up gems listed in the Gemfile.
if File.exist?(File.expand_path('../../Gemfile', __FILE__))
  require 'bundler'
  Bundler.setup
end

This wont work on heroku! (at least now)
Bundler wants to create .bundle/environment.rb which is prohibited.

So you need to use old style of config/boot.rb:
http://gist.github.com/368681

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Bundler and read only file system error

2010-04-16 Thread morgoth
I just checked configuration for rails 2.3.5 app and it is the same
problem.
Put code from gist in config/preinitiazer.rb and push it to heroku.

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: sass_on_heroku / hassle

2010-03-28 Thread morgoth
You can try merbjedi fork of hassle:
http://github.com/merbjedi/hassle

It this wont help, you can use Rack::Static middleware like this:

remove hassle
change your sass (compass) settings:
config.css_dir = tmp/public/compiled/stylesheets

Create initializer with code:

ActionController::Dispatcher.middleware.use Rack::Static, :root =
tmp/public, :urls = [/compiled/stylesheets]

This will always compile your sass files to tmp and serve them by rack
static module.

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Rails 3 app not working

2010-03-06 Thread morgoth
After successful deploy to bamboo-mri-1.9.1, all I can see is static
page saying:

Heroku | Welcome to your new app!
Refer to the documentation if you need help deploying.

Logs are empty.
Is there anyone who is running rails 3 app on heroku?

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Rails 3 app not working

2010-03-06 Thread morgoth
Obviously I tried this, but didn't help. Anyway after Gemfile refresh
it started.
New problem is that on heroku is bundler 0.9.5 which is not working
with rails master.
And application which is running on rails master, doesn't run on rails
3.0.0.beta anymore (which is running with bundler 0.9.5) :-)

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Bundler Update

2010-03-04 Thread morgoth
Finally 1.9.1.

I have small sinatra app on bamboo.
It looks like you must specify also gem thin in production environment
(I am using it with bundler).

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Gem Bundler 0.9 now live

2010-02-20 Thread morgoth
There is a problem with gems that extends rails modules. New bundler
doesn't load init.rb (rails/init.rb) file.
In this file we can often find something like this (acts as taggable
on):

ActiveRecord::Base.send :include, ActiveRecord::Acts::TaggableOn
ActiveRecord::Base.send :include, ActiveRecord::Acts::Tagger
ActionView::Base.send :include, TagsHelper if defined?
(ActionView::Base)

Without this lines of code our application won't run.

Quick fix of this is to create directory in vendor/plugins with init
files.
See this commit:
http://github.com/morgoth/quiz/commit/42f9c0eafd9062731d4cc2d5bf1f23211f54ebff

Heroku bundler 0.9 works for me.

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: gem bundler support

2010-02-04 Thread morgoth
There are changes in Gemfile syntax like:
:require_as becomes :require
:only becomes :group

Today 0.9.1 was released.

-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: gem bundler support

2010-01-20 Thread morgoth
Great. It works perfectly. One downside: this increase slug size.
-- 
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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.




Re: Rails 2.3.5

2009-11-30 Thread morgoth
It's working for me. In my .gems file:

rails -v 2.3.5
rack -v 1.0.1

--

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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.




Rails 2.3.5

2009-11-27 Thread morgoth
When we will be able to use 2.3.5?

--

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.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.




Re: Ruby 1.9 support

2009-08-23 Thread morgoth

Hi.
1.9 would be great. I'm also interested in this experimental feature,
so put me on the list if this is not a problem.
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Data.yml exported from HerokuGarden is out of date.

2009-03-26 Thread morgoth

Yes, indeed.
Thanks.
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Data.yml exported from HerokuGarden is out of date.

2009-03-25 Thread morgoth

I have the same problem - my app is saps.herokugarden.com
I submited a ticket to herokugarden helpdesk, but there is no answer.
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Rails 2.3 support

2009-03-17 Thread morgoth

I wanted to switch to rails 2.3 and I get error:

Missing the Rails 2.3.2 gem. Please `gem install -v=2.3.2 rails`,
update your RAILS_GEM_VERSION setting in config/environment.rb for the
Rails version you do have installed, or comment out RAILS_GEM_VERSION
to use the latest version installed. Heroku supports Rails version
2.0.2 and 2.1. Update RAILS_GEM_VERSION in your config/environment.rb
to select one of these versions.

I already submited a ticket in helpdesk.

In past I got similar error that was solved
http://groups.google.com/group/heroku/browse_thread/thread/a58233abc49afc33/042c9e64c6d59569?hl=pl#042c9e64c6d59569
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Rails 2.3 support

2009-03-16 Thread morgoth

So the final version of Rails 2.3 is released
http://weblog.rubyonrails.org/2009/3/16/rails-2-3-templates-engines-rack-metal-much-more

What about heroku and herokugarde support for this version?
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Getting error that I'm 'Missing the Rails 2.2.2 gem.'

2009-01-23 Thread morgoth

Should we downgrade our apps to 2.1?
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Getting error that I'm 'Missing the Rails 2.2.2 gem.'

2009-01-23 Thread morgoth

Thank You.
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Getting error that I'm 'Missing the Rails 2.2.2 gem.'

2009-01-21 Thread morgoth

I have: RAILS_GEM_VERSION = '2.2.2' in environment.rb
It's not working.
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Getting error that I'm 'Missing the Rails 2.2.2 gem.'

2009-01-21 Thread morgoth



On 21 Sty, 23:08, Morten Bagai mor...@heroku.com wrote:

 You need to change it to 2.2. That's the version we currently have  
 available on Heroku Garden.


It didn't help.
2 days ago everything was ok, I didn't make any changes in code (in
environment.rb it was RAILS_GEM_VERSION = '2.2.2' all the time)
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Server failed to start - undefined method `cache_template_extensions=

2008-12-18 Thread morgoth

Thx. I had the same problem and it works now.
--~--~-~--~~~---~--~~
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 to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 502 Bad Gateway

2008-10-06 Thread morgoth

Same problem here.
--~--~-~--~~~---~--~~
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 to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: how to switch from development to production mode?

2008-04-16 Thread morgoth

All You need is 'blessing', then You will be able to choose between
development and production.

--~--~-~--~~~---~--~~
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 to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---