forked from lessonly/scim_rails
-
Notifications
You must be signed in to change notification settings - Fork 10
/
scimaenaga.gemspec
32 lines (27 loc) · 1.05 KB
/
scimaenaga.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
$:.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'scimaenaga/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'scimaenaga'
s.version = Scimaenaga::VERSION
s.authors = ['Studist Corporation']
s.homepage = 'https://github.com/StudistCorporation/scimaenaga'
s.summary = 'SCIM Adapter for Rails.'
s.description = 'SCIM Adapter for Rails.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.required_ruby_version = '>= 2.5.9', '<= 3.3.6'
s.add_dependency 'rails', '>= 5.2.4.6', '< 7.2'
s.add_runtime_dependency 'jwt', '>= 1.5'
s.test_files = Dir['spec/**/*']
s.add_development_dependency 'bundler', '~> 2.0'
s.add_development_dependency 'factory_bot_rails'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec-rails'
s.add_development_dependency 'sqlite3', '~> 1.3', '< 1.5'
s.metadata = {
'rubygems_mfa_required' => 'true',
}
end