xezat 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 11d74a143e7b6c2d39ab8ee1698400adb87044e0ca8b3cfb8ef60df08641c0e6
4
- data.tar.gz: 5f1ac17b9895d6c80aa15e27eeabd82e6678144097c92ccd9cb1021773b5c15b
3
+ metadata.gz: 6183648a65f69a1fc1c1a85779066ba529614681aeb56fa78979ba9d9536c625
4
+ data.tar.gz: 20589012624b3e1690014d2b03ad2dda3fe01c464f5c3fb03223572a856a8dc4
5
5
  SHA512:
6
- metadata.gz: 5b14c63cecba36080b1ad95b3669cd2d837c22389e8074c5948d56ef134d1082eca62b0c7f2f16c7fac3b6d64581bc95defe4a2777efe1240a70b6763d8a6cf0
7
- data.tar.gz: 71ae49dc2ee4282fc949538ed2176140d81b7950edbf12e965527fb005409fed9fcde547a6255eb0c4851372c3f14e12b7bc276a509755a5d15a5ba1a6ba71bc
6
+ metadata.gz: e94a00970240eb104ba88a2126a4fbd04d97820977a383a0498e584b3373b69e8dd98260c30cb59853e36f792949c5fa527a910345b19582ea1332541f2b2a48
7
+ data.tar.gz: b01a34f4cc54b8967e765045048d8759612de6653602c0833ff6b252b8302563ea286fcfde36eefb4d1ab58f623a3c32f299aedb5b741aef681363840f719e63
data/.circleci/config.yml CHANGED
@@ -1,13 +1,10 @@
1
- # Ruby CircleCI 2.0 configuration file
2
- #
3
- # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
- #
5
- version: 2
1
+ version: 2.1
2
+ orbs:
3
+ ruby: circleci/ruby@1.4.0
6
4
  jobs:
7
- build:
5
+ test:
8
6
  docker:
9
- # specify the version you desire here
10
- - image: circleci/ruby:2.6
7
+ - image: cimg/ruby:2.6
11
8
 
12
9
  working_directory: ~/repo
13
10
 
@@ -76,3 +73,38 @@ jobs:
76
73
  - store_artifacts:
77
74
  path: ~/repo/coverage
78
75
  destination: coverage
76
+
77
+ deploy:
78
+ docker:
79
+ - image: cimg/ruby:2.6
80
+ steps:
81
+ - checkout
82
+ - run:
83
+ name: Install native libraries
84
+ command: |
85
+ sudo apt-get install cmake libicu-dev
86
+
87
+ - run:
88
+ name: Install dependencies
89
+ command: |
90
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
91
+
92
+ - run:
93
+ name: Publish gem to Rubygems
94
+ command: bundle exec rake release
95
+
96
+ workflows:
97
+ test:
98
+ jobs:
99
+ - test:
100
+ filters:
101
+ tags:
102
+ only: /.*/
103
+ - deploy:
104
+ requires:
105
+ - test
106
+ filters:
107
+ tags:
108
+ only: /^v.*/
109
+ branches:
110
+ ignore: /.*/
data/.rubocop.yml CHANGED
@@ -2,6 +2,7 @@ require: rubocop-performance
2
2
 
3
3
  AllCops:
4
4
  NewCops: enable
5
+ SuggestExtensions: false
5
6
  TargetRubyVersion: 2.6
6
7
  Exclude:
7
8
  - 'spec/cygport/**/*'
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.6.4
@@ -7,8 +7,8 @@ require 'xezat'
7
7
  module Xezat
8
8
  module Command
9
9
  class Bump
10
- def invoke_cygport_dep(vars, cygport)
11
- candidate_files = Find.find(vars[:D]).select do |file|
10
+ def invoke_cygport_dep(variables, cygport)
11
+ candidate_files = Find.find(variables[:D]).select do |file|
12
12
  file.end_with?('.exe', '.dll', '.so')
13
13
  end
14
14
  additional_path = candidate_files.map do |file|
@@ -12,7 +12,9 @@ module Xezat
12
12
  Xezat.logger.debug(' Collect development packages')
13
13
  compilers = get_compilers(get_languages(variables[:S]), variables)
