forked from byroot/ruby-osdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
25 lines (20 loc) · 651 Bytes
/
Rakefile
File metadata and controls
25 lines (20 loc) · 651 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
require 'rubygems'
require 'rake'
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.libs << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
end
begin
require 'echoe'
Echoe.new('bartzon-osdb', '0.0.5') do |p|
p.description = "Ruby library to access OSDb services like OpenSubtitles.org"
p.url = "http://github.com/bartzon/ruby-osdb"
p.author = "Jean Boussier, Bart Zonneveld"
p.email = "jean.boussier @nospam@ gmail.com, loop@superinfinite.com"
end
rescue LoadError => e
puts "Failed to load Echoe"
puts e.message
end
task :default => :spec