rdm 0.4.19 → 0.5.0

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: 67aa6a9d7a25fc2a4453684a55772e59ca5304ff097b2f115eadbf6a4d3862a4
4
- data.tar.gz: a35e83a3002b1a4143b6cf1b1f336e350caf8d3bec8c834e8ea5d5312e9b471d
3
+ metadata.gz: e2a496f156083649520c2b31ec5d3b879dd7b82f5d9a0c0d135600c60f2ddfe5
4
+ data.tar.gz: 1c7f46a201ef145fc4a121a5ab6819d0adf8c80ab54efe6817c9b1e010ce62f3
5
5
  SHA512:
6
- metadata.gz: 3aa14248780cd0b00516e758ff9cc31c3c0b269d14d2f785cbdfbd7862175c9dedc720814f503b150614f62e5c9ebfb81d4e94f1c99d2e95d8ac02d7471a3f23
7
- data.tar.gz: 5b33aa37a0e1ff1b07dd7c8704cfa21fbba11ac57ce620b95eee81d81e5a17e3d58843b9c07c750e65b1d5bca911c70f207dda407e175f357043c6aff7c450d6
6
+ metadata.gz: 727b35ff518220400fa69d43c95c3bb8fd9f6409d560d426479cab6b7ad4337749cd0c21a249b307e4e89d4660cfb8e5a6c3a6ac1bd6a1654887850a3b594a9a
7
+ data.tar.gz: 49025fb2d65a5e7e131761c6d1814b7568df3b32e34d040faac1205c440e127296bd4dd92cbae5db4d6eaecabba4de1f0b1bfbda9f2f20e90ce41790ce6856cd
data/.gitignore CHANGED
@@ -3,3 +3,4 @@ Package.rb.lock
3
3
  pkg
4
4
  coverage/
5
5
  .byebug_history
6
+ .idea
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.2
data/Gemfile CHANGED
@@ -3,5 +3,5 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  group :test do
6
- gem "rubocop", "~> 0.46"
6
+ gem "rubocop", "~> 0.93"
7
7
  end
data/Gemfile.lock CHANGED
@@ -1,40 +1,42 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rdm (0.4.19)
4
+ rdm (0.4.20)
5
5
  activesupport
6
- commander (~> 4.4)
6
+ commander (~> 4.6)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (5.2.4.4)
11
+ activesupport (7.0.4.3)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
- i18n (>= 0.7, < 2)
14
- minitest (~> 5.1)
15
- tzinfo (~> 1.1)
16
- ast (2.3.0)
13
+ i18n (>= 1.6, < 2)
14
+ minitest (>= 5.1)
15
+ tzinfo (~> 2.0)
16
+ ast (2.4.1)
17
17
  byebug (9.0.6)
18
18
  codecov (0.2.5)
19
19
  colorize
20
20
  json
21
21
  simplecov
22
22
  colorize (0.8.1)
23
- commander (4.5.2)
23
+ commander (4.6.0)
24
24
  highline (~> 2.0.0)
25
- concurrent-ruby (1.1.7)
25
+ concurrent-ruby (1.2.2)
26
26
  diff-lcs (1.3)
27
27
  docile (1.3.2)
28
28
  highline (2.0.3)
29
- i18n (1.8.5)
29
+ i18n (1.13.0)
30
30
  concurrent-ruby (~> 1.0)
31
31
  json (2.3.1)
32
- minitest (5.14.2)
33
- parser (2.3.3.1)
34
- ast (~> 2.2)
35
- powerpack (0.1.1)
36
- rainbow (2.2.1)
37
- rake (12.0.0)
32
+ minitest (5.18.0)
33
+ parallel (1.19.2)
34
+ parser (2.7.2.0)
35
+ ast (~> 2.4.1)
36
+ rainbow (3.0.0)
37
+ rake (13.0.1)
38
+ regexp_parser (1.8.2)
39
+ rexml (3.2.4)
38
40
  rspec (3.5.0)
39
41
  rspec-core (~> 3.5.0)
40
42
  rspec-expectations (~> 3.5.0)
@@ -48,22 +50,26 @@ GEM
48
50
  diff-lcs (>= 1.2.0, < 2.0)
49
51
  rspec-support (~> 3.5.0)
50
52
  rspec-support (3.5.0)
