[Rails] Re: Heroku: Why isn't the config/database.yml file relevant?

2015-02-21 Thread ANIL YADAV
I think you need to changed your production configuration ...in your yml files... production: <<: *default database: name_production username: name password: <℅= ENV['NAME_DATABASE_PASSWORD']℅> the ENV tag automatic generated a unique password for your rail application on heroku production...

[Rails] Re: Heroku: Why isn't the config/database.yml file relevant?

2015-02-21 Thread ANIL YADAV
I think you need to changed your production configuration ...in your yml files... production: <<: *default database: name_production username: name password: <℅= ENV['NAME_DATABASE_PASSWORD']℅> the ENV tag automatic generated a unique password for your rail application on heroku production...

[Rails] Re: Heroku: Why isn't the config/database.yml file relevant?

2015-02-21 Thread ANIL YADAV
I think you need to changed your production configuration ...in your yml files... production: <<: *default database: name_production username: name password: <℅= ENV['NAME_DATABASE_PASSWORD']℅> the ENV tag automatic generated a unique password for your rail application on heroku production...

[Rails] Re: Heroku: Why isn't the config/database.yml file relevant?

2015-02-20 Thread Frederick Cheung
On Friday, February 20, 2015 at 11:50:50 PM UTC, Jason Hsu, Rubyist wrote: > As you know, Heroku uses the PostgreSQL database by default. > > However, when you deploy an app that you created with the use of SQLite in > the development environment, the config/database.yml file on the Heroku > ser

[Rails] Re: Heroku article on creating a direct to S3 upload

2014-11-26 Thread Antonio D.
Hello Christopher, I trust you are well. I am not a programmer and need help uploading and hosting a website on Heroku. The site was developed using Ruby on Rails and in my part of the world, a good programmer in this field is hard to come by. Can you help and what are the steps to do so.

[Rails] Re: heroku not supporting website from othr web source..

2014-11-13 Thread Matt Jones
On Thursday, 13 November 2014 02:35:42 UTC-5, mukul saharia wrote: > > hello friends, > i am working with rails and i want to load some java script components > from other web source and render it in my web site which is hosted on > heroku. > but heroku is not loading components from other web

[Rails] Re: heroku[router]: at=error code=H10 desc="App crashed"

2014-07-24 Thread Matt Jones
On Wednesday, 23 July 2014 05:59:12 UTC-4, huon sothon wrote: > > i'm deployed my app to heroku. i run: git push heroku master .it is > successfull .but when run heroku open it show errors : > > -Application Error-An error occurred in the application and your page could > not be served. Please

[Rails] Re: heroku push Mongo::ConnectionFailure: Failed to connect to a master node at 127.0.0.1:27017

2014-07-24 Thread Frederick Cheung
On Wednesday, July 23, 2014 6:05:41 PM UTC+1, xstaz wrote: > > Hi.my problem is Mongo::ConnectionFailure: Failed to connect to a master > node at 127.0.0.1:27017 when im pushing on heroku > Mongo isn't running on your heroku instance. The way heroku works you need to use an addon such as mongo

[Rails] Re: Heroku vs. local WEBrick: How could be this error be undetected?

2014-07-10 Thread Ronald Fischer
It's 2.1.1p76 in both cases. -- 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 rubyonrails-talk+unsubscr...@goog

[Rails] Re: Heroku | Rails 4 | Ruby 2.0 - send_file not presenting file for download in the browser

2014-03-26 Thread Frederick Cheung
On Wednesday, March 26, 2014 2:29:37 AM UTC, Vell wrote: > > > *app/views/blogs/show.html.erb* > > <% for attachment in @blog.blog_attachments %> > <%= link_to attachment.document_file_name, > download_blog_attachments_path(id: attachment.id), remote: true, method: > :get %> > <% end %> > > d

[Rails] Re: heroku rake db:drop error PG::Error: FATAL: permission denied for database "postgres"

2013-11-07 Thread Raj Kiran Bhogaraju
Please follow: http://stackoverflow.com/questions/4820549/how-to-empty-db-in-heroku -- 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

[Rails] Re: heroku with iconv error

2013-08-12 Thread Max Davila
Hi, anu. I am having the same exact problem. Just wondering if you found a solution. I am stumped. On Friday, July 26, 2013 4:56:09 AM UTC-4, anu wrote: > > heroku gives the error application error in the browser for import > functionality > in heroku logs > application.rb/ require:cannot lo

