Sha256: acb4fe13ce46f1e73683c9706613a5b7d1bb5a4bf975e540f86af84ec820af67
Contents?: true
Size: 376 Bytes
Versions: 1
Compression:
Stored size: 376 Bytes
Contents
require 'bundler/gem_tasks' require 'rspec/core' require 'rspec/core/rake_task' task default: [:build] desc 'Installs the ruby gem' task :build do exec("gem build genevalidatorapp.gemspec && gem install ./genevalidatorapp-#{GeneValidatorApp::VERSION}.gem") end task test: :spec RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
genevalidatorapp-1.4.13 | Rakefile |