public
Description: The official repo is now at http://github.com/couchapp/couchapp
Homepage: http://wiki.github.com/couchapp/couchapp
Clone URL: git://github.com/jchris/couchapp.git
couchapp / Rakefile
100755 20 lines (16 sloc) 0.343 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rake'
 
begin
  require 'spec/rake/spectask'
rescue LoadError
  puts <<-EOS
To use rspec for testing you must install rspec gem:
gem install rspec
EOS
  exit(0)
end
 
desc "Run Ruby specs on the Python version"
task :python do
  system "ruby ruby/spec/couchapp_spec.rb -- python"
end
 
desc "Run the rspec"
task :default => :python