Sha256: 78eb20a42821ec79b5e605ca1e81a90e6fa7dcf0f90f8796befc8b54630becbd
Contents?: true
Size: 467 Bytes
Versions: 2
Compression:
Stored size: 467 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" begin Bundler.setup rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts 'run `bundle install` to install missing gems' exit e.status_code end require 'rake' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.rspec_opts = '-Ispec' end RSpec::Core::RakeTask.new(:rcov) do |spec| spec.rspec_opts = '-Ispec' spec.rcov = true end task :default => :spec
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rack-large-uploads-0.0.2 | Rakefile |
rack-large-uploads-0.0.1 | Rakefile |