pdd 0.23.1 → 0.23.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: 3ac54e9734261a219a3423f47d8ce87c37f1b4217068c0aaa6f38d9fde9f02b0
4
- data.tar.gz: d799af9631307db2f0a689a52baf39fa30a509886188f03e3ef30e12dc951f8e
3
+ metadata.gz: b31cfabb478220287ba41490879fa0387cf0d08a1f62872119fefa5c69fc71db
4
+ data.tar.gz: 7022a7f4b8a3777a2ff801cc1c054c73159b678d5f7d176db482204923a05268
5
5
  SHA512:
6
- metadata.gz: 34a56a4d972473a440fa1cd7a8c3e543393824c03bf2ef40e8d92bbcce2537316aece18fae9e3c50404285a371f9eee020ece2af412fe8f9ae3c9984dd463b76
7
- data.tar.gz: 9460dd4e0d542d248255ebcaa89f4e4259ed5910aa03e4d82289d94bb55d9ba1be61c9fd08d525451b88f776e3018166d1983f5dcbdde2e34e3039d4deae2637
6
+ metadata.gz: 389bb7338dffb8967201649556f6774dc39e8417233ffaf53c8e1c492aaa0dff53f1419ffb40f31f0737621584b91cd841b19726074a58bd781d80b02f82050b
7
+ data.tar.gz: cc378cc62f5a3dba820d1c0c10a571ce158ed4b1aff7425756bb596fae9e91784819d8648e69654e4f77a7e8a7ed7f9505e8635aba693f0c577731cfa0906be7
data/.rultor.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  docker:
2
- image: yegor256/rultor-image:1.9.0
2
+ image: yegor256/rultor-image:1.20.0
3
3
  assets:
4
4
  rubygems.yml: yegor256/home#assets/rubygems.yml
5
5
  install: |
data/.simplecov CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -20,3 +20,15 @@
20
20
 
21
21
  source 'https://rubygems.org'
22
22
  gemspec
23
+
24
+ gem 'aruba', '~> 0.14.1', require: false
25
+ gem 'cucumber', '8.0.0', require: false
26
+ gem 'minitest', '5.16.2', require: false
27
+ gem 'rake', '13.0.6', require: false
28
+ gem 'rdoc', '6.4.0', require: false
29
+ gem 'rspec-rails', '5.1.2', require: false
30
+ gem 'rubocop', '1.53.1', require: false
31
+ gem 'rubocop-rspec', '2.22.0', require: false
32
+ gem 'simplecov', '0.22.0', require: false
33
+ gem 'slop', '4.9.2', require: false
34
+ gem 'xcop', '0.7.1', require: false
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2014-2022 Yegor Bugayenko
3
+ Copyright (c) 2014-2023 Yegor Bugayenko
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the 'Software'), to deal
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/assets/puzzles.xsd CHANGED
@@ -2,7 +2,7 @@
2
2
  <!--
3
3
  (The MIT License)
4
4
 
5
- Copyright (c) 2014-2022 Yegor Bugayenko
5
+ Copyright (c) 2014-2023 Yegor Bugayenko
6
6
 
7
7
  Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  of this software and associated documentation files (the 'Software'), to deal
data/assets/puzzles.xsl CHANGED
@@ -2,7 +2,7 @@
2
2
  <!--
3
3
  (The MIT License)
4
4
 
5
- Copyright (c) 2014-2022 Yegor Bugayenko
5
+ Copyright (c) 2014-2023 Yegor Bugayenko
6
6
 
7
7
  Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  of this software and associated documentation files (the 'Software'), to deal
data/bin/pdd CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (c) 2014-2022 Yegor Bugayenko
2
+ # Copyright (c) 2014-2023 Yegor Bugayenko
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the 'Software'), to deal
@@ -40,7 +40,7 @@ begin
40
40
  body = File.read(cfg)
41
41
  extra = body.split(/\s+/).map(&:strip)
42
42
  args += extra
43
- puts "Found #{body.split(/\n/).length} lines in #{File.absolute_path(cfg)}"
43
+ puts "Found #{body.split("\n").length} lines in #{File.absolute_path(cfg)}"
44
44
  end
45
45
  args += ARGV
46
46
 
@@ -90,7 +90,7 @@ https://github.com/cqfn/pdd/blob/master/README.md"
90
90
  body = File.read(cfg)
91
91
  extra = body.split(/\s+/).map(&:strip)
92
92
  opts['skip-gitignore'] = extra
93
- PDD.log.info "Found #{body.split(/\n/).length} lines in #{File.absolute_path(cfg)}"
93
+ PDD.log.info "Found #{body.split("\n").length} lines in #{File.absolute_path(cfg)}"
94
94
  end
95
95
 
96
96
  Encoding.default_external = Encoding::UTF_8
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -48,7 +48,7 @@ end
48
48
  Given(/^I have a "([^"]*)" file with content:$/) do |file, text|
49
49
  FileUtils.mkdir_p(File.dirname(file)) unless File.exist?(file)
