forked from preston/railroady
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
47 lines (41 loc) · 1.7 KB
/
Rakefile
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "railroady"
gem.executables = "railroady"
gem.email = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']
gem.homepage = "http://github.com/preston/railroady"
gem.authors = ["Preston Lee", "Tobias Crawley", "Peter Hoeg", "Javier Smaldone"]
gem.summary = "Ruby on Rails 3 model and controller UML class diagram generator."
gem.description = "Ruby on Rails 3 model and controller UML class diagram generator. Originally based on the 'railroad' plugin and contributions of many others. (`sudo port install graphviz` before use!)"
gem.files = FileList["[A-Z]*", "{autotest,bin,lib,spec,tasks}/**/*", ".document"]
gem.extra_rdoc_files = FileList["*.rdoc"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
require 'rspec'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
# spec.libs << 'lib' << 'rspec'
spec.pattern = FileList['rspec/**/*_spec.rb']
end
RSpec::Core::RakeTask.new(:rcov) do |spec|
# spec.libs << 'lib' << 'rspec'
spec.pattern = 'rspec/**/*_spec.rb'
spec.rcov = true
end
task :default => :spec
require 'rake/rdoctask'
require 'railroady/version'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "railroady #{RailRoady::VERSION::STRING}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('CHANGELOG*')
rdoc.rdoc_files.include('AUTHORS*')
rdoc.rdoc_files.include('lib/**/*.rb')
end