Sha256: 33cc2122667443bbb8c28462eefb99eacc95a2a6a9f3dfc9fd2261466fe4bef9

Contents?: true

Size: 1.06 KB

Versions: 32

Compression:

Stored size: 1.06 KB

Contents

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  gem.name = "authpwn_rails"
  gem.homepage = "http://github.com/pwnall/authpwn_rails"
  gem.license = "MIT"
  gem.summary = %Q{User authentication for Rails 3 applications.}
  gem.description = %Q{Works with Facebook.}
  gem.email = "victor@costan.us"
  gem.authors = ["Victor Costan"]
  # Dependencies in Gemfile.
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "authpwn_rails #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
authpwn_rails-0.14.0 Rakefile
authpwn_rails-0.13.4 Rakefile
authpwn_rails-0.13.3 Rakefile
authpwn_rails-0.13.2 Rakefile
authpwn_rails-0.13.1 Rakefile
authpwn_rails-0.13.0 Rakefile
authpwn_rails-0.12.1 Rakefile
authpwn_rails-0.12.0 Rakefile
authpwn_rails-0.11.1 Rakefile
authpwn_rails-0.11.0 Rakefile
authpwn_rails-0.10.12 Rakefile
authpwn_rails-0.10.11 Rakefile
authpwn_rails-0.10.10 Rakefile
authpwn_rails-0.10.9 Rakefile
authpwn_rails-0.10.8 Rakefile
authpwn_rails-0.10.7 Rakefile
authpwn_rails-0.10.6 Rakefile
authpwn_rails-0.10.5 Rakefile
authpwn_rails-0.10.4 Rakefile
authpwn_rails-0.10.3 Rakefile