heartcombo--devise/devise.gemspec

26 lines
982 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"
2010-12-16 15:37:42 +00: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"]
2011-11-06 20:47:55 +00:00
s.add_dependency("warden", "~> 1.1")
2010-12-16 15:37:42 +00:00
s.add_dependency("orm_adapter", "~> 0.0.3")
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")
2010-12-16 15:37:42 +00:00
end