I have created a custom page for root and changed accordingly in routes.rb.I have removed the public/index.html file before using git but the app still looks for public/index.html file in heroku.The app works fine locally but the problem is while deploying in heroku.Please suggest some solutions?My Gemfile contains
source 'https://rubygems.org'
gem 'rails', '3.2.11'
group :development do
gem 'sqlite3', '1.3.5'
end
group :assets do
gem 'sass-rails','3.2.4'
gem 'coffee-rails', '3.2.2'
gem 'uglifier', '1.2.3'
end
gem 'jquery-rails'
gem 'thin'
and i am not using databases in my app.The controller just do some calculations on a json string.