Sha256: c1b803982d979b9edff0c6b0d2daf42cb99f7b66cbf1ebb623797e2e1234d593
Contents?: true
Size: 475 Bytes
Versions: 5
Compression:
Stored size: 475 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) gem_helper = Bundler::GemHelper.new desc "Create tag #{gem_helper.send(:version_tag)}" task :tag do gem_helper.send(:tag_version) unless gem_helper.send(:already_tagged?) end task default: :spec namespace :spec do desc 'Run RSpec with Coveralls' task :with_coveralls do ENV['COVERALLS'] = 'true' Rake::Task['spec'].execute end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
space2underscore-0.5.3 | Rakefile |
space2underscore-0.5.2 | Rakefile |
space2underscore-0.5.1 | Rakefile |
space2underscore-0.5.0 | Rakefile |
space2underscore-0.4.3 | Rakefile |