diff --git a/Manifest b/Manifest index e3b4130..6740bae 100644 --- a/Manifest +++ b/Manifest @@ -1,4 +1,5 @@ +Manifest README.md Rakefile lib/slugtastic.rb -Manifest +slugtastic.gemspec diff --git a/Rakefile b/Rakefile index 40cd1cd..219a47a 100644 --- a/Rakefile +++ b/Rakefile @@ -2,8 +2,8 @@ require 'rubygems' require 'rake' require 'echoe' -Echoe.new('slugtastic', '0.1.0') do |p| - p.description = "Generate a slug string from another field." +Echoe.new('slugtastic', '0.1.1') do |p| + p.description = "A simple slug string generator for ActiveRecord. Will populate a slug attribute from another attribute." p.url = "http://github.com/danbee/slugtastic" p.author = "Dan Barber" p.email = "danbee@gmail.com" diff --git a/slugtastic.gemspec b/slugtastic.gemspec index 96ad648..3a30644 100644 --- a/slugtastic.gemspec +++ b/slugtastic.gemspec @@ -2,12 +2,12 @@ Gem::Specification.new do |s| s.name = %q{slugtastic} - s.version = "0.1.0" + s.version = "0.1.1" s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version= s.authors = [%q{Dan Barber}] s.date = %q{2011-10-04} - s.description = %q{Generate a slug string from another field.} + s.description = %q{A simple slug string generator for ActiveRecord. Will populate a slug attribute from another attribute.} s.email = %q{danbee@gmail.com} s.extra_rdoc_files = [%q{README.md}, %q{lib/slugtastic.rb}] s.files = [%q{README.md}, %q{Rakefile}, %q{lib/slugtastic.rb}, %q{Manifest}, %q{slugtastic.gemspec}] @@ -16,7 +16,7 @@ Gem::Specification.new do |s| s.require_paths = [%q{lib}] s.rubyforge_project = %q{slugtastic} s.rubygems_version = %q{1.8.6} - s.summary = %q{Generate a slug string from another field.} + s.summary = %q{A simple slug string generator for ActiveRecord. Will populate a slug attribute from another attribute.} if s.respond_to? :specification_version then s.specification_version = 3