other than my root page, every page is not rendering css/javacript/etc from bootstrap, so I looked at the source code, and all that is there is the html. So the and tags are not rending. Anyone know the possible culprit to this?
Enter code heresource ‘https://rubygems.org’ ruby ‘2.1.2’
gem ‘rails’, ‘4.1.4’ gem ‘unicorn’ gem ‘puma’ gem ‘pg’
gem ‘bootstrap-sass’, ‘~> 3.2.0’
gem ‘sass-rails’, ‘~> 4.0.3’ gem ‘autoprefixer-rails’ gem ‘sprockets’ gem ‘uglifier’, ‘>= 1.3.0’ gem ‘coffee-rails’, ‘~> 4.0.0’ gem ‘jquery-rails’ gem ‘turbolinks’ gem ‘jbuilder’, ‘~> 2.0’
gem ‘activeadmin’, github: ‘activeadmin’ gem ‘devise’
gem ‘sdoc’, ‘~> 0.4.0’, group: :doc gem ‘spring’, group: :development
group :development do gem ‘faker’ gem ‘hirb’ gem ‘pry-rails’ end
group :test do gem ‘capybara’ gem ‘launchy’ end
group :production do gem ‘rails_12factor’ end
Use ActiveModel has_secure_password
gem ‘bcrypt’, ‘~> 3.1.7’
Use unicorn as the app server
gem ‘unicorn’
Use Capistrano for deployment
gem ‘capistrano-rails’, group: :development
Use debugger
gem ‘debugger’, group: [:development, :test]
…
``
// // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details // about supported directives. // //= require jquery //= require jquery_ujs //= require bootstrap-sprockets //= require turbolinks //= require_tree .Enter code here…
``
*= require_self *= require_tree . */
@import “bootstrap-sprockets”; @import “bootstrap”;
body { padding-top: 1em; } Enter code here…
``