-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
27 lines (20 loc) · 822 Bytes
/
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
gem 'hoe', '>=2.0.0'
require 'hoe'
$:.unshift 'lib'
require 'cine_passion'
Hoe.spec 'cine-passion' do
self.summary = "Ruby binding for Cine Passion scraper"
self.description = "Use Cine Passion scraper http://passion-xbmc.org/scraper-cine-passion-support-francais/ http://passion-xbmc.org/scraper/."
self.url = "http://github.com/nledez/ruby-scraper-cine-passion"
self.author = "Nicolas Ledez"
self.email = "[email protected]"
self.post_install_message = <<-POST_INSTALL_MESSAGE
#{'*'*50}
Thank you for installing cine-passion-#{CinePassion::VERSION}
Please request a APIKEY to make real requests.
You can request one here :
http://passion-xbmc.org/demande-clef-api-api-key-request/
#{'*'*50}
POST_INSTALL_MESSAGE
end
# vim: syntax=ruby