[Rails] Re: Heroku alternatives

2013-04-19 Thread Michał K.
Another alternative worth looking at is Shelly Cloud: https://shellycloud.com Deployment is done via git like in Heroku, but it differs in that you get whole virtual servers that you can utilize in different ways: for application servers, delayed_job workers, databases, etc. It comes with free cred

[Rails] Re: Heroku alternatives

2013-04-05 Thread Khash S.
I can also suggest Cloud 66 (www.cloud66.com) which is an application management as a service. It configures, deploys and manages your web applications and mobile backends on any cloud or your own servers without the need to for any download or sysop. Disclaimer: I work for Cloud 66 -- Posted

[Rails] Re: Heroku db id Starting with 1000

2013-03-12 Thread Avi
On Tuesday, March 12, 2013 4:28:59 PM UTC+5:30, Avi wrote: > > Hello All, > > How do I change the heroku database( already existed ) table id to start > from say 1000? > > I tried with a fresh database on local & it works with this:- > *execute "ALTER users orders AUTO_INCREMENT = 1

[Rails] Re: heroku deployment

2012-12-04 Thread Lee
Hey Bhimasen, You can deploy multiple apps to Heroku with only one account and 1 public key. >From your command line, go into the root directory of app 1 and deploy to Heroku. Then, go into the root of app 2, and deploy to Heroku. You will now have 2 apps on Heroku, each with their own unique U

[Rails] Re: heroku deployment

2012-12-03 Thread Will
I just use apps from different directories and they create new applications on heroku... no worries about public key etc. On Saturday, December 1, 2012 4:46:45 AM UTC-8, Bhimasen Routray wrote: > > i want to deploy two rails application in heroku..so how can i deploy two > application with one a

[Rails] Re: Heroku App Sending Blank Emails with Sendgrid

2012-05-24 Thread Swift
Hey, I'm Swift, one of the developer evangelists over at SendGrid.  Sorry that we didn't get back to you on our support channel - we get a high volume of requests and sometimes things slip through the cracks. Your problem is that you're using a deprecated syntax for composing the email. The pref

[Rails] Re: Heroku Deploy issue

2012-05-15 Thread Miguel A.
> If you're ok with production containing everything that's in your > local database you can either use heroku's db:push (https:// > devcenter.heroku.com/articles/taps) I downloaded the Windows Toolbelt and came into a problem. After just installing the Heroku CLI, I tried to run rake routes to k

[Rails] Re: Heroku Deploy issue

2012-05-15 Thread Frederick Cheung
On May 15, 12:06 pm, "Miguel A." wrote: > Im using Rails 3.2.3 and Ruby 1.9.3. > I want to deploy my app to heroku but am having some issues. > > Basically I can push it to heroku but no tables are created, at least > all data is empty. > > I can't login as it says "Invalid username/password" an

Re: [Rails] Re: Heroku and MySQL

2012-01-07 Thread Hassan Schroeder
On Fri, Jan 6, 2012 at 10:23 PM, ghilly wrote: > Ok, I misunderstood - I thought you could keep your mysql gem.  I  migrated > to Postgres and made a few controller tweaks and it worked. Just to be clear, for anyone else finding this thread -- you *don't* have to "migrate to Postgres" locally to

[Rails] Re: Heroku and MySQL

2012-01-06 Thread ghilly
Ok, I misunderstood - I thought you could keep your mysql gem. I migrated to Postgres and made a few controller tweaks and it worked. Thanks for your help. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on th

[Rails] Re: Heroku upload

2011-12-21 Thread John Maxwell
Pretty simple - type "heroku logout" then "heroku login" - enter the details for the account you want to upload to, and then "heroku keys:add" to add your SSL key, push your updates with "git push heroku master" finally "heroku logout" and "heroku login" back to your own account. Simple, if you

[Rails] Re: Heroku & rails new ultradedup001

2011-12-19 Thread Frederick Cheung
On Dec 18, 4:23 pm, Ralph Shnelvar wrote: > > FC> Rails (deliberately) only allows access to the /rails/info controller > FC> when running in development mode. The rest of the time the route that > FC> would allow requests to reach it doesn't exist so going to /rails/info > FC> will 404. > I assu

