Skip to content

Commit

Permalink
Added jeweler to rakefile and version.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Oct 21, 2009
1 parent a7e25f1 commit 2fe1a69
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -4,3 +4,5 @@
coverage/*
*.sqlite3
rdoc/*
devise.gemspec
pkg/
2 changes: 1 addition & 1 deletion MIT-LICENSE
@@ -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
Expand Down
10 changes: 7 additions & 3 deletions README.rdoc
Expand Up @@ -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.

Expand Down
26 changes: 24 additions & 2 deletions Rakefile
@@ -1,23 +1,45 @@
# 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'
t.pattern = 'test/**/*_test.rb'
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'
rdoc.options << '--line-numbers' << '--inline-source'
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 changes: 3 additions & 0 deletions lib/devise/version.rb
@@ -0,0 +1,3 @@
module Devise
VERSION = "0.1.0".freeze
end

0 comments on commit 2fe1a69

Please sign in to comment.