Skip to content

Commit

Permalink
Remove setup tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
sr committed Apr 5, 2009
1 parent 8791071 commit bfe630a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 20 deletions.
7 changes: 5 additions & 2 deletions README.markdown
Expand Up @@ -18,8 +18,11 @@ Try it!
Run the test suite
------------------

Install the test dependencies with `rake test:setup` and
run the test suite with `rake test`.
1. Ensure you have `gems.github.com` in your gem sources:
`gem sources -a http://gems.github.com`
2. Install the runtime and development dependencies:
`gem build integrity.gemspec && gem install *.gem --development`.
3. Run the test suite: `rake test`

Thanks
------
Expand Down
18 changes: 0 additions & 18 deletions Rakefile
Expand Up @@ -11,15 +11,6 @@ end
desc "Default: run all tests"
task :default => :test

desc "Install Integrity dependencies"
task :setup do
puts "NOTE: assuming you have gems.github.com in your gem sources"

system "gem install " +
spec.dependencies.select { |dep| dep.type == :runtime }.
collect(&:name).join(" ")
end

desc "Launch Integrity real quick"
task :launch do
ruby "bin/integrity launch"
Expand All @@ -35,15 +26,6 @@ namespace :test do
Rake::TestTask.new(:acceptance) do |t|
t.test_files = FileList["test/acceptance/*_test.rb"]
end

desc "Install tests dependencies"
task :setup do
puts "NOTE: assuming you have gems.github.com in your gem sources"

system "gem install " +
spec.dependencies.select { |dep| dep.type == :development }.
collect(&:name).join(" ")
end
end

begin
Expand Down

0 comments on commit bfe630a

Please sign in to comment.