-
Notifications
You must be signed in to change notification settings - Fork 5
/
libyear-bundler.gemspec
38 lines (33 loc) · 1.18 KB
/
libyear-bundler.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'libyear_bundler/version'
Gem::Specification.new do |spec|
spec.name = "libyear-bundler"
spec.version = LibyearBundler::VERSION
spec.authors = ["Jared Beck"]
spec.email = ["jared@jaredbeck.com"]
spec.summary = "A simple measure of dependency freshness"
spec.homepage = "https://libyear.com"
spec.licenses = ["GPL-3.0-only"]
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.start_with?('lib/') ||
[
'bin/libyear-bundler',
'libyear-bundler.gemspec',
'LICENSE.txt'
].include?(f)
end
spec.bindir = "bin"
spec.executables = ["libyear-bundler"]
spec.require_paths = ["lib"]
# We deliberately support dead rubies, as long as possible. It's important
# that people with badly out-of-date systems can still measure how bad they
# are.
spec.required_ruby_version = ">= 2.1"
# We will support bundler 1 as long as we can. See `required_ruby_version`
# above.
spec.add_dependency "bundler", ">= 1.14", "< 3"
# Development dependencies are specified in `/gemfiles`. See CONTRIBUTING.md
# for details.
end