Sha256: f35f4383781b098b92b11f76268e3f56f8709833b8684ec5f7db4f31cbc64657
Contents?: true
Size: 563 Bytes
Versions: 7
Compression:
Stored size: 563 Bytes
Contents
require 'bundler/gem_tasks' require 'rake/testtask' Rake::TestTask.new(:spec) do |t| t.libs << 'spec' t.pattern = 'spec/**/*_spec.rb' t.verbose = false t.warning = false t.loader = nil if ENV['TEST'] ENV['TEST'], ENV['LINE'] = ENV['TEST'].split(':') if ENV['TEST'] && !ENV['LINE'] t.options = '' t.options << "--name=/#{ENV['NAME']}/ " if ENV['NAME'] t.options << "-l #{ENV['LINE']} " if ENV['LINE'] && ENV['TEST'] end task default: :spec desc 'Pry console' task :console do require 'rasti-web' require 'pry' ARGV.clear Pry.start end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
rasti-web-1.1.0 | Rakefile |
rasti-web-1.0.0 | Rakefile |
rasti-web-0.2.3 | Rakefile |
rasti-web-0.2.2 | Rakefile |
rasti-web-0.2.1 | Rakefile |
rasti-web-0.2.0 | Rakefile |
rasti-web-0.1.1 | Rakefile |