Sha256: 0a01eaa12afcf065648299b3e017184eb6d9f5653362a7260f5334e360448d7e
Contents?: true
Size: 340 Bytes
Versions: 2
Compression:
Stored size: 340 Bytes
Contents
require 'bundler' require 'rspec/core/rake_task' desc "Run Rspec unit tests" RSpec::Core::RakeTask.new(:spec) do |t| t.pattern = "spec/keen/**/*_spec.rb" end desc "Run Rspec integration tests" RSpec::Core::RakeTask.new(:integration) do |t| t.pattern = "spec/integration/**/*_spec.rb" end task :default => :spec task :test => [:spec]
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
keen-0.4.2 | Rakefile |
keen-0.4.1 | Rakefile |