50
50
  File.open(file, 'w:ASCII-8BIT') do |f|
51
- f.write(text.gsub(/\\xFF/, 0xFF.chr))
51
+ f.write(text.gsub('\\xFF', 0xFF.chr))
52
52
  end
53
53
  end
54
54
 
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/pdd/puzzle.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/pdd/rule/text.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/pdd/source.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/pdd/sources.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -88,7 +88,8 @@ module PDD
88
88
 
89
89
  def text_file?(file)
90
90
  fm = FileMagic.new(FileMagic::MAGIC_MIME)
91
- fm.file(file) =~ %r{^text/}
91
+ type = fm.file(file)
92
+ type =~ %r{^(text/|application/javascript)}
92
93
  ensure
93
94
  fm.close
94
95
  end
data/lib/pdd/version.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -20,8 +20,8 @@
20
20
 
21
21
  # PDD main module.
22
22
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
23
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
23
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
24
24
  # License:: MIT
25
25
  module PDD
26
- VERSION = '0.23.1'.freeze
26
+ VERSION = '0.23.2'.freeze
27
27
  end
data/lib/pdd.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -30,7 +30,7 @@ require_relative 'pdd/rule/roles'
30
30
 
31
31
  # PDD main module.
32
32
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
33
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
33
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
34
34
  # License:: MIT
35
35
  module PDD
36
36
  # If it breaks.
@@ -145,7 +145,7 @@ module PDD
145
145
  doc = Nokogiri::XML(xml)
146
146
  total = 0
147
147
  list = @opts[:rule] || []
148
- unless list.select { |r| r.start_with?('max-duplicates:') }.empty?
148
+ unless list.none? { |r| r.start_with?('max-duplicates:') }
149
149
  raise PDD::Error, 'You can\'t modify max-duplicates, it\'s always 1'
150
150
  end
151
151
 
data/pdd.gemspec CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -46,16 +46,5 @@ Gem::Specification.new do |s|
46
46
  s.add_runtime_dependency 'rainbow', '~> 3.0'
47
47
  s.add_runtime_dependency 'ruby-filemagic', '~> 0.7.2'
48
48
  s.add_runtime_dependency 'slop', '~> 4.6'
49
- s.add_development_dependency 'aruba', '~> 0.14.1'
50
- s.add_development_dependency 'codecov', '0.6.0'
51
- s.add_development_dependency 'cucumber', '8.0.0'
52
- s.add_development_dependency 'minitest', '5.16.2'
53
- s.add_development_dependency 'rake', '13.0.6'
54
- s.add_development_dependency 'rdoc', '6.4.0'
55
- s.add_development_dependency 'rspec-rails', '5.1.2'
56
- s.add_development_dependency 'rubocop', '1.32.0'
57
- s.add_development_dependency 'rubocop-rspec', '2.12.1'
58
- s.add_development_dependency 'slop', '4.9.2'
59
- s.add_development_dependency 'xcop', '0.7.1'
60
49
  s.metadata['rubygems_mfa_required'] = 'true'
61
50
  end
data/test/test__helper.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -22,10 +22,6 @@ $stdout.sync = true
22
22
 
23
23
  require 'simplecov'
24
24
  SimpleCov.start
25
- if ENV['CI'] == 'true'
26
- require 'codecov'
27
- SimpleCov.formatter = SimpleCov::Formatter::Codecov
28
- end
29
25
 
30
26
  require 'minitest/autorun'
31
27
  require_relative '../lib/pdd'
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@ require_relative '../lib/pdd/rule/duplicates'
24
24
 
25
25
  # PDD::Rule::MaxDuplicates class test.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class TestMaxDuplicates < Minitest::Test
30
30
  def test_max_duplicates
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@ require_relative '../lib/pdd/rule/estimates'
24
24
 
25
25
  # PDD::Rule::Estimate module tests.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class TestEstimates < Minitest::Test
30
30
  def test_min
data/test/test_many.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -25,7 +25,7 @@ require_relative '../lib/pdd/sources'
25
25
 
26
26
  # Test many puzzles to make sure their IDs are correct.
27
27
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
28
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
28
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
29
29
  # License:: MIT
30
30
  class TestMany < Minitest::Test
31
31
  def test_parsing
data/test/test_pdd.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -26,7 +26,7 @@ require_relative '../lib/pdd'
26
26
 
27
27
  # PDD main module test.
28
28
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
29
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
29
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
30
30
  # License:: MIT
31
31
  class TestPDD < Minitest::Test
32
32
  def test_basic
data/test/test_roles.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@ require_relative '../lib/pdd/rule/roles'
24
24
 
25
25
  # PDD::Rule::Role module tests.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class TestRoles < Minitest::Test
30
30
  def test_incorrect_role
data/test/test_source.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -26,7 +26,7 @@ require_relative 'test__helper'
26
26
 
27
27
  # Source test.
28
28
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
29
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
29
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
30
30
  # License:: MIT
31
31
  class TestSource < Minitest::Test
