heartcombo--devise/devise.gemspec

26 lines
885 B
Ruby
Raw Normal View History

# -*- encoding: utf-8 -*-
2010-12-16 15:37:42 +00:00
$:.push File.expand_path("../lib", __FILE__)
require "devise/version"
Gem::Specification.new do |s|
2010-12-16 15:37:42 +00:00
s.name = "devise"
s.version = Devise::VERSION.dup
2012-01-02 19:23:47 +00:00
s.platform = Gem::Platform::RUBY
2010-12-16 15:37:42 +00:00
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-12-16 15:37:42 +00:00
s.rubyforge_project = "devise"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
2010-12-16 15:37:42 +00:00
s.require_paths = ["lib"]
s.add_dependency("warden", "~> 1.1.1")
s.add_dependency("orm_adapter", "~> 0.0.7")
2011-08-25 11:22:48 +00:00
s.add_dependency("bcrypt-ruby", "~> 3.0")
2012-01-02 19:23:47 +00:00
s.add_dependency("railties", "~> 3.1")
end