Re: [Rails] Re: Heroku & rails new ultradedup001

2011-12-18 Thread Hassan Schroeder
On Sun, Dec 18, 2011 at 4:48 AM, Ralph Shnelvar wrote: > elaborate ... why the same code is running in development on my test machine > but is running in production on heroku? Because that's the way heroku works. I would imagine it would be a nightmare for a platform-as-a-service to support the

Re: [Rails] Re: Heroku & rails new ultradedup001

2011-12-18 Thread Ralph Shnelvar
Frederick, Sunday, December 18, 2011, 6:57:20 AM, you wrote: FC> On Dec 18, 12:48 pm, Ralph Shnelvar wrote: >> >> FC> The /rails/info route is only setup in development, so if your heroku >> FC> deployment is running in production it's normal for it not to work. >> >> Could you PLEASE elaborate.

[Rails] Re: Heroku & rails new ultradedup001

2011-12-18 Thread Frederick Cheung
On Dec 18, 12:48 pm, Ralph Shnelvar wrote: > > FC> The /rails/info route is only setup in development, so if your heroku > FC> deployment is running in production it's normal for it not to work. > > Could you PLEASE elaborate.  Please elaborate, for instance, why the same > code is running in d

Re: [Rails] Re: Heroku & rails new ultradedup001

2011-12-18 Thread Colin Law
On 18 December 2011 12:48, Ralph Shnelvar wrote: > ... > Is there an (easy) tutorial on how to use the routes sample generated by the > "rails new" command? Have a look at the rails guide Rails Routing from the Outside In. Colin -- You received this message because you are subscribed to the G

Re: [Rails] Re: Heroku & rails new ultradedup001

2011-12-18 Thread Ralph Shnelvar
Frederick, FC> On Dec 18, 9:14 am, Ralph Shnelvar wrote: >> Because my ISP is giving me zero help in fixing a problem I fee is his >> problem, I have decided to migrate my code to Heroku. >> >> I attempted a port but the port failed.  Oh well, it was worth a try. >> >> So, instead, I did "Hello,

[Rails] Re: Heroku & rails new ultradedup001

2011-12-18 Thread Frederick Cheung
On Dec 18, 9:14 am, Ralph Shnelvar wrote: > Because my ISP is giving me zero help in fixing a problem I fee is his > problem, I have decided to migrate my code to Heroku. > > I attempted a port but the port failed.  Oh well, it was worth a try. > > So, instead, I did "Hello, world" by doing >  

[Rails] Re: Heroku application error

2011-10-08 Thread Sushil Gupta
Thank you, that worked. :) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/dCRA5UbeUi4J. To post to this group, send email to rubyonrails-talk@go

[Rails] Re: Heroku application error

2011-10-07 Thread Zach S.
I also ran into the same error after following the instructions when following the instructions in Ruby on Rails Tutorial: Learn Rails by Example http://ruby.railstutorial.org/chapters/beginning#top by Michael Hartl. The problem is that Heroku doesn't support the SQLite. The solution is to conver

Re: [Rails] Re: Heroku application error

2011-10-01 Thread aa...@xmission.com
ct: [Rails] Re: Heroku application error To: I'm also having an same error with http://smoothipod.heroku.com/ while following with http://ruby.railstutorial.org/chapters/beginning#top by Michael Hartl. Also another similar (little different) error with http://meinkampf.heroku.com/. The s

Re: [Rails] Re: Heroku application error

2011-10-01 Thread Sushil Gupta
I'm also having an same error with http://smoothipod.heroku.com/ while following with http://ruby.railstutorial.org/chapters/beginning#top by Michael Hartl. Also another similar (little different) error with http://meinkampf.heroku.com/. The strange thing is, both of these applications work o

Re: [Rails] Re: Heroku application error

2011-09-30 Thread Norbert Melzer
2011/9/30 zver : > Hi! > > Look at mine Gemfile. Perhapse you find some idea how to set "pg" gem. > > https://github.com/otobrglez/mauto/blob/master/Gemfile As far as I understand the working of heroku deploy, it does not look at your Gemfile, but at your Gemfile.lock, so if you "bundle install --

[Rails] Re: Heroku application error

