Sha256: 7a5cdb14a5962f38bf57d37bbc322325ca56dce23571f22bda00d27775dad832
Contents?: true
Size: 358 Bytes
Versions: 6
Compression:
Stored size: 358 Bytes
Contents
require "bundler/gem_tasks" require "rake/testtask" task :default => :test Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList['test/**/*_test.rb'] end task :gemspec do @gemspec ||= eval(File.read(Dir["*.gemspec"].first)) end desc "Validate the gemspec" task :validate => :gemspec do @gemspec.validate end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
git-semaphore-2.1.0 | Rakefile |
git-semaphore-2.0.1 | Rakefile |
git-semaphore-2.0.0 | Rakefile |
git-semaphore-1.2.0 | Rakefile |
git-semaphore-1.1.0 | Rakefile |
git-semaphore-1.0.0 | Rakefile |