Sha256: a5a4db346b934733dc0e3b19c9fba4c27e6cc6f9fd051cb44dfcafcefb2dc593

Contents?: true

Size: 1.17 KB

Versions: 16

Compression:

Stored size: 1.17 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Default: run unit tests.'
task :default => :test

desc 'Test the oauth plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Generate documentation for the oauth plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Oauth'
  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 |gemspec|
    gemspec.name = "oauth-plugin"
    gemspec.summary = "Ruby on Rails Plugin for OAuth Provider and Consumer"
    gemspec.description = "Rails plugin for implementing an OAuth Provider or Consumer"
    gemspec.email = "oauth-ruby@googlegroups.com"
    gemspec.homepage = "http://github.com/pelle/oauth-plugin/tree/master"
    gemspec.authors = ["Pelle Braendgaard"]
    gemspec.add_dependency('oauth', '>= 0.3.5')
    gemspec.rubyforge_project = 'oauth'
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
filiptepper-oauth-plugin-0.3.11 Rakefile
pelle-oauth-plugin-0.3.10 Rakefile
pelle-oauth-plugin-0.3.11 Rakefile
pelle-oauth-plugin-0.3.5 Rakefile
pelle-oauth-plugin-0.3.6 Rakefile
pelle-oauth-plugin-0.3.7 Rakefile
pelle-oauth-plugin-0.3.8 Rakefile
pelle-oauth-plugin-0.3.9 Rakefile
oauth-plugin-0.3.12 Rakefile
oauth-plugin-0.3.11 Rakefile
oauth-plugin-0.3.7 Rakefile
oauth-plugin-0.3.5 Rakefile
oauth-plugin-0.3.6 Rakefile
oauth-plugin-0.3.9 Rakefile
oauth-plugin-0.3.10 Rakefile
oauth-plugin-0.3.8 Rakefile