This file contains 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
Warning: Permanently added the RSA host key for IP address '50.19.85.156' to the list of known hosts. | |
Counting objects: 3, done. | |
Delta compression using up to 4 threads. | |
Compressing objects: 100% (2/2), done. | |
Writing objects: 100% (2/2), 295 bytes, done. | |
Total 2 (delta 1), reused 0 (delta 0) | |
-----> Heroku receiving push | |
-----> Ruby/Rails app detected | |
-----> Using Ruby version: ruby-1.9.3 |
This file contains 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
require 'spec_helper' | |
describe "matching partner movies using autocomplete", :js => true do | |
include_context "site_navigation" | |
let!(:movie1) { Factory(:movie, :title => "Mov #1") } | |
let!(:movie2) { Factory(:movie, :title => "Mov #2") } | |
let(:movies) { [movie1, movie2] } | |
let!(:partner_movie1) { Factory(:partner_movie, :movie => movie1) } | |
let!(:partner_movie2) { Factory(:partner_movie, :movie => nil) } |
This file contains 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
%li{"data-role" => "list-divider", :role => "heading", "data-theme" => "b"} | |
%a | |
Order Name | |
%span.ui-li-count= order.ordered_time | |
%a{ "data-icon" => "star", "data-theme" => "c", "data-remote" => "true", "data-method" => :put, :href => "/submit"} Ready |
This file contains 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 id='here_you_see_capture_haml_still_output'> | |
<div class='chat_entry'> | |
<a href='{link}' title='{display_name}'> | |
<img src='{avatar_url}'> | |
</a> | |
<span class='msg'>{content}</span> | |
</div> | |
<div class='chat_error'>{message}</div> | |
<div class='chat_info'>{message}</div> | |
</div> |
This file contains 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#here_you_see_capture_haml_still_output | |
- chat_entry_template = capture_haml do | |
.chat_entry | |
%a{:href => "{link}", :title => "{display_name}"} | |
%img{:src => "{avatar_url}"} | |
%span.msg {content} | |
- chat_error_template = capture_haml do | |
.chat_error {message} |
NewerOlder