-
Notifications
You must be signed in to change notification settings - Fork 0
/
autosparkle.gemspec
52 lines (39 loc) · 2.04 KB
/
autosparkle.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
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
require_relative 'lib/autosparkle/metadata'
Gem::Specification.new do |spec|
spec.name = AutoSparkle::NAME
spec.version = AutoSparkle::VERSION
spec.authors = ['Hadi Dbouk']
spec.email = ['[email protected]']
spec.summary = AutoSparkle::SUMMARY
spec.description = AutoSparkle::DESCRIPTION
spec.homepage = 'https://github.com/hadiidbouk/autosparkle'
spec.license = 'MIT'
spec.files = Dir['lib/**/*', 'bin/*', 'README.md', 'LICENSE.txt']
spec.bindir = 'bin'
spec.executables = ['autosparkle']
spec.required_ruby_version = '>= 2.5.0'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.add_runtime_dependency 'aws-sdk-s3', '~> 1.152.3'
spec.add_runtime_dependency 'colorize', '~> 1.1.0'
spec.add_runtime_dependency 'commander', '~> 5.0.0'
spec.add_runtime_dependency 'dotenv', '~> 3.1.2'
spec.add_runtime_dependency 'nokogiri', '~> 1.16.6'
spec.add_runtime_dependency 'xcodeproj', '~> 1.24.0'
spec.post_install_message = <<~MESSAGE
###################################### AUTOSPAKRLE ######################################
Thank you for installing AutoSparkle!
To use AutoSparkle in your terminal, you need to update your shell configuration files.
Add the following line to your shell configuration file (e.g., ~/.bashrc, ~/.zshrc):
export PATH="<<YOUR_GEMS_DIR>>/autosparkle-x.x.x/bin:$PATH"
After updating your shell configuration file, run the following command:
source ~/.bashrc or source ~/.zshrc
For more information, visit the AutoSparkle GitHub repository:
#{spec.homepage}
Enjoy using AutoSparkle!
#########################################################################################
MESSAGE
spec.metadata['rubygems_mfa_required'] = 'true'
end