startups 0.0.2.1 → 0.0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -25,4 +25,8 @@
25
25
 
26
26
  * Cleaned up and streamlined some things.
27
27
 
28
+ 0.0.2.2 (Oct 19th, 2009)
29
+
30
+ * Bugfix
31
+
28
32
 
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('startups', '0.0.2.1') do |p|
5
+ Echoe.new('startups', '0.0.2.2') do |p|
6
6
  p.project = "startups"
7
7
  p.description = "A collection of Rails \"startups\" for features such as a standard layout, navigation and forms with customizable error handling."
8
8
  p.url = "http://rubyforge.org/projects/startups"
@@ -1,7 +1,7 @@
1
1
  <div id="<%= (name.to_s == 'top') ? 'nav' : "#{name}_nav" %>">
2
2
  <ul>
3
3
  <%% layout_nav_items(:<%= name %>).each do |nav_item| %>
4
- <li><%= link_to_nav_item(nav_item) %></li>
4
+ <li><%%= link_to_nav_item(nav_item) %></li>
5
5
  <%% end %>
6
6
  </ul>
7
7
  </div>
data/startups.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{startups}
5
- s.version = "0.0.2.1"
5
+ s.version = "0.0.2.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Ryan Owens"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: startups
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.1
4
+ version: 0.0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Owens