Sha256: 2499110e04b1ed6596d116fd3ecdc72afa8efcce179ba6212aca7f328f7b4cc4

Contents?: true

Size: 298 Bytes

Versions: 6

Compression:

Stored size: 298 Bytes

Contents

require "bundler/gem_tasks"
require 'rspec'
require 'rspec/core/rake_task'

desc 'Default: run specs.'
task :default => :spec

desc "Run specs"
RSpec::Core::RakeTask.new do |t|
  t.pattern = "./spec/**/*_spec.rb" # don't need this, it's default.
  # Put spec opts in a file named .rspec in root
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
json_schema_builder-0.0.6 Rakefile
json_schema_builder-0.0.5 Rakefile
json_schema_builder-0.0.4 Rakefile
json_schema_builder-0.0.3 Rakefile
json_schema_builder-0.0.2 Rakefile
json_schema_builder-0.0.1 Rakefile