heartcombo--devise/devise.gemspec

27 lines
954 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
s.licenses = ["MIT"]
2010-12-16 15:37:42 +00:00
s.summary = "Flexible authentication solution for Rails with Warden"
s.email = "contact@plataformatec.com.br"
2014-01-26 05:31:26 +00:00
s.homepage = "https://github.com/plataformatec/devise"
2010-12-16 15:37:42 +00:00
s.description = "Flexible authentication solution for Rails with Warden"
s.authors = ['José Valim', 'Carlos Antônio']
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.required_ruby_version = '>= 2.1.0'
2013-07-14 18:39:46 +00:00
s.add_dependency("warden", "~> 1.2.3")
2012-06-13 12:56:25 +00:00
s.add_dependency("orm_adapter", "~> 0.1")
2014-02-21 21:33:59 +00:00
s.add_dependency("bcrypt", "~> 3.0")
2017-02-26 17:58:38 +00:00
s.add_dependency("railties", ">= 4.1.0", "< 5.2")
2014-08-20 21:12:57 +00:00
s.add_dependency("responders")
end