reapack-index 1.2.3rc2 → 1.2.4

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: d784a376ff02ae17a66655bde854cfd515f570d48ebcd34b43d11e91e8f568b0
4
- data.tar.gz: 8f3ed362da5976afadd52d71e27ebfa209b0f17e69711f5cb44415d20f39e1c3
3
+ metadata.gz: 8870ea144c45a078d42c2820e0006ed8442e6f68781cf4ca33e5d43f3db2990e
4
+ data.tar.gz: 691b6185227d02a13cf7de88cdf78f0a47a856fbc594705b6e7495bf21cbe4af
5
5
  SHA512:
6
- metadata.gz: 463ae58c7b47ef181738acb3e688c97125d997843bc8e05298b180c480963b1685eccacccc12781a7dc61b159218a27c3a529e9914c515f02df6b0ab5ab58b4f
7
- data.tar.gz: b2b28025f20b4b0f0aea9cccd791954a023bb39d5ca91af5460f15a00b189ed271e3785732bcff3079b9b8410bf4f7a823717c40238bbf34ac8cd67eac3451bb
6
+ metadata.gz: 318e737d716535a7068120ab8b4e14f5cdb15ed65855b3e9b4daecdf4eb0eb11db4fdc8af6936bd80fe98e9472b51ef450154662338f1c6d57215c394c35e5be
7
+ data.tar.gz: 4c043e3db109d871fcc52c55ec60fdaac80c7ec1e0352032d7400868ae86f287c76632ea41569ec3fd3707b232c7bd36919d50b23a2a65aea9c72a98f21e2a66
@@ -0,0 +1,3 @@
1
+ custom:
2
+ - "https://reapack.com/donate"
3
+ - "https://paypal.me/cfillion"
@@ -0,0 +1,21 @@
1
+ name: test
2
+ on: [push, pull_request]
3
+ jobs:
4
+ rake:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ ruby: [2.4, 2.7, '3.0', head]
10
+ steps:
11
+ - name: Fetch repository
12
+ uses: actions/checkout@v2
13
+ - name: Install Pandoc
14
+ run: sudo apt-get install -yy pandoc
15
+ - name: Set up Ruby
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ bundler-cache: true
19
+ ruby-version: ${{ matrix.ruby }}
20
+ - name: Run tests
21
+ run: bundle exec rake
data/README.md CHANGED
@@ -4,13 +4,12 @@ Parent project: [https://github.com/cfillion/reapack](https://github.com/cfillio
4
4
  Subproject: [https://github.com/cfillion/metaheader](https://github.com/cfillion/metaheader)
5
5
 
6
6
  [![Gem Version](https://badge.fury.io/rb/reapack-index.svg)](http://badge.fury.io/rb/reapack-index)
7
- [![Build Status](https://travis-ci.org/cfillion/reapack-index.svg?branch=master)](https://travis-ci.org/cfillion/reapack-index)
8
- [![Coverage Status](https://coveralls.io/repos/cfillion/reapack-index/badge.svg?branch=master&service=github)](https://coveralls.io/github/cfillion/reapack-index?branch=master)
9
- [![Donate](https://www.paypalobjects.com/webstatic/en_US/btn/btn_donate_74x21.png)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=T3DEWBQJAV7WL&lc=CA&item_name=reapack-index%3a%20Package%20indexer%20for%20git-based%20ReaPack%20repositories&no_note=0&cn=Custom%20message&no_shipping=1&currency_code=CAD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted)
7
+ [![Test status](https://github.com/cfillion/reapack-index/workflows/test/badge.svg)](https://github.com/cfillion/reapack-index/actions)
8
+ [![Donate](https://www.paypalobjects.com/webstatic/en_US/btn/btn_donate_74x21.png)](https://reapack.com/donate)
10
9
 
11
10
  ### Installation
12
11
 
13
- Ruby v2.3 or newer must be installed on your computer in order to install
12
+ Ruby v2.4 or newer must be installed on your computer in order to install
14
13
  and use this software.
15
14
  Run the following command from a command prompt (eg. cmd.exe, Terminal.app,
16
15
  XTerm) to install reapack-index:
@@ -209,7 +209,7 @@ private
209
209
  @index.clear
210
210
  failures = []
211
211
 
212
- pkgs = Hash[Dir.glob("#{Regexp.quote(@git.path)}/**/*").sort.map {|abs|
212
+ pkgs = Hash[Find.find(@git.path).sort.map {|abs|
213
213
  rel = @git.relative_path abs
214
214
  @index.files << rel
215
215
 
@@ -1,5 +1,5 @@
1
1
  module ReaPack
2
2
  class Index
3
- VERSION = '1.2.3rc2'
3
+ VERSION = '1.2.4'
4
4
  end
5
5
  end
@@ -146,7 +146,7 @@ class ReaPack::Index
146
146
  diff = @commit.diff
147
147
  end
148
148
 
149
- @diffs ||= diff.each_delta.map {|delta| Git::Diff.new(delta, @parent.nil?, @repo) }
149
+ @diffs = diff.each_delta.map {|delta| Git::Diff.new(delta, @repo) }
150
150
  @diffs.each &block
151
151
  end
152
152
 
@@ -207,16 +207,11 @@ class ReaPack::Index
207
207
  end
208
208
 
209
209
  class Git::Diff
210
- def initialize(delta, is_initial, repo)
210
+ def initialize(delta, repo)
211
211
  @delta, @repo = delta, repo
212
212
 
213
- if is_initial
214
- @status = :added
215
- @file = delta.old_file
216
- else
217
- @status = delta.status.to_sym
218
- @file = delta.new_file
219
- end
213
+ @status = delta.status.to_sym
214
+ @file = delta.new_file
220
215
  end
221
216
 
222
217
  attr_reader :status
@@ -224,7 +219,7 @@ class ReaPack::Index
224
219
  def file
225
220
  @path ||= @file[:path].force_encoding(Encoding::UTF_8)
226
221
  end
227
-
222
+
228
223
  def new_content
229
224
  return if status == :deleted
230
225
  @new_content ||=
@@ -161,9 +161,8 @@ class ReaPack::Index
161
161
  files.map {|file|
162
162
  if line.target
163
163
  if line.target =~ /[\/\\\.]+\z/
164
- new_dir = ReaPack::Index.expand line.target, ''
165
164
  base_file = File.basename file
166
- target = new_dir.empty? ? base_file : File.join(new_dir, base_file)
165
+ target = File.join line.target, base_file
167
166
  else
168
167
  target = line.target
169
168
  end
@@ -9,7 +9,7 @@ class ReaPack::Index
9
9
  PLATFORMS = {
10
10
  all: nil,
11
11
  windows: :all, win32: :windows, win64: :windows,
12
- darwin: :all, darwin32: :darwin, darwin64: :darwin,
12
+ darwin: :all, darwin32: :darwin, darwin64: :darwin, 'darwin-arm64': :darwin,
13
13
  linux: :all, linux32: :linux, linux64: :linux,
14
14
  'linux-armv7l': :linux, 'linux-aarch64': :linux
15
15
  }.freeze
data/lib/reapack/index.rb CHANGED
@@ -3,6 +3,7 @@ require 'reapack/index/gem_version'
3
3
  require 'addressable'
4
4
  require 'colorize'
5
5
  require 'fileutils'
6
+ require 'find'
6
7
  require 'gitable'
7
8
  require 'io/console'
8
9
  require 'metaheader'
@@ -18,10 +18,9 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.required_ruby_version = '>= 2.3'
21
+ spec.required_ruby_version = '>= 2.4'
22
22
 
23
23
  spec.add_development_dependency 'bundler', '~> 2.0'
24
- spec.add_development_dependency 'coveralls', '~> 0.8'
25
24
  spec.add_development_dependency 'minitest', '~> 5.8'
26
25
  spec.add_development_dependency 'rake', '~> 12.0'
27
26
  spec.add_development_dependency 'simplecov', '~> 0.11'
@@ -31,7 +30,7 @@ Gem::Specification.new do |spec|
31
30
  spec.add_runtime_dependency 'gitable', '~> 0.3'
32
31
  spec.add_runtime_dependency 'metaheader', '~> 2.0'
33
32
  spec.add_runtime_dependency 'nokogiri', '~> 1.7'
34
- spec.add_runtime_dependency 'pandoc-ruby', '~> 2.0'
35
- spec.add_runtime_dependency 'rugged', '~> 0.99'
33
+ spec.add_runtime_dependency 'pandoc-ruby', '2.1.4'
34
+ spec.add_runtime_dependency 'rugged', '~> 1.0'
36
35
  spec.add_runtime_dependency 'stable_sort', '~> 1.1'
37
36
  end
@@ -1,8 +1,8 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestCLI ||= Class.new MiniTest::Test
3
+ TestCLI ||= Class.new Minitest::Test
4
4
 
5
- class TestCLI::Check < MiniTest::Test
5
+ class TestCLI::Check < Minitest::Test
6
6
  include CLIHelper
7
7
 
8
8
  def test_pass
@@ -189,4 +189,18 @@ Finished checks for 2 packages with 1 failure
189
189
 
190
190
  assert_match 'Finished checks for 0 packages with 0 failures', stderr
191
191
  end
192
+
193
+ def test_dotfiles
194
+ setup = proc { mkfile 'index.xml', '<index name="test"/>' }
195
+
196
+ _, stderr = capture_io do
197
+ wrapper ['--check'], setup: setup do
198
+ mkfile 'Foo/.gitkeep'
199
+ mkfile 'Chunky/Bacon.lua', "@version 1.0\n@provides ../Foo/.gitkeep"
200
+ @cli.run
201
+ end
202
+ end
203
+
204
+ assert_match 'Finished checks for 1 package with 0 failures', stderr
205
+ end
192
206
  end
@@ -1,8 +1,8 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestCLI ||= Class.new MiniTest::Test
3
+ TestCLI ||= Class.new Minitest::Test
4
4
 
5
- class TestCLI::Metadata < MiniTest::Test
5
+ class TestCLI::Metadata < Minitest::Test
6
6
  include CLIHelper
7
7
 
8
8
  def test_website_link
@@ -1,8 +1,8 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestCLI ||= Class.new MiniTest::Test
3
+ TestCLI ||= Class.new Minitest::Test
4
4
 
5
- class TestCLI::Scan < MiniTest::Test
5
+ class TestCLI::Scan < Minitest::Test
6
6
  include CLIHelper
7
7
 
8
8
  def test_initial_commit
data/test/helper.rb CHANGED
@@ -1,11 +1,7 @@
1
- require 'coveralls'
2
1
  require 'simplecov'
3
2
 
4
- Coveralls::Output.silent = true
5
-
6
3
  SimpleCov.formatters = [
7
4
  SimpleCov::Formatter::HTMLFormatter,
8
- Coveralls::SimpleCov::Formatter,
9
5
  ]
10
6
 
11
7
  SimpleCov.start {
@@ -1,8 +1,8 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestIndex ||= Class.new MiniTest::Test
3
+ TestIndex ||= Class.new Minitest::Test
4
4
 
5
- class TestIndex::Metadata < MiniTest::Test
5
+ class TestIndex::Metadata < Minitest::Test
6
6
  include IndexHelper
7
7
 
8
8
  def test_add_anonymous_link
@@ -1,8 +1,8 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestIndex ||= Class.new MiniTest::Test
3
+ TestIndex ||= Class.new Minitest::Test
4
4
 
5
- class TestIndex::Provides < MiniTest::Test
5
+ class TestIndex::Provides < Minitest::Test
6
6
  include IndexHelper
7
7
 
8
8
  def test_simple
@@ -372,8 +372,9 @@ class TestIndex::Provides < MiniTest::Test
372
372
  @version 1.0
373
373
  @provides
374
374
  source.lua > target.lua
375
- source.png > target.png
375
+ source.png > ./target.png
376
376
  source*.jpg > target_dir/
377
+ source*.jpg > ../target_dir/
377
378
  sub/source.txt > .
378
379
  IN
379
380
 
@@ -382,10 +383,12 @@ class TestIndex::Provides < MiniTest::Test
382
383
  xml = File.read index.path
383
384
 
384
385
  assert_match 'file="target.lua"', xml
385
- assert_match 'file="target.png"', xml
386
+ assert_match 'file="./target.png"', xml
386
387
  assert_match 'file="target_dir/source1.jpg"', xml
387
388
  assert_match 'file="target_dir/source2.jpg"', xml
388
- assert_match 'file="source.txt"', xml
389
+ assert_match 'file="../target_dir/source1.jpg"', xml
390
+ assert_match 'file="../target_dir/source2.jpg"', xml
391
+ assert_match 'file="./source.txt"', xml
389
392
  refute_match 'file="source.png"', xml
390
393
 
391
394
  assert_equal 1,
@@ -1,8 +1,8 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestIndex ||= Class.new MiniTest::Test
3
+ TestIndex ||= Class.new Minitest::Test
4
4
 
5
- class TestIndex::Scan < MiniTest::Test
5
+ class TestIndex::Scan < Minitest::Test
6
6
  include IndexHelper
7
7
 
8
8
  def test_ignore_unknown_type
@@ -1,22 +1,22 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestScanner ||= Class.new MiniTest::Test
3
+ TestScanner ||= Class.new Minitest::Test
4
4
 
5
- class TestScanner::TestMakeUrl < MiniTest::Test
5
+ class TestScanner::TestMakeUrl < Minitest::Test
6
6
  def setup
7
- @cat = MiniTest::Mock.new
7
+ @cat = Minitest::Mock.new
8
8
 
9
- @pkg = MiniTest::Mock.new
9
+ @pkg = Minitest::Mock.new
10
10
  @pkg.expect :path, 'Hello/World.lua'
11
11
  @pkg.expect :path, 'Hello/World.lua'
12
12
 
13
- @ver = MiniTest::Mock.new
13
+ @ver = Minitest::Mock.new
14
14
  @ver.expect :name, '1.0'
15
15
 
16
- @cdetector = MiniTest::Mock.new
16
+ @cdetector = Minitest::Mock.new
17
17
  @cdetector.expect :[], nil, ['Hello/World.lua']
18
18
 
19
- @index = MiniTest::Mock.new
19
+ @index = Minitest::Mock.new
20
20
  @index.expect :cdetector, @cdetector
21
21
 
22
22
  @scanner = ReaPack::Index::Scanner.new @cat, @pkg, nil, @index
@@ -1,24 +1,24 @@
1
1
  require File.expand_path '../../helper', __FILE__
2
2
 
3
- TestScanner ||= Class.new MiniTest::Test
3
+ TestScanner ||= Class.new Minitest::Test
4
4
 
5
- class TestScanner::TestValidation < MiniTest::Test
5
+ class TestScanner::TestValidation < Minitest::Test
6
6
  def setup
7
- @pkg = MiniTest::Mock.new
7
+ @pkg = Minitest::Mock.new
8
8
  @pkg.expect :type, :script
9
9
  @pkg.expect :path, 'cat/test'
10
10
 
11
11
  @mh = MetaHeader.new
12
12
  @mh[:version] = '1.0'
13
13
 
14
- @index = MiniTest::Mock.new
14
+ @index = Minitest::Mock.new
15
15
  @index.expect :cdetector, ReaPack::Index::ConflictDetector.new
16
16
 
17
17
  @scanner = ReaPack::Index::Scanner.new nil, @pkg, @mh, @index
18
18
  end
19
19
 
20
20
  def test_validation
21
- mh_mock = MiniTest::Mock.new
21
+ mh_mock = Minitest::Mock.new
22
22
  mh_mock.expect :alias, nil, [Hash]
23
23
  mh_mock.expect :validate, ['first', 'second'], [Hash, false]
24
24
 
@@ -1,4 +1,4 @@
1
- class TestConflictDetector < MiniTest::Test
1
+ class TestConflictDetector < Minitest::Test
2
2
  include XMLHelper
3
3
 
4
4
  def test_unique
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestChangelog < MiniTest::Test
3
+ class TestChangelog < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def test_create
data/test/test_cli.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestCLI < MiniTest::Test
3
+ class TestCLI < Minitest::Test
4
4
  include CLIHelper
5
5
 
6
6
  def test_help
@@ -153,7 +153,7 @@ class TestCLI < MiniTest::Test
153
153
  end
154
154
 
155
155
  def test_config_unmatched_quote
156
- assert_output '', /unmatched double quote/i do
156
+ assert_output '', /unmatched (double )?quote/i do
157
157
  catch :stop do
158
158
  wrapper [], setup: proc {
159
159
  mkfile '.reapack-index.conf', '--output "'
data/test/test_git.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestGit < MiniTest::Test
3
+ class TestGit < Minitest::Test
4
4
  include GitHelper
5
5
 
6
6
  def setup
data/test/test_index.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestIndex < MiniTest::Test
3
+ class TestIndex < Minitest::Test
4
4
  include IndexHelper
5
5
 
6
6
  def test_is_type
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestMetadata < MiniTest::Test
3
+ class TestMetadata < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def test_website_link
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestNamedNode < MiniTest::Test
3
+ class TestNamedNode < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def setup
data/test/test_package.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestPackage < MiniTest::Test
3
+ class TestPackage < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def test_change_type
data/test/test_parsers.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestParsers < MiniTest::Test
3
+ class TestParsers < Minitest::Test
4
4
  def test_wordpress
5
5
  input = <<-IN
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestProvides < MiniTest::Test
3
+ class TestProvides < Minitest::Test
4
4
  def test_parse_all
5
5
  enum = ReaPack::Index::Provides.parse_each "file1\nfile2"
6
6
  assert_equal 2, enum.to_a.size
@@ -34,7 +34,7 @@ class TestProvides < MiniTest::Test
34
34
 
35
35
  def test_platforms
36
36
  assert_equal [:windows, :win32, :win64,
37
- :darwin, :darwin32, :darwin64,
37
+ :darwin, :darwin32, :darwin64, :'darwin-arm64',
38
38
  :linux, :linux32, :linux64, :'linux-armv7l', :'linux-aarch64'],
39
39
  [
40
40
  '[windows] file',
@@ -43,6 +43,7 @@ class TestProvides < MiniTest::Test
43
43
  '[Darwin]file',
44
44
  ' [ darwin32 ] file',
45
45
  '[win32 darwin64] file',
46
+ '[darwin-arm64] file',
46
47
  '[linux] file',
47
48
  '[linux32] file',
48
49
  '[linux64] file',
data/test/test_scanner.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestScanner < MiniTest::Test
3
+ class TestScanner < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def setup
7
- @mock = MiniTest::Mock.new
7
+ @mock = Minitest::Mock.new
8
8
 
9
9
  @mh = MetaHeader.new
10
10
  @mh[:version] = '1.0'
@@ -17,7 +17,7 @@ class TestScanner < MiniTest::Test
17
17
 
18
18
  @pkg = ReaPack::Index::Package.new @doc.css('reapack').first
19
19
 
20
- @index = MiniTest::Mock.new
20
+ @index = Minitest::Mock.new
21
21
  @index.expect :cdetector, ReaPack::Index::ConflictDetector.new
22
22
  @index.expect :url_template, 'https://google.com/$path'
23
23
  @index.expect :files, ['Hello/World.lua']
data/test/test_source.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestSource < MiniTest::Test
3
+ class TestSource < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def test_escape_url
@@ -156,7 +156,7 @@ class TestSource < MiniTest::Test
156
156
  end
157
157
 
158
158
  def test_auto_main_pkg_type
159
- pkg = MiniTest::Mock.new
159
+ pkg = Minitest::Mock.new
160
160
  pkg.expect :type, :script
161
161
  pkg.expect :topdir, 'Category'
162
162
 
@@ -168,7 +168,7 @@ class TestSource < MiniTest::Test
168
168
  end
169
169
 
170
170
  def test_auto_main_type_override
171
- pkg = MiniTest::Mock.new
171
+ pkg = Minitest::Mock.new
172
172
  pkg.expect :topdir, 'Category'
173
173
 
174
174
  src = ReaPack::Index::Source.new 'http://host/'
@@ -180,7 +180,7 @@ class TestSource < MiniTest::Test
180
180
  end
181
181
 
182
182
  def test_auto_main_midi_editor
183
- pkg = MiniTest::Mock.new
183
+ pkg = Minitest::Mock.new
184
184
  src = ReaPack::Index::Source.new 'http://host/'
185
185
 
186
186
  {
data/test/test_version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  require File.expand_path '../helper', __FILE__
2
2
 
3
- class TestVersion < MiniTest::Test
3
+ class TestVersion < Minitest::Test
4
4
  include XMLHelper
5
5
 
6
6
  def test_set_author
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reapack-index
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3rc2
4
+ version: 1.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - cfillion
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-07 00:00:00.000000000 Z
11
+ date: 2024-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -24,20 +24,6 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '2.0'
27
- - !ruby/object:Gem::Dependency
28
- name: coveralls
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '0.8'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.8'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: minitest
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -154,30 +140,30 @@ dependencies:
154
140
  name: pandoc-ruby
155
141
  requirement: !ruby/object:Gem::Requirement
156
142
  requirements:
157
- - - "~>"
143
+ - - '='
158
144
  - !ruby/object:Gem::Version
159
- version: '2.0'
145
+ version: 2.1.4
160
146
  type: :runtime
161
147
  prerelease: false
162
148
  version_requirements: !ruby/object:Gem::Requirement
163
149
  requirements:
164
- - - "~>"
150
+ - - '='
165
151
  - !ruby/object:Gem::Version
166
- version: '2.0'
152
+ version: 2.1.4
167
153
  - !ruby/object:Gem::Dependency
168
154
  name: rugged
169
155
  requirement: !ruby/object:Gem::Requirement
170
156
  requirements:
171
157
  - - "~>"
172
158
  - !ruby/object:Gem::Version
173
- version: '0.99'
159
+ version: '1.0'
174
160
  type: :runtime
175
161
  prerelease: false
176
162
  version_requirements: !ruby/object:Gem::Requirement
177
163
  requirements:
178
164
  - - "~>"
179
165
  - !ruby/object:Gem::Version
180
- version: '0.99'
166
+ version: '1.0'
181
167
  - !ruby/object:Gem::Dependency
182
168
  name: stable_sort
183
169
  requirement: !ruby/object:Gem::Requirement
@@ -192,7 +178,7 @@ dependencies:
192
178
  - - "~>"
193
179
  - !ruby/object:Gem::Version
194
180
  version: '1.1'
195
- description:
181
+ description:
196
182
  email:
197
183
  - reapack-index@cfillion.ca
198
184
  executables:
@@ -200,8 +186,9 @@ executables:
200
186
  extensions: []
201
187
  extra_rdoc_files: []
202
188
  files:
189
+ - ".github/FUNDING.yml"
190
+ - ".github/workflows/test.yml"
203
191
  - ".gitignore"
204
- - ".travis.yml"
205
192
  - COPYING
206
193
  - Gemfile
207
194
  - README.md
@@ -249,7 +236,7 @@ homepage: https://github.com/cfillion/reapack-index
249
236
  licenses:
250
237
  - GPL-3.0+
251
238
  metadata: {}
252
- post_install_message:
239
+ post_install_message:
253
240
  rdoc_options: []
254
241
  require_paths:
255
242
  - lib
@@ -257,15 +244,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
257
244
  requirements:
258
245
  - - ">="
259
246
  - !ruby/object:Gem::Version
260
- version: '2.3'
247
+ version: '2.4'
261
248
  required_rubygems_version: !ruby/object:Gem::Requirement
262
249
  requirements:
263
- - - ">"
250
+ - - ">="
264
251
  - !ruby/object:Gem::Version
265
- version: 1.3.1
252
+ version: '0'
266
253
  requirements: []
267
- rubygems_version: 3.1.2
268
- signing_key:
254
+ rubygems_version: 3.4.10
255
+ signing_key:
269
256
  specification_version: 4
270
257
  summary: Package indexer for git-based ReaPack repositories
271
258
  test_files:
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.3
4
- - 2.4
5
- - 2.5
6
- - 2.6
7
- - 2.7
8
- before_install:
9
- - gem update bundler
10
- - wget https://github.com/jgm/pandoc/releases/download/2.9.2/pandoc-2.9.2-1-amd64.deb -O pandoc.deb
11
- - sudo dpkg -i pandoc.deb
12
- cache: bundler