From fffd67059a1424b258ee6405c8eb5c18fce0326e Mon Sep 17 00:00:00 2001 From: Ginty Date: Wed, 26 May 2010 22:39:12 -0500 Subject: [PATCH] Updated description, first v1.0 release --- README.rdoc | 2 +- cranky.gemspec | 4 ++-- lib/cranky.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rdoc b/README.rdoc index 491a578..44964df 100644 --- a/README.rdoc +++ b/README.rdoc @@ -2,7 +2,7 @@ Cranky is a fixtures replacement inspired by the excellent Factory Girl, but simpler and with less magic going on. -In short use this if you want to naturally create factory methods that you feel 100% in control of and without a block in sight. +In short use this if you want to quickly and naturally create factory methods that you feel 100% in control of. == Install diff --git a/cranky.gemspec b/cranky.gemspec index 2b9aace..40093e9 100644 --- a/cranky.gemspec +++ b/cranky.gemspec @@ -4,8 +4,8 @@ Gem::Specification.new do |gem| gem.name = 'cranky' gem.version = Cranky::VERSION - gem.summary = "A simple yet powerful test factory framework." - gem.description = "A simple yet powerful test factory framework that makes it very easy to define your own factories without a block in sight." + gem.summary = "A very light yet powerful test factory framework." + gem.description = "A very light yet powerful test factory framework with an extremely clean syntax that makes it very easy to define your factories." gem.author = "Stephen McGinty" gem.email = "ginty@hyperdecade.com" diff --git a/lib/cranky.rb b/lib/cranky.rb index 61c952c..3dd9fe2 100644 --- a/lib/cranky.rb +++ b/lib/cranky.rb @@ -1,6 +1,6 @@ class Cranky - VERSION = "0.0.5" + VERSION = "0.1.0" # Dir.glob("#{File.expand_path(File.dirname(__FILE__))}/*.rb").each do |file| # require file