dry-container/Rakefile

16 lines
318 B
Ruby
Raw Normal View History

2015-06-09 22:56:49 +00:00
#!/usr/bin/env rake
# frozen_string_literal: true
2020-05-30 09:09:29 +00:00
require "rspec/core/rake_task"
2015-06-09 22:56:49 +00:00
task default: :spec
2020-05-30 09:09:29 +00:00
desc "Run all specs in spec directory"
2015-06-09 22:56:49 +00:00
RSpec::Core::RakeTask.new(:spec)
2022-07-09 08:38:55 +00:00
desc "Run specs with dry/configurable loaded"
task "spec:configurable" do
ENV["DRY_CONFIGURABLE"] = "true"
Rake::Task["spec"].invoke
end