Sha256: 3fb275e7da677b92152ddeb0e42b54ad600d2219949f1190979b92711c775d40

Contents?: true

Size: 1.36 KB

Versions: 16

Compression:

Stored size: 1.36 KB

Contents

%w[rubygems rake rake/clean fileutils newgem rubigen].each { |f| require f }
$LOAD_PATH << File.dirname(__FILE__) + '/lib'
require 'oauth'
require 'oauth/version'

# 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
Dir['tasks/**/*.rake'].each { |t| load t }

# TODO - want other tests/tasks run by default? Add them to the list
# task :default => [:spec, :features]

Version data entries

16 entries across 16 versions & 9 rubygems

Version Path
metavida-oauth-0.3.2.1 Rakefile
mojodna-oauth-0.3.2.1 Rakefile
mojodna-oauth-0.3.2.2 Rakefile
mojodna-oauth-0.3.3 Rakefile
mojodna-oauth-0.3.4.1 Rakefile
mojodna-oauth-0.3.4 Rakefile
mojodna-oauth-0.3.5 Rakefile
monkeyhelper-oauth-0.3.5 Rakefile
mzsanford-oauth-0.3.2.2 Rakefile
pelle-oauth-0.3.5 Rakefile
sporkd-oauth-0.3.6 Rakefile
vincentchu-oauth-0.3.2.111 Rakefile
af-oauth-0.3.4.1 Rakefile
oauth-0.3.3 Rakefile
oauth-0.3.5 Rakefile
oauth-0.3.4 Rakefile