From 2a4a77a5c84c9a7ab162fb11cad1a8ce974e7948 Mon Sep 17 00:00:00 2001 From: winton Date: Mon, 10 Jan 2011 00:05:44 -0800 Subject: [PATCH] Removing development dependencies (not worth the trouble), upgrading rack-test, spec Rakefile uses active_wrapper-solo --- README.md | 23 +---------------------- config/gemsets.yml | 2 +- config/gemspec.yml | 7 +------ spec/Rakefile | 2 +- 4 files changed, 4 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index 815ce01..c997fe3 100644 --- a/README.md +++ b/README.md @@ -116,25 +116,4 @@ This copies all records with non-null deleted_at values to the arch Running specs ------------- -Contributions are always welcome. - -
-gem install acts_as_archive --development
-spec/run
-
- -spec/run essentially runs the following: - -
-ACTIVERECORD=3 spec spec
-ACTIVERECORD=2 spec spec/acts_as_archive_spec.rb
-RAILS=2 spec spec/acts_as_archive_spec.rb
-RAILS=3 spec spec/acts_as_archive_spec.rb
-SINATRA=1 spec spec/acts_as_archive_spec.rb
-
- -If you want to hack on the supporting gems ([mover](http://github.com/winton/mover) and [also_migrate](http://github.com/winton/also_migrate)), vendor them with the following command: - -
-externals un
-
\ No newline at end of file +There is a [wiki entry](https://github.com/winton/acts_as_archive/wiki/Running-Specs) that describes the development setup in-depth. \ No newline at end of file diff --git a/config/gemsets.yml b/config/gemsets.yml index 72b26a2..e8b800c 100644 --- a/config/gemsets.yml +++ b/config/gemsets.yml @@ -7,4 +7,4 @@ acts_as_archive: externals: =1.0.2 framework_fixture: =0.1.3 mover: =0.3.6 - rack-test: =0.5.6 \ No newline at end of file + rack-test: =0.5.7 \ No newline at end of file diff --git a/config/gemspec.yml b/config/gemspec.yml index fb21de2..fb4c01e 100644 --- a/config/gemspec.yml +++ b/config/gemspec.yml @@ -9,9 +9,4 @@ description: Don't delete your records, move them to a different table. Like act dependencies: - also_migrate - mover -development_dependencies: - - active_wrapper-solo - - externals - - framework_fixture - - rake - - rspec \ No newline at end of file +development_dependencies: nil \ No newline at end of file diff --git a/spec/Rakefile b/spec/Rakefile index ab950f2..44284fb 100644 --- a/spec/Rakefile +++ b/spec/Rakefile @@ -1,5 +1,5 @@ require File.expand_path(File.dirname(__FILE__) + '/../lib/acts_as_archive/gems') -ActsAsArchive::Gems.activate :active_wrapper +ActsAsArchive::Gems.activate 'active_wrapper-solo' require 'active_wrapper/tasks'