51
- rubocop (0.46.0)
52
- parser (>= 2.3.1.1, < 3.0)
53
- powerpack (~> 0.1)
54
- rainbow (>= 1.99.1, < 3.0)
53
+ rubocop (0.93.1)
54
+ parallel (~> 1.10)
55
+ parser (>= 2.7.1.5)
56
+ rainbow (>= 2.2.2, < 4.0)
57
+ regexp_parser (>= 1.8)
58
+ rexml
59
+ rubocop-ast (>= 0.6.0)
55
60
  ruby-progressbar (~> 1.7)
56
- unicode-display_width (~> 1.0, >= 1.0.1)
57
- ruby-progressbar (1.8.1)
61
+ unicode-display_width (>= 1.4.0, < 2.0)
62
+ rubocop-ast (0.8.0)
63
+ parser (>= 2.7.1.5)
64
+ ruby-progressbar (1.10.1)
58
65
  simplecov (0.17.1)
59
66
  docile (~> 1.1)
60
67
  json (>= 1.8, < 3)
61
68
  simplecov-html (~> 0.10.0)
62
69
  simplecov-html (0.10.2)
63
- thread_safe (0.3.6)
64
- tzinfo (1.2.7)
65
- thread_safe (~> 0.1)
66
- unicode-display_width (1.1.2)
70
+ tzinfo (2.0.6)
71
+ concurrent-ruby (~> 1.0)
72
+ unicode-display_width (1.7.0)
67
73
 
68
74
  PLATFORMS
69
75
  ruby
@@ -75,7 +81,7 @@ DEPENDENCIES
75
81
  rake
76
82
  rdm!
77
83
  rspec
78
- rubocop (~> 0.46)
84
+ rubocop (~> 0.93)
79
85
 
80
86
  BUNDLED WITH