2011-09-30 Thread zver
Hi! Look at mine Gemfile. Perhapse you find some idea how to set "pg" gem. https://github.com/otobrglez/mauto/blob/master/Gemfile - Oto On 30 sep., 09:02, Norbert Melzer wrote: > Put postgres in your Gemfile . As far as I remember the Jeromy FAQ points to > this issue. > > HTH Norbert > > --

[Rails] Re: Heroku Slugsize shot up drastically

2011-09-23 Thread UA
Thanks a lot Martin. Only Aspen stack has preinstalled gems. (http:// installed-gems.heroku.com/) Bamboo and Cedar dont. Hence my slug is high. I need to reduce my gems. On Sep 24, 11:29 am, Martin Wawrusch wrote: > You need to make sure that bundle (on heroku) does not include the > development

Re: [Rails] Re: Heroku Slugsize shot up drastically

2011-09-23 Thread Martin Wawrusch
You need to make sure that bundle (on heroku) does not include the development and test gems. run "heroku config" and look for a BUNDLE_WITHOUT line that should contain development:test If not then execute the following command: heroku config:add BUNDLE_WITHOUT="development:test" slugignore is u

[Rails] Re: Heroku Slugsize shot up drastically

2011-09-23 Thread UA
Thank you Martin, My GemFile puts all dev gems within Dev section group :development do gem 'silent-postgres' gem 'hirb' gem 'wirble' gem 'crack' gem 'ap' end About Slugignore, I gitignored all items which are to be slugignored. Does it not solve the problem? Plus there are no plugins/

[Rails] Re: Heroku failed to push: fatal: sha1 file '' write error: Invalid argument

2011-09-13 Thread Àsgeir G.
Problem solved max app size is 100 MB for heroku: http://devcenter.heroku.com/articles/slug-szie -- 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 post to this group, send email to rubyonrails

[Rails] Re: Heroku deployment issue

2011-08-02 Thread 7stud --
SW Engineer wrote in post #1014394: > I'm following this tutorial, and have followed the steps to deploying to > 'Heroku'. > > When I open the application from 'Heroku', > What does that mean? Typically, you request a webpage from a server, which means you want some webpage to be displayed by yo

[Rails] Re: Heroku Db migrate not working

2011-07-16 Thread Bob Roberts
It is an issue with your version of you rake gem. Check out the answer here: http://stackoverflow.com/questions/6085610/rails-rake-problems-uninitialized-constant-rakedsl On Jul 14, 2:51 pm, Manu Bangia wrote: > Hi, > > I am on section 7.4.2 of the tutorial. However when I try to migrate my > h

Re: [Rails] Re: Heroku deployment problem

2011-03-06 Thread Hassan Schroeder
On Sun, Mar 6, 2011 at 9:35 AM, Bryan Crossland wrote: > Far from pointless or irrelevant. I develop locally in MySQL pushed to > Heroku, crash. We'll have to agree to disagree, then. I've got 4 or 5 deployments on Heroku, and haven't seen any such environment-related problems. And I'd suggest t

Re: [Rails] Re: Heroku deployment problem

2011-03-06 Thread Bryan Crossland
On Sun, Mar 6, 2011 at 10:56 AM, Hassan Schroeder < hassan.schroe...@gmail.com> wrote: > On Sun, Mar 6, 2011 at 8:40 AM, Bryan Crossland > wrote: > > > Check your database.yml, Gemfile, and Gemfile.lock. Make sure you are > > specifying that you want to use PostgreSQL which is the database that >

Re: [Rails] Re: Heroku deployment problem

2011-03-06 Thread Hassan Schroeder
On Sun, Mar 6, 2011 at 8:40 AM, Bryan Crossland wrote: > Check your database.yml, Gemfile, and Gemfile.lock. Make sure you are > specifying that you want to use PostgreSQL which is the database that Heroku > uses not SQLite3. Sorry, that's pointless. Heroku doesn't care about your database.yml f

Re: [Rails] Re: Heroku deployment problem

2011-03-06 Thread Bryan Crossland
On Sat, Mar 5, 2011 at 9:43 PM, Gaba Luschi wrote: > One of the things I noticed that it said is: > > /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.7/lib/bundler/runtime.rb:64: > in 'require': no such file to load --sqlite3 > > Check your database.yml, Gemfile, and Gemfile.lock. Make sure yo

Re: [Rails] Re: Heroku deployment problem

2011-03-06 Thread Hassan Schroeder
On Sun, Mar 6, 2011 at 8:02 AM, Gaba Luschi wrote: > How do I delete and create it over in Heroku? Why would you do that when you haven't determined the problem? > I don't do it through the rails console but rather from heroku.com? You can do it either way. From your app directory, type `heroku

[Rails] Re: Heroku deployment problem

2011-03-06 Thread Gaba Luschi
Also, if it works on my localhost, but not on heroku, does that mean the code works? -- 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 post to this group, send email to rubyonrails-talk@google

[Rails] Re: Heroku deployment problem

2011-03-06 Thread Gaba Luschi
How do I delete and create it over in Heroku? I don't do it through the rails console but rather from heroku.com? -- 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 post to this group, send em

Re: [Rails] Re: Heroku deployment problem

2011-03-05 Thread David Kahn
On Sat, Mar 5, 2011 at 10:18 PM, David Kahn wrote: > > > On Sat, Mar 5, 2011 at 9:43 PM, Gaba Luschi wrote: > >> One of the things I noticed that it said is: >> >> /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.7/lib/bundler/runtime.rb:64: >> in 'require': no such file to load --sqlite3 >> >>

Re: [Rails] Re: Heroku deployment problem

2011-03-05 Thread David Kahn
On Sat, Mar 5, 2011 at 9:43 PM, Gaba Luschi wrote: > One of the things I noticed that it said is: > > /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.7/lib/bundler/runtime.rb:64: > in 'require': no such file to load --sqlite3 > > Do you that's it? Basically what happened was I first installed

[Rails] Re: Heroku deployment problem

2011-03-05 Thread Gaba Luschi
Also, when I typed in rake db:migrate, I get: but then when I check the "db" folder, there's no migrate folder that's been created. It should have been right? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Ra

[Rails] Re: Heroku deployment problem

2011-03-05 Thread Gaba Luschi
One of the things I noticed that it said is: /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.7/lib/bundler/runtime.rb:64: in 'require': no such file to load --sqlite3 Do you that's it? Basically what happened was I first installed Ruby 1.9.2, then Rails, but ran into some problems, so then in

[Rails] Re: Heroku deployment problem

2011-03-05 Thread Mike Villa
Gaba, There can be a number of reasons and the advice to check those logs will help. Things to watch out for are analyzing what may be different on heroku than with your local copy. Simple things are like is the type of database the same, are you trying to upload a file when the app is not configur

[Rails] Re: heroku SQL columnName problems

2011-02-06 Thread Avi K.
Try to use Xeround free SQL database on Heroku, if you want, send a message to kopp...@gmail.com to get in invite -- 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 post to this group, send ema

[Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Marnen Laibow-Koser
Michael Baldock wrote in post #972049: > Cool, learning plenty here, cheers! > > I've got a logger method in the class now, and so taken away the > unnecessary inheritance. Cheers! > > My heroku app is working for now, although I'm not sure it'll stay > working, it seems to stop fetching events aft

[Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Frederick Cheung
On Jan 3, 3:59 pm, Michael Baldock wrote: > Cool, learning plenty here, cheers! > > I've got a logger method in the class now, and so taken away the > unnecessary inheritance. Cheers! > > My heroku app is working for now, although I'm not sure it'll stay > working, it seems to stop fetching even

[Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Michael Baldock
Cool, learning plenty here, cheers! I've got a logger method in the class now, and so taken away the unnecessary inheritance. Cheers! My heroku app is working for now, although I'm not sure it'll stay working, it seems to stop fetching events after a day, and needs a new git push, with changes

Re: [Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Frederick Cheung
On 3 Jan 2011, at 14:05, Michael Baldock wrote: > I tried making EventSearcher just inherit from object, ie: > > class EventSearcher > > but then I get errors from almost the first line, eg. > > failed with NameError: undefined local variable or method `logger' > > for my debug statements,

[Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Michael Baldock
I tried making EventSearcher just inherit from object, ie: class EventSearcher but then I get errors from almost the first line, eg. failed with NameError: undefined local variable or method `logger' for my debug statements, and I don't suppose it'll know about my model Classes either. Having

Re: [Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Frederick Cheung
On 3 Jan 2011, at 13:04, Michael Baldock wrote: > Thanks for the advice Fred, > > I've moved the search logic / parsing across to the EventSearcher class > now as you suggested, and it seems to be working. I had it in there to > begin with, and moved it out because it couldn't find other cla

[Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Michael Baldock
Thanks for the advice Fred, I've moved the search logic / parsing across to the EventSearcher class now as you suggested, and it seems to be working. I had it in there to begin with, and moved it out because it couldn't find other classes it needed. But I now think this was caused because I did

[Rails] Re: Heroku, needs constant AppController updates?

2011-01-03 Thread Frederick Cheung
On Jan 3, 10:37 am, Michael Baldock wrote: > Dear All, > > Fairly new to rails and Heroku, so could be doing something wacky - do > let me know if you think my code practice is off, even if unrelated to > this error, I'd like to learn! > > I'm using Rails 3.0.0, ruby 1.8.7, and 'sqlite3-ruby', '

[Rails] Re: heroku SQL columnName problems

2011-01-01 Thread Michael Baldock
Cheers for the help guys, I'd gotten used to writing variables with capital letters like that, and so resisted the rails convention to my peril. I'll change all the names @Colin "Yes of course, just use rename_column in a migration." Yeah that seems pretty obvious now you say it, cheers. @Mar

[Rails] Re: heroku SQL columnName problems

2011-01-01 Thread Marnen Laibow-Koser
Michael Baldock wrote in post #971769: > Hi all, > > I've got a database of events, and (possibly foolishly) I've got column > names such as eventDate, with capital letters. Oy. I agree with Michael that this is probably worth changing. > When I want to order the > list of events by their date,

[Rails] Re: Heroku error msg:App Crashed

2010-11-30 Thread Emanuel
finally i fixed it..i had to make a single line as comment that is gem 'sqlite3-ruby', :require => 'sqlite3' in my gemfile ...any way thanx for ur support.. On Nov 29, 10:05 pm, Marnen Laibow-Koser wrote: > Emanuel wrote in post #964744: > > > /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Marnen Laibow-Koser
Emanuel wrote in post #964744: > /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/bundler/ > runtime.rb:64:in > `require': no such file to load -- sqlite3 (LoadError) > > > u can see from the above line...i think it is an error regarding > sqlite3 as i am using it with my application...and

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Ar Chron
Emanuel wrote in post #964744: > /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/bundler/ > runtime.rb:64:in > `require': no such file to load -- sqlite3 (LoadError) > > > u can see from the above line...i think it is an error regarding > sqlite3 as i am using it with my application...and

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Emanuel
/usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/bundler/ runtime.rb:64:in `require': no such file to load -- sqlite3 (LoadError) u can see from the above line...i think it is an error regarding sqlite3 as i am using it with my application...and i think heroku is not supporting sqlite3...

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Ar Chron
Emanuel wrote in post #964621: > where did it gone wrong? pls help... >From what you've provided, there's no telling what is wrong... it could be anything. Have you looked at any of the log files available? -- Posted via http://www.ruby-forum.com/. -- You received this message because you ar

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Emanuel
$ heroku logs /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/bundler/ runtime.rb:64:in `require': no such file to load -- sqlite3 (LoadError) from /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/ bundler/run time.rb:64:in `require' from /usr/ruby1.8.7/lib/ruby/gems

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Emanuel
pls see the logs below describing the error... $ heroku logs /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/bundler/ runtime.rb:64:in `require': no such file to load -- sqlite3 (LoadError) from /usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.3/lib/ bundler/run time.rb:64:in `

Re: [Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Colin Law
On 29 November 2010 11:23, Emanuel wrote: Please don't top post, it makes it difficult to follow the thread. Insert your comments in the previous message. Thanks > as far as i know this error is regarding sqlite 3 , the database i am > using for my application, but i dont know how to fix this..

[Rails] Re: Heroku error msg:App Crashed

2010-11-29 Thread Emanuel
as far as i know this error is regarding sqlite 3 , the database i am using for my application, but i dont know how to fix this... On Nov 29, 4:18 pm, Colin Law wrote: > On 29 November 2010 08:22, Emanuel wrote: > > > Hi , > > i developed a small application(which contails only static pages) . I

Re: [Rails] Re: Heroku JS & CSS Compression Recommendations

2010-11-07 Thread rajeevsharma86
write here yours heroku app address On Sun, Nov 7, 2010 at 8:49 PM, Marnen Laibow-Koser wrote: > CuriousNewbie wrote in post #959212: > > Hello, I'm interested in doing something about my dozens of JS and CSS > > include files in order to speed up my Heroku, Rails 3 hosted app. > > Simple: don't

[Rails] Re: Heroku JS & CSS Compression Recommendations

2010-11-07 Thread Marnen Laibow-Koser
CuriousNewbie wrote in post #959212: > Hello, I'm interested in doing something about my dozens of JS and CSS > include files in order to speed up my Heroku, Rails 3 hosted app. Simple: don't include them all. It's rare to need all your dozens of files on one page. Just include them where you n

[Rails] Re: HEROKU AND SQLITE - I HAVE A PROBLEM

2010-10-13 Thread Dani Dani
Pierrot wrote in post #949900: Hi, just edit gemfile and comment out the sqlite entry, then 'bundle install'. This should help. Dani -- 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 post to t

[Rails] Re: HEROKU AND SQLITE - I HAVE A PROBLEM

2010-10-13 Thread Pierrot
Hi. I use sqlite to develop no problem. When you push heroku maps the db to postgress. It's done automatically. On 13 oct, 09:01, Frederico Barbosa wrote: > Hello People, > > I can´t publish Ruby on Rails application on HEROKU. It says "file > sqlite3 is missing". But I know it´s not missing and

[Rails] Re: HEROKU AND SQLITE - I HAVE A PROBLEM

2010-10-13 Thread Marnen Laibow-Koser
Frederico Barbosa wrote in post #949839: > Hello People, > > I cant publish Ruby on Rails application on HEROKU. It says "file > sqlite3 is missing". Let's see the error trace. > But I know its not missing and the application > runs allright on my computer. > > Is it true that I should stop using

[Rails] Re: heroku: command not found

2010-09-24 Thread Jeff
That seems to have done it. Thank you! On Sep 24, 3:33 am, Hassan Schroeder wrote: > On Thu, Sep 23, 2010 at 2:34 PM, Jeff Schmidt wrote: > > I'm trying to install and use Heroku and having the following problem: > : > > sudo gem install heroku > > My environment: > > GEM_HOME=/Users/Applnb/.rvm

[Rails] Re: Heroku good for a rails business host?

2010-06-12 Thread Marnen Laibow-Koser
Kayle wrote: > Just curious... our company is new to Rails and we host all our sites > for our clients. We want a good, fast, reliable host. One that's > scalable and easy to deploy. > > Heroku (http://heroku.com) was recommended to me and I really like the > workflow and how it's specifically gea

[Rails] Re: Heroku.... I'm sceptical

2009-11-26 Thread Oren
On Nov 25, 3:30 am, "rails.n...@gmail.com" wrote: > So I've tried to post three times to post to the Heroku Google > Group.    http://blog.heroku.com/archives/2008/2/11/heroku_mailing_list/ > > However it is moderated and they FILTER questions!!!   My questions > were filtered and they weren't e

[Rails] Re: Heroku.... I'm sceptical

2009-11-26 Thread Chris Hanks
Yeah, Heroku isn't that quick with their mailing list, or the open discussion part of their support site (support.heroku.com), but whenever I've filed a support ticket with them there, they've been really good about being on it right away. I'm not sure why there's such a big difference, but if it's

[Rails] Re: Heroku.... I'm sceptical

2009-11-25 Thread jasonb
Well I just got a heroku guy responding personally. Can't fault personal service :) So I, at least, am happy :) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-t...@googlegroups.com. To u

[Rails] Re: Heroku.... I'm sceptical

2009-11-25 Thread jasonb
Yes that's well and good and I have started doing that. I'm disappointing they sensor their discussion list. It's a sign of a good host to have an active community, and to be up front about things. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Tal

[Rails] Re: Heroku.... I'm sceptical

2009-11-25 Thread Eric
You're paying for an account? From their support page (linked on the top right of heroku.com): "If you're experiencing a problem with your app, the best way to ensure a timely response is to submit a ticket. Using the ticket system will allow you to communicate directly with our support staff, and

[Rails] Re: Heroku.... I'm sceptical

2009-11-25 Thread rails.n...@gmail.com
About *your* account that *you* pay for. As for proof... well I'm just saying I got my messages filtered out. This group is highly active with relatively low spam, imo. On Nov 26, 2:14 am, Thufir wrote: > Heroku uses a mailing list, which *they* administrate -- privately. > If you have a probl

[Rails] Re: Heroku.... I'm sceptical

2009-11-25 Thread Thufir
Heroku uses a mailing list, which *they* administrate -- privately. If you have a problem with them you can always contact *their* list administrator. http://groups.google.com/group/heroku/about http://www.gmane.org/info.php?group=gmane.comp.lang.ruby.rails.heroku -Thufir -- You received this

Re: [Rails] Re: Heroku ssh key problem

2009-11-25 Thread Kemal Pince
Thanks.. I know all the heroku commands by heart by now. Tried that one too.. On Wed, Nov 25, 2009 at 5:37 AM, Ritchie wrote: > In the directory for your rails app type: > > heroku keys > > It should show you what keys you have installed. You probably just > need to add the key for your new ma

[Rails] Re: Heroku ssh key problem

2009-11-25 Thread Ritchie
In the directory for your rails app type: heroku keys It should show you what keys you have installed. You probably just need to add the key for your new machine with: heroku keys:add Type: heroku help commands for more help. /Ritchie On Nov 24, 10:41 pm, Kemal Pince wrote: > Yes, I did.He

[Rails] Re: Heroku

2009-09-27 Thread nico
Hi Jan, I assume you have checked the heroku docs at heroku.com? Did you follow the steps described there to get started? Can you give details about what is not working? Nico --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Rails] Re: Heroku

2009-09-27 Thread MarcRic
Hi Jan, I'm supposing you are a newbie just like me. So, answering your question on a -- Ruby on Rails TALK group -- Last year I give a try putting some simple applications there, and was unable to get my apps. from git also. It was heroku/garden at that time, and there was a feature letting u

[Rails] Re: Heroku

2009-09-26 Thread Marnen Laibow-Koser
Steve Ross wrote: > On Sep 26, 2009, at 3:56 AM, Nicolai Constantin Reuschling wrote: > >> >> So you are really asking the Rails mailing list for help with a tool >> interfacing with a service provider? >> >> Nicolai > > I think the OP asked a fair question. People ask about deploying on > Dream

[Rails] Re: Heroku

2009-09-26 Thread s.ross
On Sep 26, 2009, at 3:56 AM, Nicolai Constantin Reuschling wrote: > > So you are really asking the Rails mailing list for help with a tool > interfacing with a service provider? > > Nicolai I think the OP asked a fair question. People ask about deploying on Dreamhost or [insert host name here

[Rails] Re: Heroku

2009-09-26 Thread Conrad Taylor
Hi Jan, I would recommend speaking with your account representatives or the Heroku support because there may be configuration issues with your account. Good luck, -Conrad On Sat, Sep 26, 2009 at 3:50 AM, Jan Kadera wrote: > Hi, > have anyone some experience with Heroku? > I have an account the

[Rails] Re: Heroku

2009-09-26 Thread Nicolai Constantin Reuschling
So you are really asking the Rails mailing list for help with a tool interfacing with a service provider? Nicolai --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, s

[Rails] Re: heroku gem and two different heroku accounts

2009-09-11 Thread DyingToLearn
The authentication info is stored in: ~/.heroku/credentials Paul Anton Mislavsky wrote: > >> 2) how to treat my ubuntu to default for the heroku.com? > > > > I'm sorry, I don't understand what you are asking. Please post and > > clarify. > > > > Paul Cortens > > http://www.cebuya.com > I meant

[Rails] Re: heroku gem and two different heroku accounts

2009-09-11 Thread Anton Mislavsky
>> 2) how to treat my ubuntu to default for the heroku.com? > > I'm sorry, I don't understand what you are asking. Please post and > clarify. > > Paul Cortens > http://www.cebuya.com I meant how to reset email(login) and change it to another. You can see it by the command $heroku keys -- Posted

[Rails] Re: heroku gem and two different heroku accounts

2009-09-11 Thread Anton Mislavsky
thank u -- 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 post to this group, send email to rubyonrails-talk@googlegroups.com To unsubscribe fr

[Rails] Re: heroku gem and two different heroku accounts

2009-09-11 Thread DyingToLearn
Anton Mislavsky wrote: > Heroku support works so slowly I want to ask community. > 1)I have a problem with switching between my two heroku accounts on the > same laptop. All of the commands execute from one of these, but I want > to execute it from another. Howto switch user to another heroku acco

  1   2   >