14
14
  tools = get_tools(variables)
15
- development_packages = (compilers + tools + [:cygport]).uniq.sort
15
+ build_requires = variables[:BUILD_REQUIRES].nil? ? [] : variables[:BUILD_REQUIRES].split.map(&:to_sym)
16
+ development_packages = (compilers + tools + build_requires + [:cygport]).uniq.sort
17
+ development_packages.delete(:'libssl-devel') if development_packages.include?(:'libssl1.0-devel')
16
18
  development_packages.map! do |package|
17
19
  packages[package] || ''
18
20
  end
@@ -7,10 +7,16 @@ require 'xezat/variables'
7
7
  module Xezat
8
8
  module Command
9
9
  class Bump
10
- def get_runtime_packages(vars, cygport)
10
+ def get_runtime_packages(variables, pkgs, cygport)
11
11
  Xezat.logger.debug(' Collect runtime packages from cygport dep')
12
- result = invoke_cygport_dep(vars, cygport)
13
- result.gsub(/^.*\*\*\*.*$/, '').split($INPUT_RECORD_SEPARATOR).map(&:lstrip)
12
+ result = invoke_cygport_dep(variables, cygport)
13
+ runtime_packages = result.gsub(/^.*\*\*\*.*$/, '').split($INPUT_RECORD_SEPARATOR).map(&:lstrip)
14
+ build_requires = variables[:BUILD_REQUIRES].nil? ? [] : variables[:BUILD_REQUIRES].split.map(&:to_sym)
15
+ runtime_packages.delete(pkgs[:'libssl-devel']) if build_requires.include?(:'libssl1.0-devel')
16
+ variables[:REQUIRES]&.split&.each do |req|
17
+ runtime_packages << pkgs[req.to_sym]
18
+ end
19
+ runtime_packages.sort
14
20
  end
15
21
  end
16
22
  end
@@ -6,15 +6,15 @@ require 'xezat/cygclasses'
6
6
  module Xezat
7
7
  module Command
8
8
  class Bump
9
- def get_src_uri(vars, cygclasses = CygclassManager.new)
9
+ def get_src_uri(variables, cygclasses = CygclassManager.new)
10
10
  Xezat.logger.debug(' Collect SRC_URI')
11
11
  cygclasses.vcs.each do |vcs|
12
- next unless vars.key?("_#{vcs}_CYGCLASS_".intern)
12
+ next unless variables.key?("_#{vcs}_CYGCLASS_".intern)
13
13
 
14
14
  src_uri_key = "#{vcs.to_s.upcase}_URI".intern
15
- return vars[src_uri_key].split if vars.key?(src_uri_key)
15
+ return variables[src_uri_key].split if variables.key?(src_uri_key)
16
16
  end
17
- vars[:SRC_URI].split
17
+ variables[:SRC_URI].split
18
18
  end
19
19
  end
20
20
  end
@@ -32,7 +32,7 @@ module Xezat
32
32
 
