Sha256: f28c86e94de83733d0bcd783a0258725efc763ec241fa9f8a0125b7a01a7aa94

Contents?: true

Size: 456 Bytes

Versions: 6

Compression:

Stored size: 456 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

namespace :spec do

  desc "Run production configuration test"
  task :config do
    ENV['RSPEC_ENV'] = 'production'
    sh %{rspec -f d --color --fail-fast spec/00_configuration_spec.rb}
  end

  namespace :test do

    desc "Run configuration test in `test` environment"
    task :config do
      ENV['RSPEC_ENV'] = 'test'
      sh %{rspec -f d --color spec/00_configuration_spec.rb}
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-nagios-0.5.0 Rakefile
ruby-nagios-0.4.0 Rakefile
ruby-nagios-0.3.0 Rakefile
ruby-nagios-0.2.2 Rakefile
ruby-nagios-0.2.0 Rakefile
ruby-nagios-0.1.0 Rakefile