Sha256: 612402d2d60196962d869eeb80a7ad963460323410ebb964bce57179d534de5b
Contents?: true
Size: 374 Bytes
Versions: 6
Compression:
Stored size: 374 Bytes
Contents
require "bundler/gem_tasks" require "rake/testtask" Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList['test/**/*_test.rb'] end task(default: :test) if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.4.0') task :rubocop do require 'rubocop/rake_task' RuboCop::RakeTask.new end task(default: :rubocop) end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
graphql-batch-0.6.0 | Rakefile |
graphql-batch-0.5.4 | Rakefile |
graphql-batch-0.5.3 | Rakefile |
graphql-batch-0.5.2 | Rakefile |
graphql-batch-0.5.1 | Rakefile |
graphql-batch-0.5.0 | Rakefile |