This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="s-content pl-20 fs--M"> | |
<div class="node-toolbar"> | |
<div class="u-inline"> | |
<div> | |
<a href="/spaces/abstraction/documents" class="breadcrumb-path">root</a> | |
</div> | |
<div> | |
<div class="breadcrumb-separator">/</div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="node-toolbar"> | |
<div class="u-inline"> | |
<div> | |
<a href="/spaces/abstraction/documents" class="breadcrumb-path">Root</a> | |
</div> | |
<div> | |
<div class="breadcrumb-separator">/</div> | |
</div> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="grid--4"> | |
<div class="grid-cell"> | |
<a class="display-block pa-xl bw-1 bs-solid bc-gray--4 ta-center" href="#"> | |
<span class="display-block fs-xl" aria-hidden="true" data-icon=""></span> | |
<span class="display-block fs-xs fw-6">Connector</span> | |
</a> | |
</div> | |
<div class="grid-cell"> | |
<a class="display-block pa-xl bw-1 bs-solid bc-gray--4 ta-center" href="#"> | |
<span class="display-block fs-xl" aria-hidden="true" data-icon=""></span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="bodyCopy--xs"> | |
<p>Manual description</p> | |
<p>Manual description</p> | |
<p>Manual description</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Colms-MacBook-Air:breakout colmtuite$ git status | |
# On branch colm-complete-framework | |
# Changes to be committed: | |
# | |
# new file: app/assets/images/portfolio-manager/connected-overview/connectors.png | |
# new file: app/assets/images/portfolio-manager/connected-overview/dashboard.png | |
# new file: app/assets/images/portfolio-manager/connected-overview/milestones.png | |
# new file: app/assets/images/portfolio-manager/connected-overview/most-active-spaces.png | |
# new file: app/assets/images/portfolio-manager/connected-overview/recent-added-spaces.png | |
# modified: app/assets/javascripts/code.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
# Needed by heroku | |
ruby '2.2.0' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.1' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 5.0' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#view | |
<%= link_to "Delete", comment, method: :delete, data: { confirm: "Really?", remote: true } %> | |
#controller | |
def destroy | |
@comment = Comment.find(params[:id]) | |
#@comment.destroy | |
respond_to do |format| | |
format.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Started DELETE "/comments/4" for 127.0.0.1 at 2015-05-02 19:30:44 +0100 | |
Processing by CommentsController#destroy as JS | |
Parameters: {"id"=>"4"} | |
Comment Load (0.2ms) SELECT "comments".* FROM "comments" WHERE "comments"."id" = ? LIMIT 1 [["id", "4"]] | |
Rendered comments/destroy.js.erb (1.0ms) | |
Completed 500 Internal Server Error in 6ms | |
ActionView::Template::Error (undefined method `gsub' for 4:Fixnum): | |
1: var element = document.getElementById("<%=j @comment.id %>"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> Listening on localhost:3000, CTRL+C to stop | |
Exiting | |
/Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/eventmachine-1.0.5/lib/eventmachine.rb:526:in `start_tcp_server': no acceptor (port is in use or requires root privileges) (RuntimeError) | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/eventmachine-1.0.5/lib/eventmachine.rb:526:in `start_server' | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/thin-1.5.1/lib/thin/backends/tcp_server.rb:16:in `connect' | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/thin-1.5.1/lib/thin/backends/base.rb:55:in `block in start' | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/eventmachine-1.0.5/lib/eventmachine.rb:187:in `call' | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/eventmachine-1.0.5/lib/eventmachine.rb:187:in `run_machine' | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/eventmachine-1.0.5/lib/eventmachine.rb:187:in `run' | |
from /Users/colmtuite/.rvm/gems/ruby-2.2.0/gems/thin-1.5.1/lib/thin/backends/base.rb:63:in `start' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello word |