Sha256: 67e27da5bf8c952fc72f8c38a0a85f6977b8ad973d6f1cf1822b2849fd8185d7
Contents?: true
Size: 330 Bytes
Versions: 6
Compression:
Stored size: 330 Bytes
Contents
require 'rake' require "bundler/gem_tasks" task :default => "spec" desc "Run specs" task "spec" => ["bundler:install", "test:spec"] namespace "bundler" do desc "Install gems" task "install" do sh("bundle install") end end namespace "test" do task "spec" do |t| sh("cd spec && bundle exec rake spec") end end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
cfoundry-0.2.2 | Rakefile |
cfoundry-0.2.1 | Rakefile |
cfoundry-0.2.0 | Rakefile |
cfoundry-0.1.2 | Rakefile |
cfoundry-0.1.1 | Rakefile |
cfoundry-0.1.0 | Rakefile |