81
- 2.1.4
87
+ 2.4.13
data/README.md CHANGED
@@ -1,13 +1,20 @@
1
- # Rdm (Ruby Dependecy Manager)
2
- [![Build Status](https://travis-ci.org/ddd-ruby/rdm.png)](https://travis-ci.org/ddd-ruby/rdm)
1
+ # Rdm (Ruby Dependency Manager)
3
2
  [![Code Climate](https://codeclimate.com/github/ddd-ruby/rdm/badges/gpa.svg)](https://codeclimate.com/github/ddd-ruby/rdm)
4
- [![codecov](https://codecov.io/gh/ddd-ruby/rdm/branch/master/graph/badge.svg)](https://codecov.io/gh/ddd-ruby/rdm)
5
- [![Dependency Status](https://gemnasium.com/ddd-ruby/rdm.png)](https://gemnasium.com/ddd-ruby/rdm)
6
3
 
7
4
 
8
5
  Ruby dependency manager, helps managing local package dependencies.
9
6
  See sample application in "example" folder.
10
7
 
8
+ ## Installation
9
+
10
+
11
+ ```bash
12
+ # For Ruby >= 3.0
13
+ gem install rdm
14
+
15
+ # For Ruby < 3.0
16
+ gem install rdm -v 0.4.20
17
+ ```
11
18
 
12
19
  ## Setup
13
20
  You can initialize a project with `rdm`:
data/bin/rdm CHANGED
@@ -39,7 +39,7 @@ class RdmCliRunner
39
39
  options_hash.delete(:trace)
40
40
 
41
41
  options_with_defaults = defaults.merge!(options_hash)
42
- Rdm::CLI::Init.run(options_with_defaults)
42
+ Rdm::CLI::Init.run(**options_with_defaults)
43
43
  end
44
44
  end
45
45
 
@@ -68,7 +68,7 @@ class RdmCliRunner
68
68
  options_hash.delete(:trace)
69
69
 
70
70
  options_with_defaults = defaults.merge!(options_hash)
71
- Rdm::CLI::GenPackage.run(options_with_defaults)
71
+ Rdm::CLI::GenPackage.run(**options_with_defaults)
72
72
  end
73
73
  end
74
74
 
@@ -79,7 +79,7 @@ class RdmCliRunner
79
79
  c.example 'show list of modified packages from master',
80
80
  'rdm git.diff master'
81
81
 
82
- c.action do |args, options|
82
+ c.action do |args, _|
83
83
  revision = (args.first || "HEAD")
84
84
  options = {
85
85
  path: File.expand_path(`pwd`.chomp),
@@ -138,7 +138,7 @@ class RdmCliRunner
138
138
  c.summary = '> ' + c.description
139
139
  c.example 'show dependencies for `commands` package', 'rdm gen.deps commands'
140
140
 
141
- c.action do |args, options|
141
+ c.action do |args, _|
142
142
  package_name = args.first || ""
143
143
 
144
144
  Rdm::CLI::DependenciesController.run(
@@ -217,7 +217,7 @@ class RdmCliRunner
217
217
  c.example 'run tests for packages modified from specified branch',
218
218
  'rdm rspec.diff_run master'
219
219
 
220
- c.action do |args, options|
220
+ c.action do |args, _|
221
221
  revision = args[0]
222
222
 
223
223
  ENV['RUBY_ENV'] = 'test'
data/example/Gemfile.lock CHANGED
@@ -1,25 +1,27 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rdm (0.3.4)
4
+ rdm (0.4.19)
5
5
  activesupport
6
6
  commander (~> 4.4)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- activesupport (5.1.2)
11
+ activesupport (6.0.3.3)
12
12
  concurrent-ruby (~> 1.0, >= 1.0.2)
13
- i18n (~> 0.7)
13
+ i18n (>= 0.7, < 2)
14
14
  minitest (~> 5.1)
15
15
  tzinfo (~> 1.1)
16
- commander (4.4.3)
17
- highline (~> 1.7.2)
18
- concurrent-ruby (1.0.5)
16
+ zeitwerk (~> 2.2, >= 2.2.2)
17
+ commander (4.5.2)
18
+ highline (~> 2.0.0)
19
+ concurrent-ruby (1.1.7)
19
20
  diff-lcs (1.3)
20
- highline (1.7.8)
21
- i18n (0.8.4)
22
- minitest (5.10.2)
21
+ highline (2.0.3)
22
+ i18n (1.8.5)
23
+ concurrent-ruby (~> 1.0)
24
+ minitest (5.14.2)
23
25
  rspec (3.6.0)
24
26
  rspec-core (~> 3.6.0)
25
27
  rspec-expectations (~> 3.6.0)
@@ -35,8 +37,9 @@ GEM
35
37
  rspec-support (3.6.0)
36
38
  sequel (4.48.0)
37
39
  thread_safe (0.3.6)
38
- tzinfo (1.2.3)
40
+ tzinfo (1.2.7)
39
41
  thread_safe (~> 0.1)
42
+ zeitwerk (2.4.0)
40
43
 
41
44
  PLATFORMS
42
45
  ruby
@@ -47,4 +50,4 @@ DEPENDENCIES
47
50
  sequel
48
51
 
49
52
  BUNDLED WITH
50
- 1.15.1
53
+ 2.1.4
@@ -0,0 +1 @@
1
+ Repository spec working here!
@@ -1,5 +1,5 @@
1
1
  describe 'It works' do
2
2
  it "works" do
3
- File.open('fixture.txt', 'w') {|f| f.write('Repository spec working here!')}
3
+ File.open('fixture.txt', 'w') {|f| f.write('Repository spec working here!')}
4
4
  end
5
5
  end
@@ -5,7 +5,7 @@ module Rdm
5
5
 
6
6
  class << self
7
7
  def compile(opts = {})
8
- Rdm::CLI::CompilePackage.new(opts).compile
8
+ Rdm::CLI::CompilePackage.new(**opts).compile
9
9
  end
10
10
  end
11
11
 
@@ -32,7 +32,7 @@ module Rdm
32
32
  return
33
33
  end
34
34
 
35
- if Dir.exists?(@compile_path)
35
+ if Dir.exist?(@compile_path)
36
36
  puts "Destination directory exists. Overwrite it? (y/n)"
37
37
  return unless @overwrite_directory.call
38
38
  end
@@ -80,7 +80,7 @@ module Rdm
80
80
  rendered_abs_path = Rdm::Templates::TemplateRenderer.handle(get_destination_path(path), @locals)
81
81
  rendered_rel_path = Pathname.new(rendered_abs_path).relative_path_from Pathname.new(project_path)
82
82
 
83
- if File.file?(rendered_abs_path) && File.exists?(rendered_abs_path)
83
+ if File.file?(rendered_abs_path) && File.exist?(rendered_abs_path)
84
84
  @stdout.puts "Warning! #{rendered_rel_path} already exists. Skipping file creation..."
85
85
  next
86
86
  end
@@ -20,7 +20,7 @@ module Rdm
20
20
  end
21
21
 
22
22
  def compile
23
- FileUtils.rm_rf(@compile_path) if Dir.exists?(@compile_path)
23
+ FileUtils.rm_rf(@compile_path) if Dir.exist?(@compile_path)
24
24
  FileUtils.mkdir_p(@compile_path)
25
25
 
26
26
  dependent_packages = Rdm::Handlers::DependenciesHandler.show_packages(
@@ -57,7 +57,7 @@ module Rdm
57
57
  end
58
58
 
59
59
  FileUtils.cp_r(File.join(@project_path, 'configs'), File.join(@compile_path, 'configs'))
60
- if Dir.exists?(File.join(@project_path, Rdm.settings.env_files_dir))
60
+ if Dir.exist?(File.join(@project_path, Rdm.settings.env_files_dir))
61
61
  FileUtils.cp_r(
62
62
  File.join(@project_path, Rdm.settings.env_files_dir),
63
63
  File.join(@compile_path, Rdm.settings.env_files_dir)
@@ -72,7 +72,7 @@ class Rdm::SourceParser
72
72
  def init_and_set_env_variables(source)
73
73
  return unless settings.read_setting(:env_file_name)
74
74
 
75
- unless File.exists?(env_file_path)
75
+ unless File.exist?(env_file_path)
76
76
  @stdout.puts "WARNING! Environment file '#{settings.read_setting(:env_file_name)}' was not found. Please, add #{env_file_path} file..."
77
77
  return
78
78
  end
@@ -1,3 +1,7 @@
1
1
  class Rdm::SpecRunner::CommandParams
2
- attr_accessor :package_name, :package_path, :spec_matcher, :spec_count, :command
2
+ attr_accessor :package_name, :package_path, :spec_matcher, :spec_count, :command, :exitstatus
3
+
4
+ def success?
5
+ @exitstatus == 0
6
+ end
3
7
  end
@@ -27,7 +27,7 @@ class Rdm::SpecRunner::Runner
27
27
  @stdout = stdout
28
28
  @show_output = show_output
29
29
  @from = from
30
- @command_list = []
30
+ @command_params_list = []
31
31
  end
32
32
 
33
33
  def run
@@ -98,7 +98,7 @@ class Rdm::SpecRunner::Runner
98
98
  def prepare!
99
99
  prepared_command_params = []
100
100
  no_specs_packages = []
101
- @command_list = []
101
+ @command_params_list = []
102
102
  prepare_command_params
103
103
  prepare_no_specs_packages
104
104
  prepare_command
@@ -125,9 +125,9 @@ class Rdm::SpecRunner::Runner
125
125
 
126
126
  def prepare_command
127
127
  if @package_name
128
- @command_list += prepare_single_package_command(@package_name)
128
+ @command_params_list += prepare_single_package_command(@package_name)
129
129
  else
130
- @command_list += prepare_commands_for_packages(prepared_command_params)
130
+ @command_params_list += prepare_commands_for_packages(prepared_command_params)
131
131
  end
132
132
  end
133
133
 
@@ -187,7 +187,7 @@ class Rdm::SpecRunner::Runner
187
187
  EOF
188
188
  end
189
189
 
190
- running_packages.map(&:command)
190
+ running_packages
191
191
  end
192
192
 
193
193
  def display_missing_specs
@@ -203,11 +203,23 @@ class Rdm::SpecRunner::Runner
203
203
  end
204
204
 
205
205
  def execute_command
206
- has_failed_packages = @command_list
207
- .map {|cmd| eval(cmd); $?}
208
- .reject {|result| result.success?}
209
- .any?
206
+ @command_params_list.each do |command_param|
207
+ eval(command_param.command);
210
208
 
211
- exit(1) if has_failed_packages
209
+ command_param.exitstatus = $?.exitstatus
210
+ end
211
+
212
+ failed = @command_params_list.select {|cmd_param| !cmd_param.success?}
213
+
214
+ if failed.any?
215
+ total_count = @command_params_list.count
216
+ failed_count = failed.count
217
+
218
+ print_message("#{failed_count} of #{total_count} packages failed:")
219
+ print_message(failed.map(&:package_name))
220
+ print_message("\n")
221
+
222
+ exit(1)
223
+ end
212
224
  end
213
225
  end
@@ -13,7 +13,7 @@ class Rdm::SpecRunner::SpecFilenameMatcher
13
13
  def find_matches
14
14
  expected_filename = File.join(@package_path, @spec_matcher)
15
15
 
16
- if File.exists?(expected_filename)
16
+ if File.exist?(expected_filename)
17
17
  return Rdm::Utils::FileUtils.relative_path(path: expected_filename, from: @package_path).split
18
18
  end
19
19
 
@@ -29,7 +29,7 @@ module Rdm
29
29
  def template_file_path(template_name, relative_path)
30
30
  file_path = [detect_template_folder(template_name), DEFAULT_TEMPLATES_DIRECTORY]
31
31
  .map {|folder| File.join(folder, relative_path)}
32
- .detect {|file| File.exists?(file)}
32
+ .detect {|file| File.exist?(file)}
33
33
 
34
34
  raise Rdm::Errors::TemplateFileDoesNotExists if file_path.nil?
35
35
 
data/lib/rdm/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rdm
2
- VERSION = '0.4.19'.freeze
2
+ VERSION = '0.5.0'.freeze
3
3
  end
data/rdm.gemspec CHANGED
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency "byebug"
23
23
  spec.add_development_dependency "codecov"
24
24
  spec.add_dependency "activesupport"
25
- spec.add_dependency "commander", "~> 4.4"
25
+ spec.add_dependency "commander", "~> 4.6"
26
26
  end
@@ -55,7 +55,7 @@ describe Rdm::ConfigManager do
55
55
 
56
56
  describe "#update_using_hash" do
57
57
  before :each do
58
- subject.update_using_hash(
58
+ subject.update_using_hash({
59
59
  database: {
60
60
  username: "foo",
61
61
  password: "bar"
@@ -65,7 +65,7 @@ describe Rdm::ConfigManager do
65
65
  published: true,
66
66
  draft: false,
67
67
  features: ["dependency_manager", "config_manager"]
68
- )
68
+ })
69
69
  end
70
70
 
71
71
  it "returns given value for string" do
@@ -96,12 +96,12 @@ describe Rdm::ConfigManager do
96
96
 
97
97
  context "when already has config" do
98
98
  before :each do
99
- subject.update_using_hash(
100
- database: {
101
- username: "new_username",
102
- password: "new_password"
103
- }
104
- )
99
+ subject.update_using_hash({
100
+ database: {
101
+ username: "new_username",
102
+ password: "new_password"
103
+ }
104
+ })
105
105
  end
106
106
 
107
107
  it "keeps old configs" do
@@ -116,13 +116,13 @@ describe Rdm::ConfigManager do
116
116
 
117
117
  describe "to_h" do
118
118
  before :each do
119
- subject.update_using_hash(
119
+ subject.update_using_hash({
120
120
  site_name: "Sample app",
121
121
  database: {
122
122
  username: "username",
123
123
  password: "password"
124
124
  }
125
- )
125
+ })
126
126
  end
127
127
 
128
128
  it "returns attributes in root scope" do
@@ -45,7 +45,7 @@ describe Rdm::Packages::CompilerService do
45
45
 
46
46
  it "deletes old unused package from file structure" do
47
47
  expect(
48
- File.exists?(File.join(fixed_compile_path, 'application/web/package/web.rb'))
48
+ File.exist?(File.join(fixed_compile_path, 'application/web/package/web.rb'))
49
49
  ).to be false
50
50
  end
51
51
 
@@ -72,16 +72,16 @@ describe Rdm::Packages::CompilerService do
72
72
  end
73
73
 
74
74
  it "creates folder" do
75
- expect(Dir.exists?(compile_path('repository'))).to be true
75
+ expect(Dir.exist?(compile_path('repository'))).to be true
76
76
  end
77
77
 
78
78
  it "creates Rdm.packges" do
79
- expect(File.exists?(source_path('repository'))).to be true
79
+ expect(File.exist?(source_path('repository'))).to be true
80
80
  end
81
81
 
82
82
  it "copies files structure from original package" do
83
83
  expect(
84
- File.exists?(File.join(compile_path('repository'), 'infrastructure/repository/package/repository.rb'))
84
+ File.exist?(File.join(compile_path('repository'), 'infrastructure/repository/package/repository.rb'))
85
85
  ).to be true
86
86
  end
87
87
 
@@ -108,11 +108,11 @@ describe Rdm::Packages::CompilerService do
108
108
 
109
109
  it "copies files structure for each dependent package" do
110
110
  expect(
111
- File.exists?(File.join(compile_path('web'), 'domain/core/package/core.rb'))
111
+ File.exist?(File.join(compile_path('web'), 'domain/core/package/core.rb'))
112
112
  ).to be true
113
113
 
114
114
  expect(
115
- File.exists?(File.join(compile_path('web'), 'application/web/package/web.rb'))
115
+ File.exist?(File.join(compile_path('web'), 'application/web/package/web.rb'))
116
116
  ).to be true
117
117
  end
118
118
 
@@ -15,7 +15,7 @@ describe Rdm::SpecRunner::SpecFilenameMatcher do
15
15
  it 'returns array with file_path matches' do
16
16
  expect(
17
17
  subject.find_matches(package_path: package_path, spec_matcher: existing_file)
18
- ).to eq([existing_file])
18
+ ).to match_array([existing_file])
19
19
  end
20
20
  end
21
21
 
@@ -23,7 +23,7 @@ describe Rdm::SpecRunner::SpecFilenameMatcher do
23
23
  it 'returns array of relative to package matches' do
24
24
  expect(
25
25
  subject.find_matches(package_path: package_path, spec_matcher: short_filename)
26
- ).to match(["spec/core/sample_service_spec.rb", "spec/core/one_more_spec.rb"])
26
+ ).to match_array(["spec/core/sample_service_spec.rb", "spec/core/one_more_spec.rb"])
27
27
  end
28
28
  end
29
29
  end
@@ -33,7 +33,7 @@ describe Rdm::SpecRunner do
33
33
  stdin: SpecLogger.new(stdin: "exit\n")
34
34
  )
35
35
 
36
- expect(stdout.output).to match(["Following specs match your input:", "1. spec/core/sample_service_spec.rb\n2. spec/core/one_more_spec.rb", "Enter space-separated file numbers, ex: '1 2': "])
36
+ expect(stdout.output).to match(["Following specs match your input:", "1. spec/core/one_more_spec.rb\n2. spec/core/sample_service_spec.rb", "Enter space-separated file numbers, ex: '1 2': "])
37
37
  end
38
38
  end
39
39
  end
data/spec/spec_helper.rb CHANGED
@@ -33,7 +33,7 @@ RSpec.configure do |config|
33
33
  end
34
34
 
35
35
  def ensure_exists(file)
36
- expect(File.exists?(file)).to be true
36
+ expect(File.exist?(file)).to be true
37
37
  end
38
38
 
39
39
  def ensure_content(file, content)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rdm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.19
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Droid Labs
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-01 00:00:00.000000000 Z
11
+ date: 2023-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '4.4'
103
+ version: '4.6'
104
104
  type: :runtime
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: '4.4'
110
+ version: '4.6'
111
111
  description: Ruby Dependency Manager
112
112
  email:
113
113
  executables:
@@ -118,6 +118,7 @@ extra_rdoc_files: []
118
118
  files:
119
119
  - ".gitignore"
120
120
  - ".rubocop.yml"
121
+ - ".ruby-version"
121
122
  - ".travis.yml"
122
123
  - Gemfile
123
124
  - Gemfile.lock
@@ -164,6 +165,7 @@ files:
164
165
  - example/env_files/production.env
165
166
  - example/env_files/test.env
166
167
  - example/infrastructure/repository/Package.rb
168
+ - example/infrastructure/repository/fixture.txt
167
169
  - example/infrastructure/repository/package/repository.rb
168
170
  - example/infrastructure/repository/package/repository/sample_repository.rb
169
171
  - example/infrastructure/repository/spec/example_spec.rb
@@ -298,7 +300,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
298
300
  - !ruby/object:Gem::Version
299
301
  version: '0'
300
302
  requirements: []
301
- rubygems_version: 3.0.8
303
+ rubygems_version: 3.3.7
302
304
  signing_key:
303
305
  specification_version: 4
304
306
  summary: Ruby Dependency Manager