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
A semi-static list of "handles" I'd like to hear on the Digital Continent podcast. | |
@simunza | |
@thebestofzambia | |
@YostKalasa |
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
<h1><%= yield :title %></h1> | |
<div class="plans"> | |
<%= link_to "Bronze", root_url, :id => "bronze" %> | |
</div><!-- /.plans --> |
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
<h1><%= yield :title %></h1> | |
<div class="plans"> | |
<%= render @plans %> | |
</div><!-- /.plans --> |
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
<%= link_to plan.name, root_url, :id => plan.name.downcase %> |
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 "Plan selection" do | |
it "selects the Bronze plan" do | |
visit plans_path | |
click_link "bronze" | |
end | |
end |
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
<h1><%= yield :title %></h1> | |
<div class="plans"> | |
<% @plans.each do |plan| %> | |
<%= link_to plan.name, root_url, :id => plan.name.downcase %> | |
<% end %> | |
</div><!-- /.plans --> |
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
http://bandcamp.com |
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
http://eventful.com/ | |
http://upcoming.yahoo.com/ |
OlderNewer