all older than 2.3 are already EOL and 2.4 will be EOL soon and the next diaspora major version will already depend on newer versions, so we can already remove it now.
25 lines
967 B
Ruby
25 lines
967 B
Ruby
$LOAD_PATH.push File.expand_path("lib", __dir__)
|
|
|
|
# Maintain your gem's version:
|
|
require "diaspora_federation/version"
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |s|
|
|
s.name = "diaspora_federation-rails"
|
|
s.version = DiasporaFederation::VERSION
|
|
s.authors = ["Benjamin Neff"]
|
|
s.email = ["benjamin@coding4.coffee"]
|
|
s.homepage = "https://github.com/diaspora/diaspora_federation"
|
|
s.summary = "diaspora* federation rails engine"
|
|
s.description = "A rails engine that adds the diaspora* federation protocol to a rails app"
|
|
s.license = "AGPL-3.0"
|
|
|
|
s.files = Dir["app/**/*", "config/routes.rb", "config/initializers/*",
|
|
"lib/diaspora_federation/{engine,rails}.rb", "LICENSE", "README.md", "Changelog.md"]
|
|
|
|
s.required_ruby_version = "~> 2.5"
|
|
|
|
s.add_dependency "actionpack", ">= 5", "< 6"
|
|
|
|
s.add_dependency "diaspora_federation", DiasporaFederation::VERSION
|
|
end
|