-
Notifications
You must be signed in to change notification settings - Fork 9
/
spid-rails.gemspec
33 lines (26 loc) · 1.21 KB
/
spid-rails.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
$:.push File.expand_path('../lib', __FILE__)
# Maintain your gem's version:
require 'spid-rails/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'spid-rails'
s.version = Spid::Rails::VERSION
s.authors = ['Alessandro Descovi, Giacomo Bertoldi']
s.email = ['[email protected], [email protected]']
s.homepage = 'https://github.com/italia/spid-rails'
s.summary = "SPID, il Sistema Pubblico di Identita' Digitale"
s.description = 'Soluzione per poter effettuare il login tramite SPID'
s.license = 'MIT'
s.required_ruby_version = '>= 2.4.0'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.add_runtime_dependency 'rails', '~> 5.1', '>= 5.1.4'
s.add_runtime_dependency 'ruby-saml', '~> 1.8.0'
# Resolve CVE-2018-3741 vulnerability
s.add_runtime_dependency 'rails-html-sanitizer', '~> 1.0', '>= 1.0.4'
s.add_runtime_dependency 'spid', '>= 0.18.0'
s.add_development_dependency 'bundler-audit'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'rubocop', '0.57.2'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'sqlite3', '~> 1.3'
end