Sha256: d4620088c5ab5709be5611528261a70b67fbfc04da06a8235223c6f8358e4e5c

Contents?: true

Size: 426 Bytes

Versions: 36

Compression:

Stored size: 426 Bytes

Contents

require "rubygems"
require "bundler"

if Gem::Version.new(Bundler::VERSION) > Gem::Version.new("1.0.12")
  require "bundler/gem_tasks"
end

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

36 entries across 36 versions & 1 rubygems

Version Path
mothership-0.5.1 Rakefile
mothership-0.5.0 Rakefile
mothership-0.4.0 Rakefile
mothership-0.3.5 Rakefile
mothership-0.3.4 Rakefile
mothership-0.3.3 Rakefile
mothership-0.3.2 Rakefile
mothership-0.3.1 Rakefile
mothership-0.3.0 Rakefile
mothership-0.2.5 Rakefile
mothership-0.2.4 Rakefile
mothership-0.2.3 Rakefile
mothership-0.2.2 Rakefile
mothership-0.2.1 Rakefile
mothership-0.2.0 Rakefile
mothership-0.1.5 Rakefile
mothership-0.1.4 Rakefile
mothership-0.1.3 Rakefile
mothership-0.1.2 Rakefile
mothership-0.1.1 Rakefile