Sha256: 48cf2ec2073cc28334e1332fef365333ce84426143851000b5f3e6d9a626d105

Contents?: true

Size: 543 Bytes

Versions: 29

Compression:

Stored size: 543 Bytes

Contents

require "bundler/gem_tasks"
require 'rake/testtask'

$LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
require "measured/rails/version"

task default: :test

desc 'Run the test stuite'
Rake::TestTask.new do |t|
  t.libs << "test"
  t.libs << "lib/**/*"
  t.test_files = FileList['test/**/*_test.rb']
  t.verbose = true
end

task tag: :build do
  system "git commit -m'Released version #{ Measured::VERSION }' --allow-empty"
  system "git tag -a v#{ Measured::VERSION } -m 'Tagging #{ Measured::VERSION }'"
  system "git push --tags"
end

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
measured-rails-1.1.0 Rakefile
measured-rails-0.0.10 Rakefile
measured-rails-0.0.9 Rakefile
measured-rails-0.0.8 Rakefile
measured-rails-0.0.7 Rakefile
measured-rails-0.0.6 Rakefile
measured-rails-0.0.5 Rakefile
measured-rails-0.0.3 Rakefile
measured-rails-0.0.1 Rakefile