-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
28 lines (26 loc) · 1.08 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
require 'rake'
require 'rake/rdoctask'
desc 'Generate documentation for the invision_bridge plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'InvisionBridge'
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 |s|
s.name = "invision_bridge"
s.summary = "Allows your Authlogic-based User model to authenticate using an IP.Board 3.x database."
s.email = "[email protected]"
s.homepage = "http://github.com/tsigo/invision_bridge"
s.description = "Allows your Authlogic-based User model to authenticate using an IP.Board 3.x database."
s.authors = ["Robert Speicher"]
s.files = FileList["[A-Za-z]*", "{lib,rails,spec,config}/**/*"]
s.add_dependency 'authlogic'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end