Sha256: 266ff88fd90bc06cb5f536009e2379c6095f44c3cd14a510c7357865e09c65ff

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.12 Rakefile