mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-09 07:38:07 -05:00
There's some additional information in the wiki upgrade guide for those interested, but most of it is covered in the changelog and should suffice. The post install message should help guide people upgrading to make sure they know what to do in this new version, since some may be using Turbo out there with custom responders and failure apps and those would have to be removed in order to use these new changes fully. Hopefully that's enough of a nudge for them.
43 lines
1.7 KiB
Ruby
43 lines
1.7 KiB
Ruby
# -*- encoding: utf-8 -*-
|
|
# frozen_string_literal: true
|
|
|
|
$:.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.licenses = ["MIT"]
|
|
s.summary = "Flexible authentication solution for Rails with Warden"
|
|
s.email = "heartcombo@googlegroups.com"
|
|
s.homepage = "https://github.com/heartcombo/devise"
|
|
s.description = "Flexible authentication solution for Rails with Warden"
|
|
s.authors = ['José Valim', 'Carlos Antônio']
|
|
s.metadata = {
|
|
"homepage_uri" => "https://github.com/heartcombo/devise",
|
|
"documentation_uri" => "https://rubydoc.info/github/heartcombo/devise",
|
|
"changelog_uri" => "https://github.com/heartcombo/devise/blob/main/CHANGELOG.md",
|
|
"source_code_uri" => "https://github.com/heartcombo/devise",
|
|
"bug_tracker_uri" => "https://github.com/heartcombo/devise/issues",
|
|
"wiki_uri" => "https://github.com/heartcombo/devise/wiki"
|
|
}
|
|
|
|
s.files = Dir["{app,config,lib}/**/*", "CHANGELOG.md", "MIT-LICENSE", "README.md"]
|
|
s.require_paths = ["lib"]
|
|
s.required_ruby_version = '>= 2.1.0'
|
|
|
|
s.add_dependency("warden", "~> 1.2.3")
|
|
s.add_dependency("orm_adapter", "~> 0.1")
|
|
s.add_dependency("bcrypt", "~> 3.0")
|
|
s.add_dependency("railties", ">= 4.1.0")
|
|
s.add_dependency("responders")
|
|
|
|
s.post_install_message = %q{
|
|
[DEVISE] Please review the [changelog] and [upgrade guide] for more info on Hotwire / Turbo integration.
|
|
|
|
[changelog] https://github.com/heartcombo/devise/blob/main/CHANGELOG.md
|
|
[upgrade guide] https://github.com/heartcombo/devise/wiki/How-To:-Upgrade-to-Devise-4.9.0-%5BHotwire-Turbo-integration%5D
|
|
}
|
|
end
|