32
32
  def test_parsing
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/test/test_sources.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -26,7 +26,7 @@ require_relative '../lib/pdd/sources'
26
26
 
27
27
  # Sources test.
28
28
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
29
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
29
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
30
30
  # License:: MIT
31
31
  class TestSources < Minitest::Test
32
32
  def test_iterator
@@ -54,7 +54,7 @@ class TestSources < Minitest::Test
54
54
 
55
55
  def test_detects_all_text_files
56
56
  in_temp([]) do |dir|
57
- exts = %w[(xsl java rb cpp apt)]
57
+ exts = %w[(xsl java rb cpp apt js xml c go h txt)]
58
58
  exts.each do |ext|
59
59
  File.write(File.join(dir, "test.#{ext}"), 'text')
60
60
  end
@@ -74,6 +74,14 @@ class TestSources < Minitest::Test
74
74
  end
75
75
  end
76
76
 
77
+ def test_detects_js_file
78
+ in_temp(['a.js']) do |dir|
79
+ File.write(File.join(dir, 'a.js'), "#!/usr/bin/env node\nconsole.log('Hi!');")
80
+ list = PDD::Sources.new(dir).fetch
81
+ assert_equal 1, list.size
82
+ end
83
+ end
84
+
77
85
  def test_excludes_by_pattern
78
86
  in_temp(['a/first.txt', 'b/c/d/second.txt']) do |dir|
79
87
  list = PDD::Sources.new(dir).exclude('b/c/d/second.txt').fetch
data/test/test_text.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@ require_relative '../lib/pdd/rule/text'
24
24
 
25
25
  # PDD::Rule::Text module tests.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2014-2022 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2014-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class TestText < Minitest::Test
30
30
  def test_min_words
data/utils/glob.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2014-2022 Yegor Bugayenko
1
+ # Copyright (c) 2014-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pdd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.1
4
+ version: 0.23.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-20 00:00:00.000000000 Z
11
+ date: 2023-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -66,160 +66,6 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '4.6'
69
- - !ruby/object:Gem::Dependency
70
- name: aruba
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: 0.14.1
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: 0.14.1
83
- - !ruby/object:Gem::Dependency
84
- name: codecov
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - '='
88
- - !ruby/object:Gem::Version
89
- version: 0.6.0
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - '='
95
- - !ruby/object:Gem::Version
96
- version: 0.6.0
97
- - !ruby/object:Gem::Dependency
98
- name: cucumber
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - '='
102
- - !ruby/object:Gem::Version
103
- version: 8.0.0
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - '='
109
- - !ruby/object:Gem::Version
110
- version: 8.0.0
111
- - !ruby/object:Gem::Dependency
112
- name: minitest
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - '='
116
- - !ruby/object:Gem::Version
117
- version: 5.16.2
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - '='
123
- - !ruby/object:Gem::Version
124
- version: 5.16.2
125
- - !ruby/object:Gem::Dependency
126
- name: rake
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - '='
130
- - !ruby/object:Gem::Version
131
- version: 13.0.6
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - '='
137
- - !ruby/object:Gem::Version
138
- version: 13.0.6
139
- - !ruby/object:Gem::Dependency
140
- name: rdoc
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - '='
144
- - !ruby/object:Gem::Version
145
- version: 6.4.0
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - '='
151
- - !ruby/object:Gem::Version
152
- version: 6.4.0
153
- - !ruby/object:Gem::Dependency
154
- name: rspec-rails
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - '='
158
- - !ruby/object:Gem::Version
159
- version: 5.1.2
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - '='
165
- - !ruby/object:Gem::Version
166
- version: 5.1.2
167
- - !ruby/object:Gem::Dependency
168
- name: rubocop
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - '='
172
- - !ruby/object:Gem::Version
173
- version: 1.32.0
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - '='
179
- - !ruby/object:Gem::Version
180
- version: 1.32.0
181
- - !ruby/object:Gem::Dependency
182
- name: rubocop-rspec
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - '='
186
- - !ruby/object:Gem::Version
187
- version: 2.12.1
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - '='
193
- - !ruby/object:Gem::Version
194
- version: 2.12.1
195
- - !ruby/object:Gem::Dependency
196
- name: slop
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - '='
200
- - !ruby/object:Gem::Version
201
- version: 4.9.2
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - '='
207
- - !ruby/object:Gem::Version
208
- version: 4.9.2
209
- - !ruby/object:Gem::Dependency
210
- name: xcop
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - '='
214
- - !ruby/object:Gem::Version
215
- version: 0.7.1
216
- type: :development
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - '='
221
- - !ruby/object:Gem::Version
222
- version: 0.7.1
223
69
  description: Collects PDD puzzles from a source code base
224
70
  email: yegor256@gmail.com
225
71
  executables:
@@ -321,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
321
167
  - !ruby/object:Gem::Version
322
168
  version: '0'
323
169
  requirements: []
324
- rubygems_version: 3.1.2
170
+ rubygems_version: 3.2.15
325
171
  signing_key:
326
172
  specification_version: 4
327
173
  summary: Puzzle Driven Development collector