forked from MaximeD/gem_updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gem_updater.gemspec
39 lines (32 loc) · 1.32 KB
/
gem_updater.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
# frozen_string_literal: true
require_relative 'lib/gem_updater/version'
REPOSITORY_URI = 'https://github.com/MaximeD/gem_updater'
Gem::Specification.new do |s|
s.name = 'gem_updater'
s.version = GemUpdater::VERSION
s.summary = 'Update your gems and find their changelogs'
s.description = 'Updates the gems of your Gemfile ' \
'and fetches the links pointing to where their changelogs are'
s.authors = ['Maxime Demolin']
s.email = 'maxime_dev@demol.in'
s.files = Dir['{lib}/**/*']
s.homepage = REPOSITORY_URI
s.license = 'MIT'
s.metadata = {
'homepage_uri' => REPOSITORY_URI,
'changelog_uri' => "#{REPOSITORY_URI}/blob/master/CHANGELOG.md",
'source_code_uri' => REPOSITORY_URI,
'rubygems_mfa_required' => 'true'
}
s.required_ruby_version = '>= 3.0.0'
s.add_runtime_dependency 'bundler', '< 3'
s.add_runtime_dependency 'json', '~> 2.6'
s.add_runtime_dependency 'nokogiri', '~> 1.13'
s.add_development_dependency 'pry', '~> 0.14'
s.add_development_dependency 'rspec', '~> 3.12'
s.add_development_dependency 'rubocop', '~> 1.41'
s.add_development_dependency 'rubocop-performance', '~> 1.15'
s.add_development_dependency 'vcr', '~> 6.1'
s.add_development_dependency 'webmock', '~> 3.18'
s.executables << 'gem_update'
end