-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpuzzletime.gemspec
33 lines (25 loc) · 1.08 KB
/
gpuzzletime.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'gpuzzletime'
spec.version = '0.5.2'
spec.authors = ['Matthias Viehweger']
spec.email = ['[email protected]']
spec.summary = 'The gem formerly known as gpuzzletime is now ptimelog'
spec.homepage = 'https://github.com/kronn/ptimelog'
spec.license = 'MIT'
spec.files = ['exe/gpuzzletime']
spec.bindir = 'exe'
spec.executables = ['gpuzzletime']
spec.add_dependency 'ptimelog'
spec.required_ruby_version = '>= 2.4' # rubocop:disable Gemspec/RequiredRubyVersion
spec.metadata['rubygems_mfa_required'] = 'true'
spec.post_install_message = <<-MESSAGE
gpuzzletime has been renamed to ptimelog. Along with this update, ptimelog
has already been installed. The previous executable is now a
migration-script.
You can safely uninstall gpuzzletime. If you miss the executable
gpuzzletime afterwards, you can recreate the migration-script version by
reinstalling ptimelog.
Sorry for the inconvenience.
MESSAGE
end