public
Description: OAuth implementation for Ruby. Note official maintained version is now at http://github.com/mojodna/oauth
Homepage: http://oauth.net
Clone URL: git://github.com/pelle/oauth.git
oauth / Rakefile
100644 46 lines (38 sloc) 1.54 kb
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
%w[rubygems rake rake/clean fileutils].each { |f| require f }
$LOAD_PATH << File.dirname(__FILE__) + '/lib'
require 'oauth'
require 'oauth/version'
 
begin
  require 'hoe'
  require 'newgem'
  require 'rubigen'
  
  # Generate all the Rake tasks
  # Run 'rake -T' to see list of generated tasks (from gem root directory)
  $hoe = Hoe.new('oauth', OAuth::VERSION) do |p|
    p.author = ['Pelle Braendgaard','Blaine Cook','Larry Halff','Jesse Clark','Jon Crosby', 'Seth Fitzsimmons']
    p.email = "oauth-ruby@googlegroups.com"
    p.description = "OAuth Core Ruby implementation"
    p.summary = p.description
    p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
    p.rubyforge_name = p.name # TODO this is default value
    p.url = "http://oauth.rubyforge.org"
 
    p.extra_deps = [
      ['ruby-hmac','>= 0.3.1']
    ]
    p.extra_dev_deps = [
      ['newgem', ">= #{::Newgem::VERSION}"],
      ['actionpack'],
      ['rack']
    ]
 
    p.clean_globs |= %w[**/.DS_Store tmp *.log **/.*.sw? *.gem .config **/.DS_Store]
    path = (p.rubyforge_name == p.name) ? p.rubyforge_name : "\#{p.rubyforge_name}/\#{p.name}"
    p.remote_rdoc_dir = File.join(path.gsub(/^#{p.rubyforge_name}\/?/,''), 'rdoc')
    p.rsync_args = '-av --delete --ignore-errors'
  end
 
  require 'newgem/tasks' # load /tasks/*.rake
rescue LoadError
  puts "hoe not available"
end
 
Dir['tasks/**/*.rake'].each { |t| load t }
 
# TODO - want other tests/tasks run by default? Add them to the list
# task :default => [:spec, :features]