Sha256: 2452f4a0c96ff555af86eaff755a66e98ee77fc1222f30b43a1da6a6a00f5aab

Contents?: true

Size: 1.16 KB

Versions: 8

Compression:

Stored size: 1.16 KB

Contents

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.add_dependency 'schacon-git'
    
    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

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
mbleigh-twitter-auth-0.1.10 Rakefile
mbleigh-twitter-auth-0.1.5 Rakefile
mbleigh-twitter-auth-0.1.8 Rakefile
twitter-auth-0.1.10 Rakefile
twitter-auth-0.1.5 Rakefile
twitter-auth-0.1.7 Rakefile
twitter-auth-0.1.8 Rakefile
twitter-auth-0.1.9 Rakefile