From be0f443157ef7bfdcfc64f6fe781fc80cdca4c86 Mon Sep 17 00:00:00 2001 From: Tim Harper Date: Sat, 21 Jan 2012 11:31:20 -0700 Subject: [PATCH] Release 1.0.0rc0 --- Gemfile.lock | 4 ++-- README.rdoc | 12 +++++++----- spork.gemspec | 4 +--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e02e24d..05e4fed 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,12 +1,12 @@ PATH remote: . specs: - spork (0.9.0) + spork (1.0.0rc0) PATH remote: . specs: - spork (0.9.0) + spork (1.0.0rc0) GEM remote: http://rubygems.org/ diff --git a/README.rdoc b/README.rdoc index 6eec127..bdf360b 100644 --- a/README.rdoc +++ b/README.rdoc @@ -26,15 +26,17 @@ See https://github.com/sporkrb/spork/wiki/Supported-Application-Frameworks for a == INSTALL: -=== rubygems: +NOTICE: - [sudo] gem install spork +* Rails support (and other app frameworks) have been extracted. If using spork with rails, you'll want to use spork-rails gem, https://github.com/sporkrb/spork-rails. -=== bundler: +* If you wish to use the stable verson of spork 0.9, refer to https://github.com/sporkrb/spork/tree/v0.9.x + +=== Bundler: Add to your Gemfile: - gem 'spork', '~> 0.9.0' + gem 'spork', '~> 1.0rc' == Usage @@ -53,7 +55,7 @@ TestUnit: (Install the spork-testunit gem) spork test_unit --bootstrap -If you don't specifiy a test framework, spork will find one and pick it. +(If you don't specifiy a test framework, spork will find one and pick it.) Follow the instructions. diff --git a/spork.gemspec b/spork.gemspec index 4c0602d..673b55a 100644 --- a/spork.gemspec +++ b/spork.gemspec @@ -1,7 +1,7 @@ require 'date' Gem::Specification.new do |s| s.name = %q{spork} - s.version = "0.9.0" + s.version = "1.0.0rc0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Tim Harper", "Donald Parish"] @@ -17,8 +17,6 @@ Gem::Specification.new do |s| s.homepage = %q{http://github.com/sporkrb/spork} s.rdoc_options = ["--main", "README.rdoc"] s.require_paths = ["lib"] - s.rubyforge_project = %q{spork} - s.rubygems_version = %q{1.3.5} s.summary = %q{spork} s.test_files = Dir["features/**/*"] + Dir["spec/**/*"]