-
Notifications
You must be signed in to change notification settings - Fork 0
/
ekylibre-previmeteo.gemspec
35 lines (27 loc) · 1.28 KB
/
ekylibre-previmeteo.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
# coding: utf-8
require_relative 'lib/ekylibre/previmeteo/version'
Gem::Specification.new do |spec|
spec.name = 'ekylibre-previmeteo'
spec.version = Ekylibre::Previmeteo::VERSION
spec.authors = ["Ekylibre developers"]
spec.email = ["[email protected]"]
spec.required_ruby_version = ">= 2.6.0"
spec.homepage = "https://www.ekylibre.com"
spec.summary = 'Previmeteo integration'
spec.license = 'MIT'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "https://gems.ekylibre.dev"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://www.gitlab.com/ekylibre/ekylibre-previmeteo"
else
raise StandardError.new("RubyGems 2.0 or newer is required to protect against public gem pushes.")
end
spec.files = Dir.glob(%w[{config,lib}/**/* *.gemspec Gemfile Rakefile *.rdoc])
spec.require_paths = ["lib"]
spec.add_dependency 'ekylibre-plugin_system', '~> 0.4.0'
spec.add_development_dependency "bundler", ">= 1.17"
spec.add_development_dependency "minitest", "~> 5.14"
spec.add_development_dependency "rake", "~> 13.0"
end