Skip to content

Commit

Permalink
Was still using gem verison of bootstrap, fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
John Schult committed Nov 17, 2013
1 parent 2a9655c commit a79d1e0
Show file tree
Hide file tree
Showing 8 changed files with 838 additions and 10 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'bootstrap-sass', '>= 3.0.0.0'
gem 'cancan'
gem 'devise'
gem 'devise_invitable'
Expand Down
3 changes: 0 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ GEM
erubis (>= 2.6.6)
binding_of_caller (0.7.2)
debug_inspector (>= 0.0.1)
bootstrap-sass (3.0.2.1)
sass (~> 3.2)
builder (3.1.4)
cancan (1.6.10)
celluloid (0.15.2)
Expand Down Expand Up @@ -227,7 +225,6 @@ PLATFORMS
DEPENDENCIES
better_errors
binding_of_caller
bootstrap-sass (>= 3.0.0.0)
cancan
coffee-rails (~> 4.0.0)
database_cleaner (= 1.0.1)
Expand Down
1 change: 0 additions & 1 deletion app/assets/javascripts/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require bootstrap
//= require_tree .
836 changes: 836 additions & 0 deletions app/assets/stylesheets/bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/assets/stylesheets/framework_and_overrides.css.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// import the CSS framework
@import "bootstrap";
// @import "bootstrap";

// override for the 'Home' navigation link
.navbar-brand {
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/_navigation.html.erb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<nav class="navbar navbar-default navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
Expand Down
1 change: 0 additions & 1 deletion app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<meta name="description" content="<%= content_for?(:description) ? yield(:description) : "Riseup" %>">
<!-- Latest compiled and minified CSS -->
<%= stylesheet_link_tag "application", :media => "all" %>
<%= stylesheet_link_tag "bootstrap.min", :media => "all" %>
<%= csrf_meta_tags %>
</head>
<body>
Expand Down
2 changes: 0 additions & 2 deletions config/environments/development.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@

config.action_mailer.default_url_options = { :host => 'riseupstories.herokuapp.com' }

config.action_mailer.default_url_options = { :host => 'riseupstories.herokuapp.com' }

config.action_mailer.smtp_settings = {
address: "smtp.sendgrid.net",
port: 25,
Expand Down

0 comments on commit a79d1e0

Please sign in to comment.