Sha256: 8bc27887cae7d58ff44ba6f704e11555a29fbf06f8b780968f6ef9a19e04fd43

Contents?: true

Size: 513 Bytes

Versions: 3

Compression:

Stored size: 513 Bytes

Contents

begin
  require 'bundler/gem_tasks'
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
  task default: :spec
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

begin
  require 'rubocop/rake_task'
  RuboCop::RakeTask.new
  namespace :rubocop do
    desc "Run 'rubocop --auto-gen-config'"
    task :todo do
      sh 'rubocop --auto-gen-config'
    end
  end
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
no_proxy_fix-0.1.2 Rakefile
no_proxy_fix-0.1.1 Rakefile
no_proxy_fix-0.1.0 Rakefile