-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRakefile
More file actions
23 lines (18 loc) · 723 Bytes
/
Rakefile
File metadata and controls
23 lines (18 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require "jeweler"
require "rake/testtask"
task :default => [:test]
Rake::TestTask.new do |test|
test.pattern = "test/{unit,integration}/**/*_test.rb"
end
Jeweler::Tasks.new do |spec|
spec.name = "ruby-poker"
spec.summary = "Entity-relationship diagram for your Rails models."
spec.description = "Automatically generate an entity-relationship diagram (ERD) for your Rails models."
spec.authors = ["Roel van Dijk"]
spec.email = "r.vandijk@voormedia.com"
#spec.rubyforge_project = "ABC"
#spec.homepage = "http://ABC.rubyforge.org/"
spec.add_runtime_dependency "activesupport", "~> 3.0"
spec.add_runtime_dependency "state_machine", "~> 0.9.4"
spec.add_development_dependency "mocha", "~> 0.9.9"
end