forked from SolveMedia/SolveMedia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (24 loc) · 881 Bytes
/
Copy pathRakefile
File metadata and controls
26 lines (24 loc) · 881 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
require 'rake'
require 'rake/rdoctask'
desc 'Generate documentation for the solvemedia plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'SolveMedia'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "solvemedia"
gem.summary = "Simplifies the use of Solve Media puzzles within rails applications"
gem.description = "Simplifies the use of Solve Media puzzles within rails applications"
gem.email = "plugin@solvemedia.com"
gem.homepage = "http://portal.solvemedia.com/portal/help/pub/ruby"
gem.authors = ["Eddie Siegel"]
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end