ruby on rails - git push heroku master - Fetching repository, done. Everything up-to-date -


note: using ios mavericks. have been using railsapp project tutorials.

it says working ok:

macbook-air:xxx zachmachuca$ git push heroku master fetching repository, done. up-to-date 

but when enter $ heroku open page shows me:

the page looking doesn't exist. may have mistyped address or page may have moved.

here gemfile:

source 'https://rubygems.org'   # bundle edge rails instead: gem 'rails', github: 'rails/rails'  gem 'rails', '4.1.5'  # use sqlite3 database active record group :development,:test gem 'sqlite3' end  group :production gem 'pg' end  # use scss stylesheets gem 'sass-rails', '~> 4.0.3'  # use uglifier compressor javascript assets gem 'uglifier', '>= 1.3.0'  # use coffeescript .js.coffee assets , views gem 'coffee-rails', '~> 4.0.0'  # see https://github.com/sstephenson/execjs#readme more supported runtimes # gem 'therubyracer',  platforms: :ruby  # use jquery javascript library gem 'jquery-rails'  # turbolinks makes following links in web application faster. read more:   https://github.com/rails/turbolinks gem 'turbolinks'  # build json apis ease. read more: https://github.com/rails/jbuilder gem 'jbuilder', '~> 2.0'  # bundle exec rake doc:rails generates api under doc/api. gem 'sdoc', '~> 0.4.0',          group: :doc  # spring speeds development keeping application running in background. read  more: https://github.com/rails/spring gem 'spring',        group: :development  # use activemodel has_secure_password # gem 'bcrypt', '~> 3.1.7'  # use unicorn app server # gem 'unicorn'  # use capistrano deployment # gem 'capistrano-rails', group: :development  # use debugger # gem 'debugger', group: [:development, :test] 

there no clear error message can find.


Comments

Popular posts from this blog

java - How to specify maven bin in eclipse maven plugin? -

single sign on - Logging into Plone site with credentials passed through HTTP -

php - Why does AJAX not process login form? -