Sha256: 4b09d69cff12696ebc3523eab177bf64625dc6a9320d8bc50c346bab20dfc629
Contents?: true
Size: 278 Bytes
Versions: 5
Compression:
Stored size: 278 Bytes
Contents
# encoding: UTF-8 require "bundler" Bundler::GemHelper.install_tasks require 'rake/testtask' desc 'Default: run unit tests.' task :default => :test Rake::TestTask.new(:test) do |t| t.libs << 'lib' t.libs << 'test' t.pattern = 'test/**/*_test.rb' t.verbose = true end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
bitmask_attributes-0.2.3 | Rakefile |
bitmask_attributes-0.2.2 | Rakefile |
bitmask_attributes-0.2.1 | Rakefile |
bitmask_attributes-0.1.1 | Rakefile |
bitmask_attributes-0.1.0 | Rakefile |