Sha256: 4d34845a869cf7f079d572803910f5c43a6e32fa81b46cbd32a699eb22da4b1f

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 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-with-mongo-mapper"
    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}/**/*"] - FileList["**/*.log"]
    
    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

3 entries across 3 versions & 1 rubygems

Version Path
twitter-auth-with-mongo-mapper-0.1.1 Rakefile
twitter-auth-with-mongo-mapper-0.1.0 Rakefile
twitter-auth-with-mongo-mapper-0.0.9 Rakefile