Added jeweler to rakefile and version.

This commit is contained in:
José Valim 2009-10-21 00:21:06 -02:00
parent a7e25f1b39
commit 2fe1a69b39
5 changed files with 37 additions and 6 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@
coverage/*
*.sqlite3
rdoc/*
devise.gemspec
pkg/

View File

@ -1,4 +1,4 @@
Copyright (c) 2009 [name of plugin creator]
Copyright 2009 Plataforma Tecnologia. http://blog.plataformatec.com.br
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the

View File

@ -23,13 +23,17 @@ Devise is based on Warden (http://github.com/hassox/warden), a Rack Authenticati
== Installation
Install warden gem if you don't have it installed (requires 0.4.1 or higher):
All gems are on gemcutter, so you need to add gemcutter to your sources if you haven't yet:
sudo gem sources -a http://gemcutter.org/
Install warden gem if you don't have it installed (requires 0.5.0 or higher):
sudo gem install warden
Install devise as an engine (plugin) inside your app:
Install devise inside your app:
script/plugin install git://github.com/plataformatec/devise.git
sudo gem install devise
And you're ready to go.

View File

@ -1,11 +1,14 @@
# encoding: UTF-8
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require File.join(File.dirname(__FILE__), 'lib', 'devise', 'version')
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the devise plugin.'
desc 'Test Devise.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
@ -13,7 +16,7 @@ Rake::TestTask.new(:test) do |t|
t.verbose = true
end
desc 'Generate documentation for the devise plugin.'
desc 'Generate documentation for Devise.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Devise'
@ -21,3 +24,22 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
end
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "devise"
s.version = "0.1.0"
s.summary = "Flexible authentication solution for Rails with Warden"
s.email = "contact@plataformatec.com.br"
s.homepage = "http://github.com/plataformatec/devise"
s.description = "Flexible authentication solution for Rails with Warden"
s.authors = ['José Valim', 'Carlos Antônio']
s.files = FileList["[A-Z]*", "{app,config,lib}/**/*", "init.rb"]
s.add_dependency("warden", "~> 0.5.0")
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

3
lib/devise/version.rb Normal file
View File

@ -0,0 +1,3 @@
module Devise
VERSION = "0.1.0".freeze
end