-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigid_auth.gemspec
35 lines (30 loc) · 1.35 KB
/
bigid_auth.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
34
35
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "bigid/auth/version"
Gem::Specification.new do |s|
s.name = "bigid_auth"
s.version = Bigid::Auth::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Danilo Carolino"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/Quasar-Flash/bigid_auth"
s.summary = "Bigid Auth Library"
s.description = "A library to use BigData Corps auth features"
s.required_ruby_version = ">= 3.1"
s.files = Dir["{lib}/**/*"] + Dir["{docs}/**/*"] + ["Rakefile"]
s.test_files = Dir["spec/**/*"]
s.license = "MIT"
s.metadata["changelog_uri"] = "https://github.com/Quasar-Flash/bigid_auth/blob/master/CHANGELOG.md"
s.metadata["source_code_uri"] = "https://github.com/Quasar-Flash/bigid_auth"
s.metadata["bug_tracker_uri"] = "https://github.com/Quasar-Flash/bigid_auth/issues"
s.add_dependency "flash_integration", ">= 1.0", "< 1.2"
s.add_dependency "i18n"
s.add_dependency "json"
s.add_development_dependency "pry"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "rubocop"
s.add_development_dependency "rubocop-packaging"
s.add_development_dependency "rubocop-performance"
s.add_development_dependency "simplecov"
end