This file has been truncated, but you can view the full file.
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
abaxial > dorsal | |
dorsal > abaxial | |
adaxial > ventral | |
ventral > adaxial | |
abducent > sixth_cranial_nerve | |
abducting > abducent | |
adducent > adducting | |
adductive > adducting | |
adducting > adductive | |
emergent > emerging |
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
<% comments.each do |comment| %> | |
<div class="comments-show"> | |
<div class="comment"> | |
<p><%= comment.user.full_name %> <em>(<%= timeago_tag comment.created_at, limit: 5.years.ago %>)</em></p> | |
<p><%= comment.body %></p> | |
<div class="comment-nav"><span class="comment-reply">reply</span></div> | |
<div class="reply-form"> | |
<%= form_for @new_comment do |f| %> | |
<%= f.hidden_field :commentable_id, value: @new_comment.commentable_id %> | |
<%= f.hidden_field :commentable_type, value: @new_comment.commentable_type %> |
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
run 'rm public/index.html' | |
# RVM | |
file '.rvmrc', "rvm 1.9.2@#{app_name} --create" | |
# Setup database | |
gsub_file 'config/database.yml', /username: (.*)/, 'host: localhost' | |
gsub_file 'config/database.yml', /password:/, '' | |
# Gems |