-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (24 loc) · 713 Bytes
/
Rakefile
File metadata and controls
27 lines (24 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "remodel"
gem.summary = "a minimal ORM (object-redis-mapper)"
gem.description = "persist your objects to redis hashes"
gem.email = "tim@lossen.de"
gem.homepage = "http://github.com/tlossen/remodel"
gem.authors = ["Tim Lossen"]
gem.files.include('lib/**/*.rb')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
task :default => :test