2010-02-01 10:32:36 -05:00
|
|
|
# -*- encoding: utf-8 -*-
|
2010-12-16 10:37:42 -05:00
|
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
|
|
require "devise/version"
|
2010-02-01 10:32:36 -05:00
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2010-12-16 10:37:42 -05:00
|
|
|
s.name = "devise"
|
|
|
|
s.version = Devise::VERSION.dup
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
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']
|
2010-02-01 10:32:36 -05:00
|
|
|
|
2010-12-16 10:37:42 -05:00
|
|
|
s.rubyforge_project = "devise"
|
2010-02-01 10:32:36 -05:00
|
|
|
|
2010-12-16 10:37:42 -05:00
|
|
|
s.files = `git ls-files`.split("\n")
|
|
|
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
|
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
|
|
s.require_paths = ["lib"]
|
2010-02-01 10:32:36 -05:00
|
|
|
|
2011-11-06 15:47:55 -05:00
|
|
|
s.add_dependency("warden", "~> 1.1")
|
2010-12-16 10:37:42 -05:00
|
|
|
s.add_dependency("orm_adapter", "~> 0.0.3")
|
2011-08-25 07:22:48 -04:00
|
|
|
s.add_dependency("bcrypt-ruby", "~> 3.0")
|
2010-12-16 10:37:42 -05:00
|
|
|
end
|