Sha256: c8c8aef924b929195b320996e9d4fa823435989ef38e5f461e838809c9c64bc0
Contents?: true
Size: 373 Bytes
Versions: 5
Compression:
Stored size: 373 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rake/testtask' Rake::TestTask.new do |t| t.libs = %w[lib test] t.test_files = Dir.glob('test/**/*_spec.rb').sort t.verbose = true end task default: [:test] task spec: [:test] desc 'Open an irb session preloaded with this library' task :console do sh 'irb -rubygems -I lib -r r7_insight.rb' end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
r7insight-3.0.4 | Rakefile |
r7insight-3.0.3 | Rakefile |
r7insight-3.0.2 | Rakefile |
r7insight-3.0.1 | Rakefile |
r7insight-3.0.0 | Rakefile |