rmm5t / twitter-auth forked from mbleigh/twitter-auth

Standard authentication stack for Rails using Twitter to log in.

This URL has Read+Write access

mbleigh (author)
Tue Mar 31 08:43:25 -0700 2009
commit  ec91ad36e332a707fea235f7ffbad540af0c2a63
tree    31eddd39611bac2e1c0793681480c30bd0b0a9ff
parent  0c92d56039d0b9e83cdf1b81c353c303b88f4191
twitter-auth / Rakefile
100644 32 lines (26 sloc) 1.156 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
require 'rake'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = "twitter-auth"
    s.summary = "TwitterAuth is a Rails plugin gem that provides Single Sign-On capabilities for Rails applications via Twitter."
    s.email = "michael@intridea.com"
    s.homepage = "http://github.com/mbleigh/twitter-auth"
    s.description = "TwitterAuth is a Rails plugin gem that provides Single Sign-On capabilities for Rails applications via Twitter. Both OAuth and HTTP Basic are supported."
s.files = FileList["[A-Z]*", "{bin,generators,lib,spec,config,app,rails}/**/*"]
    
    s.authors = ["Michael Bleigh"]
    s.add_dependency('oauth', '>= 0.3.1')
    s.add_dependency('ezcrypto', '>= 0.7.2')
    s.rubyforge_project = 'twitter-auth'
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end