-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflash_integration.gemspec
More file actions
36 lines (31 loc) · 1.51 KB
/
flash_integration.gemspec
File metadata and controls
36 lines (31 loc) · 1.51 KB
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
36
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path("lib", __dir__)
require "flash/integration/version"
Gem::Specification.new do |s|
s.name = "flash_integration"
s.version = Flash::Integration::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Danilo Carolino"]
s.email = ["danilo.carolino@qflash.com.br"]
s.homepage = "https://github.com/Quasar-Flash/flash_integration"
s.summary = "Flash Integration Library"
s.description = "A library to make easily to build integrations"
s.required_ruby_version = ">= 3.1"
s.files = Dir["{lib}/**/*"] + ["LICENSE", "Rakefile", "README.md", "CHANGELOG.md"]
s.test_files = Dir["spec/**/*"]
s.license = "MIT"
s.metadata["changelog_uri"] = "https://github.com/Quasar-Flash/flash_integration/blob/master/CHANGELOG.md"
s.metadata["source_code_uri"] = "https://github.com/Quasar-Flash/flash_integration"
s.metadata["bug_tracker_uri"] = "https://github.com/Quasar-Flash/flash_integration/issues"
s.add_dependency "faraday", ">= 1.4.1", "< 2.14.0"
s.add_dependency "faraday-multipart"
s.add_development_dependency "bundler", ">= 1.2"
s.add_development_dependency "pry"
s.add_development_dependency "rake", "~> 13.0", ">= 10.0"
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 "rubocop-rspec"
s.add_development_dependency "simplecov"
end