33
33
  info = {
34
34
  src_uri: get_src_uri(vars),
35
- runtimes: get_runtime_packages(vars, @cygport),
35
+ runtimes: get_runtime_packages(vars, pkgs, @cygport),
36
36
  developments: get_development_packages(vars, pkgs),
37
37
  files: get_files(vars),
38
38
  changelog: get_changelog(vars, @options, readme_file)
@@ -3,6 +3,7 @@
3
3
  require 'net/http'
4
4
  require 'pkg-config'
5
5
  require 'uri'
6
+ require 'xezat/packages'
6
7
  require 'xezat/variables'
7
8
 
8
9
  module Xezat
@@ -18,6 +19,7 @@ module Xezat
18
19
  def execute
19
20
  Xezat.logger.debug('Start validating')
20
21
  vars = variables(@cygport)
22
+ pkgs = packages
21
23
 
22
24
  Xezat.logger.debug(' Validate .cygport')
23
25
  validate_cygport(@cygport)
@@ -28,6 +30,9 @@ module Xezat
28
30
  Xezat.logger.debug(' Validate homepage')
29
31
  validate_homepage(vars[:HOMEPAGE])
30
32
 
33
+ Xezat.logger.debug(' Validate BUILD_REQUIRES')
34
+ validate_build_requires(vars[:BUILD_REQUIRES], pkgs)
35
+
31
36
  Xezat.logger.debug(' Validate *.pc')
32
37
  validate_pkgconfig(vars)
33
38
 
@@ -53,6 +58,23 @@ module Xezat
53
58
  else
54
59
  Xezat.logger.error(" code = #{response.code}")
55
60
  end
61
+ rescue OpenSSL::SSL::SSLError => e
62
+ raise e unless @options[:ignore]
63
+
64
+ Xezat.logger.error(' Ignore SSLError')
65
+ end
66
+
67
+ def validate_build_requires(build_requires, pkgs)
68
+ return if build_requires.nil?
69
+
70
+ build_requires.split.each do |build_require|
71
+ build_require_pkg = pkgs[build_require.to_sym]
72
+ if build_require_pkg.nil?
73
+ Xezat.logger.error(" #{build_require} not found")
74
+ else
75
+ Xezat.logger.debug(" #{build_require_pkg}")
76
+ end
77
+ end
56
78
  end
57
79
 
58
80
  def validate_pkgconfig(variables)
@@ -73,7 +95,7 @@ module Xezat
73
95
  end
74
96
 
75
97
  def validate_libs(variables, libs)
76
- lib_dirs = [File.join(variables[:D], '/usr/lib'), '/usr/lib', '/usr/lib/w32api', '/usr/lib/gcc/x86_64-pc-cygwin/10']
98
+ lib_dirs = [File.join(variables[:D], '/usr/lib'), '/usr/lib', '/usr/lib/w32api', '/usr/lib/gcc/x86_64-pc-cygwin/11']
77
99
  libs.split do |option|
78
100
  if option.start_with?('-l')
79
101
  lib_name = option[2, 255] # Assume file length limit
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'English'
3
4
  require 'xezat/cygversion'
4
5
 
5
6
  module Xezat
@@ -24,7 +25,7 @@ module Xezat
24
25
  next
25
26
  end
26
27
  matched_content = /^(.+)$/.match(line)
27
- next unless matched_content
28
+ next if matched_content.nil?
28
29
  raise ReadmeSyntaxError, 'Version missing' if version.nil?
29
30
 
30
31
  if @changelogs.key?(version)
@@ -11,11 +11,11 @@ module Xezat
11
11
  Find.find(variables[:D]) do |file|
12
12
  next unless file.end_with?('.py')
13
13
 
14
- File.foreach(file) do |line|
15
- return true if line.strip == '#!/usr/bin/env python' || line.strip.start_with?('#!/usr/bin/env python2')
16
-
17
- break
18
- end
14
+ first_line = File.readlines(file).first
15
+ return true if %r{^#!\s*/usr/bin/env\s*python2\s*$}.match?(first_line)
16
+ return true if %r{^#!\s*/usr/bin/env\s*python2.7\s*$}.match?(first_line)
17
+ return true if %r{^#!\s*/usr/bin/python2\s*$}.match?(first_line)
18
+ return true if %r{^#!\s*/usr/bin/python2.7\s*$}.match?(first_line)
19
19
  end
20
20
  false
21
21
  end
@@ -6,7 +6,16 @@ module Xezat
6
6
  module Detector
7
7
  class Python36
8
8
  def detect(variables)
9
- File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.6'))
9
+ return true if File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.6'))
10
+
11
+ Find.find(variables[:D]) do |file|
12
+ next unless file.end_with?('.py')
13
+
14
+ first_line = File.readlines(file).first
15
+ return true if %r{^#!\s*/usr/bin/env\s*python3.6\s*$}.match?(first_line)
16
+ return true if %r{^#!\s*/usr/bin/python3.6\s*$}.match?(first_line)
17
+ end
18
+ false
10
19
  end
11
20
  end
12
21
  end
@@ -6,7 +6,16 @@ module Xezat
6
6
  module Detector
7
7
  class Python37
8
8
  def detect(variables)
9
- File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.7'))
9
+ return true if File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.7'))
10
+
11
+ Find.find(variables[:D]) do |file|
12
+ next unless file.end_with?('.py')
13
+
14
+ first_line = File.readlines(file).first
15
+ return true if %r{^#!\s*/usr/bin/env\s*python3.7\s*$}.match?(first_line)
16
+ return true if %r{^#!\s*/usr/bin/python3.7\s*$}.match?(first_line)
17
+ end
18
+ false
10
19
  end
11
20
  end
12
21
  end
@@ -6,7 +6,16 @@ module Xezat
6
6
  module Detector
7
7
  class Python38
8
8
  def detect(variables)
9
- File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.8'))
9
+ return true if File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.8'))
10
+
11
+ Find.find(variables[:D]) do |file|
12
+ next unless file.end_with?('.py')
13
+
14
+ first_line = File.readlines(file).first
15
+ return true if %r{^#!\s*/usr/bin/env\s*python3.8\s*$}.match?(first_line)
16
+ return true if %r{^#!\s*/usr/bin/python3.8\s*$}.match?(first_line)
17
+ end
18
+ false
10
19
  end
11
20
  end
12
21
  end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'find'
4
+
5
+ module Xezat
6
+ module Detector
7
+ class Python39
8
+ def detect(variables)
9
+ return true if File.directory?(File.join(variables[:D], 'usr', 'lib', 'python3.9'))
10
+
11
+ Find.find(variables[:D]) do |file|
12
+ next unless file.end_with?('.py')
13
+
14
+ first_line = File.readlines(file).first
15
+ return true if %r{^#!\s*/usr/bin/env\s*python\s*$}.match?(first_line)
16
+ return true if %r{^#!\s*/usr/bin/env\s*python3\s*$}.match?(first_line)
17
+ return true if %r{^#!\s*/usr/bin/env\s*python3.9\s*$}.match?(first_line)
18
+ return true if %r{^#!\s*/usr/bin/python\s*$}.match?(first_line)
19
+ return true if %r{^#!\s*/usr/bin/python3\s*$}.match?(first_line)
20
+ return true if %r{^#!\s*/usr/bin/python3.9\s*$}.match?(first_line)
21
+ end
22
+ false
23
+ end
24
+ end
25
+ end
26
+ end
@@ -18,7 +18,9 @@ module Xezat
18
18
  Xezat.logger.debug(' Detect tools')
19
19
  tools = []
20
20
  @detectors.each do |name, detector|
21
- if detector.detect(variables)
21
+ if variables[:PN].intern == name
22
+ Xezat.logger.debug(" #{name} ... no (self)")
23
+ elsif detector.detect(variables)
22
24
  tools << name
23
25
  Xezat.logger.debug(" #{name} ... yes")
24
26
  else
data/lib/xezat/main.rb CHANGED
@@ -62,10 +62,11 @@ module Xezat
62
62
  end
63
63
 
64
64
  desc 'validate cygport', 'Validate files'
65
+ option :ignore, type: :boolean, aliases: '-i', desc: 'ignore error'
65
66
 
66
67
  def validate(cygport)
67
68
  require 'xezat/command/validate'
68
- Command::Validate.new(nil, cygport).execute
69
+ Command::Validate.new(options, cygport).execute
69
70
  end
70
71
 
71
72
  desc 'announce cygport', 'Show announce'
data/lib/xezat/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Xezat
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
@@ -1,5 +1,5 @@
1
1
  {
2
- "HOMEPAGE": "https://github.com/-/${PN}",
3
- "SRC_URI": "https://github.com/-/${PN}/archive/v${PV}.tar.gz",
4
- "GIT_URI": "git://github.com/-/${PN}.git"
2
+ "HOMEPAGE": "https://github.com/${GITHUB_USER}/${PN}",
3
+ "SRC_URI": "https://github.com/${GITHUB_USER}/${PN}/archive/refs/tags/v${PV}.tar.gz",
4
+ "GIT_URI": "git://github.com/${GITHUB_USER}/${PN}.git"
5
5
  }
@@ -0,0 +1,4 @@
1
+ {
2
+ "HOMEPAGE": "https://www.gnu.org/software/${PN}/",
3
+ "SRC_URI": "mirror://gnu/${PN}/${P}.tar.gz"
4
+ }
@@ -1,4 +1,4 @@
1
1
  {
2
- "HOMEPAGE": "http://www.nongnu.org/${PN}/",
2
+ "HOMEPAGE": "https://www.nongnu.org/${PN}/",
3
3
  "SRC_URI": "mirror://savannah/${PN}/${P}.tar.gz"
4
4
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "HOMEPAGE": "https://sourceforge.net/projects/${PN}",
2
+ "HOMEPAGE": "https://sourceforge.net/projects/${PN}/",
3
3
  "SRC_URI": "mirror://sourceforge/${PN}/${P}.tar.gz",
4
4
  "SVN_URI": "svn://svn.code.sf.net/p/${PN}/code",
5
5
  "GIT_URI": "git://git.code.sf.net/p/${PN}/code"
@@ -1,7 +1,8 @@
1
-
2
- SET(prefix ${CMAKE_INSTALL_PREFIX})
3
- SET(exec_prefix ${CMAKE_INSTALL_PREFIX})
4
- SET(libdir ${CMAKE_INSTALL_PREFIX}/lib)
5
- SET(includedir ${CMAKE_INSTALL_PREFIX}/include)
6
- CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/<%= variables[:PN] %>.pc.in ${CMAKE_BINARY_DIR}/<%= variables[:PN] %>.pc @ONLY)
7
- INSTALL(FILES ${CMAKE_BINARY_DIR}/<%= variables[:PN] %>.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
1
+ if (CYGWIN)
2
+ set(prefix ${CMAKE_INSTALL_PREFIX})
3
+ set(exec_prefix ${CMAKE_INSTALL_PREFIX})
4
+ set(libdir ${CMAKE_INSTALL_PREFIX}/lib)
5
+ set(includedir ${CMAKE_INSTALL_PREFIX}/include)
6
+ configure_file(${CMAKE_SOURCE_DIR}/<%= variables[:PN] %>.pc.in ${CMAKE_BINARY_DIR}/<%= variables[:PN] %>.pc @ONLY)
7
+ install(FILES ${CMAKE_BINARY_DIR}/<%= variables[:PN] %>.pc DESTINATION ${CMAKE_INSTALL_PREFIX}/lib/pkgconfig)
8
+ endif()
data/xezat.gemspec CHANGED
@@ -24,17 +24,19 @@ Gem::Specification.new do |spec|
24
24
  spec.required_ruby_version = '>= 2.6.4'
25
25
 
26
26
  spec.add_runtime_dependency 'facets', '>= 3.1.0'
27
- spec.add_runtime_dependency 'github-linguist', '>= 7.11.0'
28
- spec.add_runtime_dependency 'pkg-config', '>= 1.4.4'
27
+ spec.add_runtime_dependency 'github-linguist', '>= 7.13.0'
28
+ spec.add_runtime_dependency 'pkg-config', '>= 1.4.5'
29
29
  spec.add_runtime_dependency 'thor', '>= 0.20.3'
30
- spec.add_runtime_dependency 'thor-zsh_completion', '>= 0.1.7'
30
+ spec.add_runtime_dependency 'thor-zsh_completion', '>= 0.1.9'
31
31
 
32
32
  spec.add_development_dependency 'bundler', '>= 1.15.3'
33
- spec.add_development_dependency 'fasterer', '>= 0.8.3'
33
+ spec.add_development_dependency 'fasterer', '>= 0.9.0'
34
34
  spec.add_development_dependency 'rake', '>= 13.0'
35
35
  spec.add_development_dependency 'rspec', '>= 3.9.0'
36
36
  spec.add_development_dependency 'rspec_junit_formatter', '<= 0.4.1'
37
- spec.add_development_dependency 'rubocop', '>= 0.90.0'
38
- spec.add_development_dependency 'rubocop-performance', '>= 1.8.0'
39
- spec.add_development_dependency 'simplecov', '>= 0.19.0'
37
+ spec.add_development_dependency 'rubocop', '>= 1.10.0'
38
+ spec.add_development_dependency 'rubocop-performance', '>= 1.9.2'
39
+ spec.add_development_dependency 'simplecov', '>= 0.21.2'
40
+
41
+ spec.metadata['rubygems_mfa_required'] = 'true'
40
42
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xezat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daisuke Fujimura (fd0)
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-23 00:00:00.000000000 Z
11
+ date: 2022-02-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: facets
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 7.11.0
33
+ version: 7.13.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 7.11.0
40
+ version: 7.13.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: pkg-config
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 1.4.4
47
+ version: 1.4.5
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 1.4.4
54
+ version: 1.4.5
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: thor
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: 0.1.7
75
+ version: 0.1.9
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 0.1.7
82
+ version: 0.1.9
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: bundler
85
85
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: 0.8.3
103
+ version: 0.9.0
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
- version: 0.8.3
110
+ version: 0.9.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: rake
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -156,42 +156,42 @@ dependencies:
156
156
  requirements:
157
157
  - - ">="
158
158
  - !ruby/object:Gem::Version
159
- version: 0.90.0
159
+ version: 1.10.0
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - ">="
165
165
  - !ruby/object:Gem::Version
166
- version: 0.90.0
166
+ version: 1.10.0
167
167
  - !ruby/object:Gem::Dependency
168
168
  name: rubocop-performance
169
169
  requirement: !ruby/object:Gem::Requirement
170
170
  requirements:
171
171
  - - ">="
172
172
  - !ruby/object:Gem::Version
173
- version: 1.8.0
173
+ version: 1.9.2
174
174
  type: :development
175
175
  prerelease: false
176
176
  version_requirements: !ruby/object:Gem::Requirement
177
177
  requirements:
178
178
  - - ">="
179
179
  - !ruby/object:Gem::Version
180
- version: 1.8.0
180
+ version: 1.9.2
181
181
  - !ruby/object:Gem::Dependency
182
182
  name: simplecov
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - ">="
186
186
  - !ruby/object:Gem::Version
187
- version: 0.19.0
187
+ version: 0.21.2
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
192
  - - ">="
193
193
  - !ruby/object:Gem::Version
194
- version: 0.19.0
194
+ version: 0.21.2
195
195
  description: xezat helps you win at cygport.
196
196
  email:
197
197
  - booleanlabel@gmail.com
@@ -206,6 +206,7 @@ files:
206
206
  - ".gitmodules"
207
207
  - ".rspec"
208
208
  - ".rubocop.yml"
209
+ - ".ruby-version"
209
210
  - Gemfile
210
211
  - LICENSE.txt
211
212
  - README.md
@@ -257,6 +258,7 @@ files:
257
258
  - lib/xezat/detector/python37.rb
258
259
  - lib/xezat/detector/python38-docutils.rb
259
260
  - lib/xezat/detector/python38.rb
261
+ - lib/xezat/detector/python39.rb
260
262
  - lib/xezat/detector/roundup.rb
261
263
  - lib/xezat/detector/waf.rb
262
264
  - lib/xezat/detectors.rb
@@ -273,6 +275,7 @@ files:
273
275
  - share/xezat/languages.json
274
276
  - share/xezat/repository/bitbucket.json
275
277
  - share/xezat/repository/github.json
278
+ - share/xezat/repository/gnu.json
276
279
  - share/xezat/repository/savannah.json
277
280
  - share/xezat/repository/sourceforge.json
278
281
  - share/xezat/show_cygport_variable.sh
@@ -286,8 +289,9 @@ files:
286
289
  homepage: https://github.com/fd00/xezat
287
290
  licenses:
288
291
  - MIT
289
- metadata: {}
290
- post_install_message:
292
+ metadata:
293
+ rubygems_mfa_required: 'true'
294
+ post_install_message:
291
295
  rdoc_options: []
292
296
  require_paths:
293
297
  - lib
@@ -302,8 +306,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
302
306
  - !ruby/object:Gem::Version
303
307
  version: '0'
304
308
  requirements: []
305
- rubygems_version: 3.1.2
306
- signing_key:
309
+ rubygems_version: 3.2.32
310
+ signing_key:
307
311
  specification_version: 4
308
312
  summary: xezat helps you win at cygport.
309
313
  test_files: []