-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreezer.gemspec
40 lines (29 loc) · 1.18 KB
/
breezer.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
# frozen_string_literal: true
# rubocop:todo Gemspec/RequiredRubyVersion
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'breezer/version'
Gem::Specification.new do |s|
s.name = 'breezer'
s.version = Breezer::VERSION
s.authors = ['André Aubin']
s.date = '2020-02-05'
s.description = 'Automatically set versions in your Gemfile'
s.email = '[email protected]'
glob = ->(patterns) { s.files & Dir[*patterns] }
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
s.executables = glob['bin/*'].map { |path| File.basename(path) }
s.default_executable = s.executables.first if Gem::VERSION < '1.7.'
s.homepage = 'http://rubygems.org/gems/breezer'
s.require_paths = ['lib']
s.summary = 'Breezer!'
s.license = 'MIT'
s.required_ruby_version = '>= 2.1.0'
s.required_rubygems_version = '>= 2.7.0'
s.add_development_dependency 'bump', '~> 0.8'
s.add_development_dependency 'minitest', '~> 5.14'
s.add_development_dependency 'minitest-around', '~> 0.5'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rubocop', '~> 0.79.0'
s.add_runtime_dependency('bundler', '> 1.0')
end
# rubocop:enable Gemspec/RequiredRubyVersion