-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstibium-bundled.gemspec
41 lines (34 loc) · 1.16 KB
/
stibium-bundled.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
36
37
38
39
40
41
# frozen_string_literal: true
# vim: ai ts=2 sts=2 et sw=2 ft=ruby
# rubocop:disable all
Gem::Specification.new do |s|
s.name = "stibium-bundled"
s.version = "0.0.6"
s.date = "2021-02-22"
s.summary = "Denote bundle state"
s.description = "Denote bundle state and (optionally) load bundler/setup according to the configuration."
s.licenses = ["GPL-3.0"]
s.authors = ["Dimitri Arrigoni"]
s.email = "dimitri@arrigoni.me"
s.homepage = "https://github.com/SwagDevOps/stibium-bundled"
# MUST follow the higher required_ruby_version
# requires version >= 2.3.0 due to safe navigation operator &
# requires version >= 2.5.0 due to yield_self
s.required_ruby_version = ">= 2.5.0"
s.require_paths = ["lib"]
s.files = [
".yardopts",
"README.md",
"lib/stibium-bundled.rb",
"lib/stibium/bundled.rb",
"lib/stibium/bundled/bundle.rb",
"lib/stibium/bundled/bundle/config.rb",
"lib/stibium/bundled/bundle/config/reader.rb",
"lib/stibium/bundled/bundle/directory.rb",
"lib/stibium/bundled/version.rb",
"lib/stibium/bundled/version.yml",
]
end
# Local Variables:
# mode: ruby
# End: