mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
cfdabf874a
More informations at http://tenderlovemaking.com/2011/12/05/profiling-rails-startup-with-dtrace/
25 lines
927 B
Ruby
25 lines
927 B
Ruby
# -*- encoding: utf-8 -*-
|
|
$:.push File.expand_path("../lib", __FILE__)
|
|
require "devise/version"
|
|
|
|
Gem::Specification.new do |s|
|
|
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']
|
|
|
|
s.rubyforge_project = "devise"
|
|
|
|
s.files = Dir["CHANGELOG.rdoc", "MIT-LICENSE", "README.rdoc", "app/**/*", "config/**/*", "lib/**/*"]
|
|
s.test_files = Dir["test/**/*"]
|
|
s.require_paths = ["lib"]
|
|
|
|
s.add_dependency("warden", "~> 1.1")
|
|
s.add_dependency("orm_adapter", "~> 0.0.3")
|
|
s.add_dependency("bcrypt-ruby", "~> 3.0")
|
|
s.add_dependency("railties", "~> 3.1")
|
|
end
|