ehbrs-tools 0.23.0 → 0.25.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/.avm.yml +4 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +39 -0
  5. data/Gemfile.lock +269 -0
  6. data/exe/ehbrs +2 -2
  7. data/lib/ehbrs/tools/runner/cooking_book/build.rb +52 -0
  8. data/lib/ehbrs/tools/runner/cooking_book.rb +32 -0
  9. data/lib/ehbrs/tools/runner/finances/bb_browser.rb +66 -0
  10. data/lib/ehbrs/{runner/videos/series.rb → tools/runner/finances.rb} +4 -4
  11. data/lib/ehbrs/tools/runner/fs/selected.rb +81 -0
  12. data/lib/ehbrs/tools/runner/fs/used_space.rb +161 -0
  13. data/lib/ehbrs/tools/runner/fs.rb +18 -0
  14. data/lib/ehbrs/tools/runner/google/translate.rb +89 -0
  15. data/lib/ehbrs/tools/runner/google.rb +18 -0
  16. data/lib/ehbrs/tools/runner/music/selected.rb +28 -0
  17. data/lib/ehbrs/tools/runner/music.rb +18 -0
  18. data/lib/ehbrs/tools/runner/self/test.rb +27 -0
  19. data/lib/ehbrs/tools/runner/self.rb +18 -0
  20. data/lib/ehbrs/tools/runner/telegram/send_message.rb +31 -0
  21. data/lib/ehbrs/tools/runner/telegram.rb +28 -0
  22. data/lib/ehbrs/tools/runner/vg/ips.rb +134 -0
  23. data/lib/ehbrs/tools/runner/vg/wii.rb +74 -0
  24. data/lib/ehbrs/tools/runner/vg.rb +18 -0
  25. data/lib/ehbrs/tools/runner/videos/extract.rb +70 -0
  26. data/lib/ehbrs/tools/runner/videos/probe.rb +34 -0
  27. data/lib/ehbrs/tools/runner/videos/series/rename.rb +74 -0
  28. data/lib/ehbrs/tools/runner/videos/series.rb +20 -0
  29. data/lib/ehbrs/tools/runner/videos/unsupported.rb +61 -0
  30. data/lib/ehbrs/{runner/web_utils → tools/runner}/videos.rb +3 -3
  31. data/lib/ehbrs/tools/runner/web_utils/videos/download.rb +75 -0
  32. data/lib/ehbrs/tools/runner/web_utils/videos/upload.rb +77 -0
  33. data/lib/ehbrs/tools/runner/web_utils/videos.rb +20 -0
  34. data/lib/ehbrs/tools/runner/web_utils.rb +26 -0
  35. data/lib/ehbrs/tools/runner.rb +21 -0
  36. data/lib/ehbrs/tools/version.rb +1 -1
  37. data/spec/code/rubocop_spec.rb +3 -0
  38. data/spec/lib/ehbrs/cooking_book/recipe/measure_spec.rb +21 -0
  39. data/spec/lib/ehbrs/observers/base_spec.rb +93 -0
  40. data/spec/lib/ehbrs/tools/runner/fs/used_space_spec.rb +61 -0
  41. data/spec/lib/ehbrs/tools/runner/vg/ips_spec.rb +31 -0
  42. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/expected.rom +0 -0
  43. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_0.ips +0 -0
  44. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_1.ips +0 -0
  45. data/spec/lib/ehbrs/tools/runner/vg/ips_spec_files/source.rom +0 -0
  46. data/spec/lib/ehbrs/tools/runner/videos/probe_spec.rb +19 -0
  47. data/spec/lib/ehbrs/tools/runner/videos/probe_spec_files/fixed.target.yaml +105 -0
  48. data/spec/lib/ehbrs/tools/runner/videos/unsupported_spec.rb +75 -0
  49. data/spec/lib/ehbrs/tools/runner/videos/unsupported_spec_files/dts_audio.probe.yaml +90 -0
  50. data/spec/lib/ehbrs/tools/runner_spec.rb +16 -0
  51. data/spec/lib/ehbrs/vg/wii/game_file_spec.rb +21 -0
  52. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec.rb +11 -0
  53. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.source.witdump +27 -0
  54. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.target.yaml +22 -0
  55. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.source.witdump +28 -0
  56. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.target.yaml +21 -0
  57. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.source.witdump +16 -0
  58. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.target.yaml +19 -0
  59. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.source.witdump +28 -0
  60. data/spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.target.yaml +23 -0
  61. data/spec/lib/ehbrs/vg/wii/wit/path_spec.rb +33 -0
  62. data/spec/spec_helper/videos.rb +30 -0
  63. data/spec/spec_helper/videos_files/stub_source.mp4 +0 -0
  64. data/spec/spec_helper.rb +7 -0
  65. data/vendor/aranha-parsers/aranha-parsers.gemspec +2 -2
  66. data/vendor/aranha-parsers/lib/aranha/parsers/rspec/setup.rb +15 -0
  67. data/vendor/aranha-parsers/lib/aranha/parsers/{spec → rspec}/source_target_fixtures_example.rb +0 -0
  68. data/vendor/aranha-parsers/lib/aranha/parsers/rspec.rb +11 -0
  69. data/vendor/aranha-parsers/lib/aranha/parsers/source_address.rb +10 -8
  70. data/vendor/aranha-parsers/lib/aranha/parsers/version.rb +1 -1
  71. data/vendor/aranha-parsers/spec/lib/rubocop_check_spec.rb +1 -1
  72. data/vendor/aranha-parsers/spec/spec_helper.rb +2 -9
  73. data/vendor/aranha-selenium/aranha-selenium.gemspec +2 -2
  74. data/vendor/aranha-selenium/lib/aranha/selenium/version.rb +1 -1
  75. data/vendor/aranha-selenium/spec/rubocop_check_spec.rb +1 -5
  76. data/vendor/aranha-selenium/spec/spec_helper.rb +2 -98
  77. data/vendor/eac_cli/eac_cli.gemspec +3 -3
  78. data/vendor/eac_cli/lib/eac_cli/config/entry.rb +0 -2
  79. data/vendor/eac_cli/lib/eac_cli/version.rb +1 -1
  80. data/vendor/eac_cli/spec/rubocop_spec.rb +1 -1
  81. data/vendor/eac_cli/spec/spec_helper.rb +2 -101
  82. data/vendor/eac_config/eac_config.gemspec +2 -2
  83. data/vendor/eac_config/lib/eac_config/version.rb +1 -1
  84. data/vendor/eac_config/spec/rubocop_spec.rb +1 -1
  85. data/vendor/eac_config/spec/spec_helper.rb +2 -15
  86. data/vendor/eac_docker/eac_docker.gemspec +2 -2
  87. data/vendor/eac_docker/lib/eac_docker/container.rb +7 -3
  88. data/vendor/eac_docker/lib/eac_docker/debug.rb +15 -0
  89. data/vendor/eac_docker/lib/eac_docker/images/coded.rb +4 -0
  90. data/vendor/eac_docker/lib/eac_docker/images/templatized.rb +16 -2
  91. data/vendor/eac_docker/lib/eac_docker/rspec/setup.rb +17 -0
  92. data/vendor/eac_docker/lib/eac_docker/rspec.rb +2 -10
  93. data/vendor/eac_docker/lib/eac_docker/version.rb +1 -1
  94. data/vendor/eac_docker/spec/rubocop_spec.rb +1 -1
  95. data/vendor/eac_docker/spec/spec_helper.rb +2 -104
  96. data/vendor/eac_ruby_base0/eac_ruby_base0.gemspec +4 -4
  97. data/vendor/eac_ruby_base0/lib/eac_ruby_base0/version.rb +1 -1
  98. data/vendor/eac_ruby_base0/spec/rubocop_spec.rb +1 -1
  99. data/vendor/eac_ruby_base0/spec/spec_helper.rb +2 -101
  100. data/vendor/eac_ruby_utils/eac_ruby_utils.gemspec +1 -1
  101. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/boolean.rb +1 -1
  102. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/envs/executable.rb +15 -3
  103. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry/gem.rb +75 -0
  104. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry.rb +35 -0
  105. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/recursive_builder.rb +51 -0
  106. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/default_setup.rb +20 -0
  107. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup/conditionals.rb +17 -0
  108. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup.rb +12 -0
  109. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup_manager.rb +49 -0
  110. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/version.rb +1 -1
  111. data/vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/recursive_builder_spec.rb +65 -0
  112. data/vendor/eac_ruby_utils/spec/rubocop_check_spec.rb +1 -1
  113. data/vendor/eac_ruby_utils/spec/spec_helper.rb +6 -6
  114. data/vendor/ehbrs_ruby_utils/ehbrs_ruby_utils.gemspec +6 -3
  115. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/finances/bb_browser/docker_image.rb +18 -0
  116. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/patches/object/template.rb +6 -0
  117. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb +1 -1
  118. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/stream.rb +11 -1
  119. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/file/rename.rb +28 -0
  120. data/vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/file.rb +11 -8
  121. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec.rb +13 -0
  122. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.source.yaml +28 -0
  123. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.target.yaml +7 -0
  124. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.source.yaml +49 -0
  125. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.target.yaml +7 -0
  126. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.source.yaml +43 -0
  127. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.target.yaml +7 -0
  128. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.source.yaml +59 -0
  129. data/vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.target.yaml +7 -0
  130. data/vendor/ehbrs_ruby_utils/spec/rubocop_check_spec.rb +1 -5
  131. data/vendor/ehbrs_ruby_utils/spec/spec_helper.rb +2 -98
  132. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Dockerfile +44 -0
  133. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Makefile +35 -0
  134. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/README.md +16 -0
  135. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/firefox.service +8 -0
  136. data/vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/startbrowser.sh +9 -0
  137. metadata +149 -40
  138. data/lib/ehbrs/runner/cooking_book/build.rb +0 -50
  139. data/lib/ehbrs/runner/cooking_book.rb +0 -30
  140. data/lib/ehbrs/runner/finances/bb_browser.rb +0 -35
  141. data/lib/ehbrs/runner/finances.rb +0 -16
  142. data/lib/ehbrs/runner/fs/selected.rb +0 -79
  143. data/lib/ehbrs/runner/fs/used_space.rb +0 -159
  144. data/lib/ehbrs/runner/fs.rb +0 -16
  145. data/lib/ehbrs/runner/google/translate.rb +0 -87
  146. data/lib/ehbrs/runner/google.rb +0 -16
  147. data/lib/ehbrs/runner/music/selected.rb +0 -26
  148. data/lib/ehbrs/runner/music.rb +0 -16
  149. data/lib/ehbrs/runner/self/test.rb +0 -25
  150. data/lib/ehbrs/runner/self.rb +0 -16
  151. data/lib/ehbrs/runner/telegram/send_message.rb +0 -29
  152. data/lib/ehbrs/runner/telegram.rb +0 -26
  153. data/lib/ehbrs/runner/vg/ips.rb +0 -132
  154. data/lib/ehbrs/runner/vg/wii.rb +0 -72
  155. data/lib/ehbrs/runner/vg.rb +0 -16
  156. data/lib/ehbrs/runner/videos/extract.rb +0 -68
  157. data/lib/ehbrs/runner/videos/probe.rb +0 -32
  158. data/lib/ehbrs/runner/videos/series/rename.rb +0 -72
  159. data/lib/ehbrs/runner/videos/unsupported.rb +0 -59
  160. data/lib/ehbrs/runner/videos.rb +0 -16
  161. data/lib/ehbrs/runner/web_utils/videos/download.rb +0 -63
  162. data/lib/ehbrs/runner/web_utils/videos/upload.rb +0 -75
  163. data/lib/ehbrs/runner/web_utils.rb +0 -24
  164. data/lib/ehbrs/runner.rb +0 -19
  165. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/conditional.rb +0 -35
  166. data/vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/stubbed_ssh.rb +0 -44
@@ -0,0 +1,7 @@
1
+ ---
2
+ :codec_long_name: H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
3
+ :codec_name: h264
4
+ :codec_type: :video
5
+ :index: 17
6
+ :language: eng
7
+ :title: "[AnimeRG] Tenshi No Tamago [1080p] [ScavvyKiD]"
@@ -1,7 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_gem_support/spec/examples/rubocop_check'
4
-
5
- RSpec.describe ::RuboCop do
6
- include_examples 'rubocop_check', ::File.expand_path('..', __dir__)
7
- end
3
+ ::EacRubyUtils::Rspec.default_setup.describe_rubocop
@@ -1,100 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # This file was generated by the `rspec --init` command. Conventionally, all
4
- # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
5
- # The generated `.rspec` file contains `--require spec_helper` which will cause
6
- # this file to always be loaded, without a need to explicitly require it in any
7
- # files.
8
- #
9
- # Given that it is always loaded, you are encouraged to keep this file as
10
- # light-weight as possible. Requiring heavyweight dependencies from this file
11
- # will add to the boot time of your test suite on EVERY test run, even for an
12
- # individual file that may not need all of that loaded. Instead, consider making
13
- # a separate helper file that requires the additional dependencies and performs
14
- # the additional setup, and require it from the spec files that actually need
15
- # it.
16
- #
17
- # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
18
- RSpec.configure do |config|
19
- # rspec-expectations config goes here. You can use an alternate
20
- # assertion/expectation library such as wrong or the stdlib/minitest
21
- # assertions if you prefer.
22
- config.expect_with :rspec do |expectations|
23
- # This option will default to `true` in RSpec 4. It makes the `description`
24
- # and `failure_message` of custom matchers include text for helper methods
25
- # defined using `chain`, e.g.:
26
- # be_bigger_than(2).and_smaller_than(4).description
27
- # # => "be bigger than 2 and smaller than 4"
28
- # ...rather than:
29
- # # => "be bigger than 2"
30
- expectations.include_chain_clauses_in_custom_matcher_descriptions = true
31
- end
32
-
33
- # rspec-mocks config goes here. You can use an alternate test double
34
- # library (such as bogus or mocha) by changing the `mock_with` option here.
35
- config.mock_with :rspec do |mocks|
36
- # Prevents you from mocking or stubbing a method that does not exist on
37
- # a real object. This is generally recommended, and will default to
38
- # `true` in RSpec 4.
39
- mocks.verify_partial_doubles = true
40
- end
41
-
42
- # This option will default to `:apply_to_host_groups` in RSpec 4 (and will
43
- # have no way to turn it off -- the option exists only for backwards
44
- # compatibility in RSpec 3). It causes shared context metadata to be
45
- # inherited by the metadata hash of host groups and examples, rather than
46
- # triggering implicit auto-inclusion in groups with matching metadata.
47
- config.shared_context_metadata_behavior = :apply_to_host_groups
48
-
49
- # The settings below are suggested to provide a good initial experience
50
- # with RSpec, but feel free to customize to your heart's content.
51
- # # This allows you to limit a spec run to individual examples or groups
52
- # # you care about by tagging them with `:focus` metadata. When nothing
53
- # # is tagged with `:focus`, all examples get run. RSpec also provides
54
- # # aliases for `it`, `describe`, and `context` that include `:focus`
55
- # # metadata: `fit`, `fdescribe` and `fcontext`, respectively.
56
- # config.filter_run_when_matching :focus
57
- #
58
- # # Allows RSpec to persist some state between runs in order to support
59
- # # the `--only-failures` and `--next-failure` CLI options. We recommend
60
- # # you configure your source control system to ignore this file.
61
- # config.example_status_persistence_file_path = "spec/examples.txt"
62
- #
63
- # # Limits the available syntax to the non-monkey patched syntax that is
64
- # # recommended. For more details, see:
65
- # # - http://rspec.info/blog/2012/06/rspecs-new-expectation-syntax/
66
- # # - http://www.teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
67
- # # - http://rspec.info/blog/2014/05/notable-changes-in-rspec-3/#zero-monkey-patching-mode
68
- # config.disable_monkey_patching!
69
- #
70
- # # This setting enables warnings. It's recommended, but in some cases may
71
- # # be too noisy due to issues in dependencies.
72
- # config.warnings = true
73
- #
74
- # # Many RSpec users commonly either run the entire suite or an individual
75
- # # file, and it's useful to allow more verbose output when running an
76
- # # individual spec file.
77
- # if config.files_to_run.one?
78
- # # Use the documentation formatter for detailed output,
79
- # # unless a formatter has already been configured
80
- # # (e.g. via a command-line flag).
81
- # config.default_formatter = "doc"
82
- # end
83
- #
84
- # # Print the 10 slowest examples and example groups at the
85
- # # end of the spec run, to help surface which specs are running
86
- # # particularly slow.
87
- # config.profile_examples = 10
88
- #
89
- # # Run specs in random order to surface order dependencies. If you find an
90
- # # order dependency and want to debug it, you can fix the order by providing
91
- # # the seed, which is printed after each run.
92
- # # --seed 1234
93
- # config.order = :random
94
- #
95
- # # Seed global randomization in this process using the `--seed` CLI option.
96
- # # Setting this allows you to use `--seed` to deterministically reproduce
97
- # # test failures related to randomization by passing the same `--seed` value
98
- # # as the one that triggered the failure.
99
- # Kernel.srand config.seed
100
- end
3
+ require 'eac_ruby_utils/rspec/default_setup'
4
+ ::EacRubyUtils::Rspec.default_setup_create(::File.expand_path('..', __dir__))
@@ -0,0 +1,44 @@
1
+ FROM ubuntu:18.04
2
+
3
+ ENV DEBIAN_FRONTEND=noninteractive
4
+ ENV USER_UID=1000
5
+ ENV USER_GID=1000
6
+ ENV USERNAME=user
7
+
8
+ # sudo gosu \
9
+
10
+ RUN ln -sf /bin/true /usr/bin/chfn && apt-get update && apt-get install -y \
11
+ libnss3-tools \
12
+ zenity \
13
+ libgtk2.0-0 \
14
+ dbus-x11 \
15
+ yad \
16
+ libcurl3 \
17
+ libdbus-1.3 \
18
+ libxss1 \
19
+ lsb-release \
20
+ net-tools \
21
+ openssl \
22
+ firefox \
23
+ systemd \
24
+ systemd-sysv
25
+
26
+
27
+ ADD https://cloud.gastecnologia.com.br/cef/warsaw/install/GBPCEFwr64.deb /src/warsaw.deb
28
+ RUN groupadd -g ${USER_GID} user && useradd -u ${USER_UID} -g ${USER_GID} -ms /bin/bash user && chown -R user.user /home/user
29
+
30
+ #RUN dpkg -i /w.deb || exit 0
31
+
32
+ COPY context/firefox.service /etc/systemd/system/
33
+ COPY context/startbrowser.sh /usr/local/bin/
34
+
35
+ # systemctl enable warsaw && \
36
+
37
+ RUN mkdir -p /var/run/dbus && \
38
+ systemctl enable firefox && \
39
+ systemctl disable systemd-resolved && systemctl disable systemd-tmpfiles-setup.service
40
+
41
+ STOPSIGNAL SIGRTMIN+3
42
+
43
+
44
+ ENTRYPOINT [ "/sbin/init" ]
@@ -0,0 +1,35 @@
1
+ IMG=jsalatiel/wsbb-podman:latest
2
+ CONTAINER_NAME=wsbb
3
+ DOCKERCMD=sudo podman
4
+
5
+
6
+ USER_UID = $(shell id -u $(USER))
7
+ USER_GID = $(shell id -g $(USER))
8
+ ifeq ($(shell uname),Darwin)
9
+ USER_GID = $(shell id -u $(USER))
10
+ endif
11
+
12
+ build:
13
+ $(DOCKERCMD) build -t ${IMG} .
14
+
15
+ start:
16
+ $(DOCKERCMD) run -d --rm -it --name ${CONTAINER_NAME} \
17
+ --cap-add CAP_AUDIT_WRITE --cap-add CAP_SYS_PTRACE \
18
+ -e USER_UID=$(USER_UID) \
19
+ -e USER_GID=$(USER_GID) \
20
+ -v "$(HOME)/.Xauthority:/home/user/.Xauthority:ro" \
21
+ -v "/tmp/.X11-unix:/tmp/.X11-unix:ro" \
22
+ -v "/etc/machine-id:/etc/machine-id:ro" \
23
+ $(IMG) seg.bb.com.br
24
+ logs:
25
+ $(DOCKERCMD) logs -f ${CONTAINER_NAME}
26
+
27
+ shell:
28
+ $(DOCKERCMD) exec -it ${CONTAINER_NAME} bash
29
+
30
+ stop:
31
+ -$(DOCKERCMD) kill ${CONTAINER_NAME}
32
+
33
+ remove:
34
+ -$(DOCKERCMD) image rm ${CONTAINER_NAME}
35
+
@@ -0,0 +1,16 @@
1
+ # wsbb-podman
2
+ Credits go to farribeiro/wscef-docker and juliohm1978/dockerbb
3
+
4
+
5
+ **make build** to build the container
6
+
7
+ **make start** to run the container ( It may take a while to start firefox - Just wait)
8
+
9
+ When you close firefox the container will be deleted.
10
+
11
+
12
+
13
+
14
+
15
+
16
+
@@ -0,0 +1,8 @@
1
+ [Unit]
2
+
3
+ [Service]
4
+ ExecStart=/usr/local/bin/startbrowser.sh
5
+ Restart=no
6
+
7
+ [Install]
8
+ WantedBy=multi-user.target
@@ -0,0 +1,9 @@
1
+ #!/bin/bash -xe
2
+
3
+ /usr/bin/dpkg -D10 -i /src/warsaw.deb
4
+ systemctl enable --now warsaw
5
+
6
+ runuser -l user -c "XAUTHORITY=/home/user/.Xauthority DISPLAY=:0 firefox --no-remote --new-instance https://seg.bb.com.br"
7
+
8
+ kill -SIGRTMIN+3 1
9
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ehbrs-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.0
4
+ version: 0.25.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-07-16 00:00:00.000000000 Z
11
+ date: 2021-08-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: avm-tools
@@ -56,14 +56,34 @@ dependencies:
56
56
  requirements:
57
57
  - - "~>"
58
58
  - !ruby/object:Gem::Version
59
- version: '0.55'
59
+ version: '0.71'
60
60
  type: :runtime
61
61
  prerelease: false
62
62
  version_requirements: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - "~>"
65
65
  - !ruby/object:Gem::Version
66
- version: '0.55'
66
+ version: '0.71'
67
+ - !ruby/object:Gem::Dependency
68
+ name: ehbrs_ruby_utils
69
+ requirement: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - "~>"
72
+ - !ruby/object:Gem::Version
73
+ version: '0.8'
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: 0.8.1
77
+ type: :runtime
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '0.8'
84
+ - - "~>"
85
+ - !ruby/object:Gem::Version
86
+ version: 0.8.1
67
87
  - !ruby/object:Gem::Dependency
68
88
  name: filesize
69
89
  requirement: !ruby/object:Gem::Requirement
@@ -126,14 +146,14 @@ dependencies:
126
146
  requirements:
127
147
  - - "~>"
128
148
  - !ruby/object:Gem::Version
129
- version: '0.2'
149
+ version: '0.3'
130
150
  type: :development
131
151
  prerelease: false
132
152
  version_requirements: !ruby/object:Gem::Requirement
133
153
  requirements:
134
154
  - - "~>"
135
155
  - !ruby/object:Gem::Version
136
- version: '0.2'
156
+ version: '0.3'
137
157
  description:
138
158
  email:
139
159
  executables:
@@ -141,7 +161,11 @@ executables:
141
161
  extensions: []
142
162
  extra_rdoc_files: []
143
163
  files:
164
+ - ".avm.yml"
165
+ - ".rspec"
166
+ - ".rubocop.yml"
144
167
  - Gemfile
168
+ - Gemfile.lock
145
169
  - exe/ehbrs
146
170
  - lib/ehbrs.rb
147
171
  - lib/ehbrs/cooking_book.rb
@@ -171,35 +195,6 @@ files:
171
195
  - lib/ehbrs/patches/module/erb_template.rb
172
196
  - lib/ehbrs/patches/object/erb_template.rb
173
197
  - lib/ehbrs/patches/object/template.rb
174
- - lib/ehbrs/runner.rb
175
- - lib/ehbrs/runner/cooking_book.rb
176
- - lib/ehbrs/runner/cooking_book/build.rb
177
- - lib/ehbrs/runner/finances.rb
178
- - lib/ehbrs/runner/finances/bb_browser.rb
179
- - lib/ehbrs/runner/fs.rb
180
- - lib/ehbrs/runner/fs/selected.rb
181
- - lib/ehbrs/runner/fs/used_space.rb
182
- - lib/ehbrs/runner/google.rb
183
- - lib/ehbrs/runner/google/translate.rb
184
- - lib/ehbrs/runner/music.rb
185
- - lib/ehbrs/runner/music/selected.rb
186
- - lib/ehbrs/runner/self.rb
187
- - lib/ehbrs/runner/self/test.rb
188
- - lib/ehbrs/runner/telegram.rb
189
- - lib/ehbrs/runner/telegram/send_message.rb
190
- - lib/ehbrs/runner/vg.rb
191
- - lib/ehbrs/runner/vg/ips.rb
192
- - lib/ehbrs/runner/vg/wii.rb
193
- - lib/ehbrs/runner/videos.rb
194
- - lib/ehbrs/runner/videos/extract.rb
195
- - lib/ehbrs/runner/videos/probe.rb
196
- - lib/ehbrs/runner/videos/series.rb
197
- - lib/ehbrs/runner/videos/series/rename.rb
198
- - lib/ehbrs/runner/videos/unsupported.rb
199
- - lib/ehbrs/runner/web_utils.rb
200
- - lib/ehbrs/runner/web_utils/videos.rb
201
- - lib/ehbrs/runner/web_utils/videos/download.rb
202
- - lib/ehbrs/runner/web_utils/videos/upload.rb
203
198
  - lib/ehbrs/self.rb
204
199
  - lib/ehbrs/self/observers/used_space.rb
205
200
  - lib/ehbrs/self/observers/with_persistence.rb
@@ -208,6 +203,35 @@ files:
208
203
  - lib/ehbrs/tools.rb
209
204
  - lib/ehbrs/tools/application.rb
210
205
  - lib/ehbrs/tools/instance.rb
206
+ - lib/ehbrs/tools/runner.rb
207
+ - lib/ehbrs/tools/runner/cooking_book.rb
208
+ - lib/ehbrs/tools/runner/cooking_book/build.rb
209
+ - lib/ehbrs/tools/runner/finances.rb
210
+ - lib/ehbrs/tools/runner/finances/bb_browser.rb
211
+ - lib/ehbrs/tools/runner/fs.rb
212
+ - lib/ehbrs/tools/runner/fs/selected.rb
213
+ - lib/ehbrs/tools/runner/fs/used_space.rb
214
+ - lib/ehbrs/tools/runner/google.rb
215
+ - lib/ehbrs/tools/runner/google/translate.rb
216
+ - lib/ehbrs/tools/runner/music.rb
217
+ - lib/ehbrs/tools/runner/music/selected.rb
218
+ - lib/ehbrs/tools/runner/self.rb
219
+ - lib/ehbrs/tools/runner/self/test.rb
220
+ - lib/ehbrs/tools/runner/telegram.rb
221
+ - lib/ehbrs/tools/runner/telegram/send_message.rb
222
+ - lib/ehbrs/tools/runner/vg.rb
223
+ - lib/ehbrs/tools/runner/vg/ips.rb
224
+ - lib/ehbrs/tools/runner/vg/wii.rb
225
+ - lib/ehbrs/tools/runner/videos.rb
226
+ - lib/ehbrs/tools/runner/videos/extract.rb
227
+ - lib/ehbrs/tools/runner/videos/probe.rb
228
+ - lib/ehbrs/tools/runner/videos/series.rb
229
+ - lib/ehbrs/tools/runner/videos/series/rename.rb
230
+ - lib/ehbrs/tools/runner/videos/unsupported.rb
231
+ - lib/ehbrs/tools/runner/web_utils.rb
232
+ - lib/ehbrs/tools/runner/web_utils/videos.rb
233
+ - lib/ehbrs/tools/runner/web_utils/videos/download.rb
234
+ - lib/ehbrs/tools/runner/web_utils/videos/upload.rb
211
235
  - lib/ehbrs/tools/version.rb
212
236
  - lib/ehbrs/user_dirs.rb
213
237
  - lib/ehbrs/vg.rb
@@ -259,6 +283,34 @@ files:
259
283
  - lib/ehbrs/videos/unsupported/profiles/samsung.rb
260
284
  - lib/ehbrs/videos/unsupported/search.rb
261
285
  - lib/ehbrs/videos/unsupported/track.rb
286
+ - spec/code/rubocop_spec.rb
287
+ - spec/lib/ehbrs/cooking_book/recipe/measure_spec.rb
288
+ - spec/lib/ehbrs/observers/base_spec.rb
289
+ - spec/lib/ehbrs/tools/runner/fs/used_space_spec.rb
290
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec.rb
291
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/expected.rom
292
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_0.ips
293
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_1.ips
294
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/source.rom
295
+ - spec/lib/ehbrs/tools/runner/videos/probe_spec.rb
296
+ - spec/lib/ehbrs/tools/runner/videos/probe_spec_files/fixed.target.yaml
297
+ - spec/lib/ehbrs/tools/runner/videos/unsupported_spec.rb
298
+ - spec/lib/ehbrs/tools/runner/videos/unsupported_spec_files/dts_audio.probe.yaml
299
+ - spec/lib/ehbrs/tools/runner_spec.rb
300
+ - spec/lib/ehbrs/vg/wii/game_file_spec.rb
301
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec.rb
302
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.source.witdump
303
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.target.yaml
304
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.source.witdump
305
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.target.yaml
306
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.source.witdump
307
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.target.yaml
308
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.source.witdump
309
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.target.yaml
310
+ - spec/lib/ehbrs/vg/wii/wit/path_spec.rb
311
+ - spec/spec_helper.rb
312
+ - spec/spec_helper/videos.rb
313
+ - spec/spec_helper/videos_files/stub_source.mp4
262
314
  - template/ehbrs/cooking_book/build/base_page/layout.html.erb
263
315
  - template/ehbrs/cooking_book/build/index_page/inner.html.erb
264
316
  - template/ehbrs/cooking_book/build/recipe_page/inner.html.erb
@@ -277,13 +329,15 @@ files:
277
329
  - vendor/aranha-parsers/lib/aranha/parsers/invalid_state_exception.rb
278
330
  - vendor/aranha-parsers/lib/aranha/parsers/patches.rb
279
331
  - vendor/aranha-parsers/lib/aranha/parsers/patches/ofx_parser.rb
332
+ - vendor/aranha-parsers/lib/aranha/parsers/rspec.rb
333
+ - vendor/aranha-parsers/lib/aranha/parsers/rspec/setup.rb
334
+ - vendor/aranha-parsers/lib/aranha/parsers/rspec/source_target_fixtures_example.rb
280
335
  - vendor/aranha-parsers/lib/aranha/parsers/source_address.rb
281
336
  - vendor/aranha-parsers/lib/aranha/parsers/source_address/file.rb
282
337
  - vendor/aranha-parsers/lib/aranha/parsers/source_address/hash_http_get.rb
283
338
  - vendor/aranha-parsers/lib/aranha/parsers/source_address/hash_http_post.rb
284
339
  - vendor/aranha-parsers/lib/aranha/parsers/source_address/http_get.rb
285
340
  - vendor/aranha-parsers/lib/aranha/parsers/source_target_fixtures.rb
286
- - vendor/aranha-parsers/lib/aranha/parsers/spec/source_target_fixtures_example.rb
287
341
  - vendor/aranha-parsers/lib/aranha/parsers/version.rb
288
342
  - vendor/aranha-parsers/spec/lib/aranha/parsers/source_address/http_get_spec.rb
289
343
  - vendor/aranha-parsers/spec/lib/aranha/parsers/source_address_spec.rb
@@ -407,6 +461,7 @@ files:
407
461
  - vendor/eac_docker/eac_docker.gemspec
408
462
  - vendor/eac_docker/lib/eac_docker.rb
409
463
  - vendor/eac_docker/lib/eac_docker/container.rb
464
+ - vendor/eac_docker/lib/eac_docker/debug.rb
410
465
  - vendor/eac_docker/lib/eac_docker/executables.rb
411
466
  - vendor/eac_docker/lib/eac_docker/images.rb
412
467
  - vendor/eac_docker/lib/eac_docker/images/base.rb
@@ -415,6 +470,7 @@ files:
415
470
  - vendor/eac_docker/lib/eac_docker/images/templatized.rb
416
471
  - vendor/eac_docker/lib/eac_docker/registry.rb
417
472
  - vendor/eac_docker/lib/eac_docker/rspec.rb
473
+ - vendor/eac_docker/lib/eac_docker/rspec/setup.rb
418
474
  - vendor/eac_docker/lib/eac_docker/version.rb
419
475
  - vendor/eac_docker/spec/lib/eac_docker/executables_spec.rb
420
476
  - vendor/eac_docker/spec/lib/eac_docker/images/coded_spec.rb
@@ -495,6 +551,8 @@ files:
495
551
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/traversable.rb
496
552
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/fs/traverser.rb
497
553
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/fs_cache.rb
554
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry.rb
555
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/gems_registry/gem.rb
498
556
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/immutable.rb
499
557
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/immutable/array_accessor.rb
500
558
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/immutable/base_accessor.rb
@@ -558,11 +616,14 @@ files:
558
616
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/string/inflector.rb
559
617
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time.rb
560
618
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/patches/time/required_zone.rb
619
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/recursive_builder.rb
561
620
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/regexp_parser.rb
562
621
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/require_sub.rb
563
622
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec.rb
564
- - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/conditional.rb
565
- - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/stubbed_ssh.rb
623
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/default_setup.rb
624
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup.rb
625
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup/conditionals.rb
626
+ - vendor/eac_ruby_utils/lib/eac_ruby_utils/rspec/setup_manager.rb
566
627
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/ruby.rb
567
628
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/ruby/command.rb
568
629
  - vendor/eac_ruby_utils/lib/eac_ruby_utils/ruby/on_clean_environment.rb
@@ -603,6 +664,7 @@ files:
603
664
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/object/template_spec_files/path/my_stub_with_template
604
665
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/pathname/basename_sub_spec.rb
605
666
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/patches/pathname/parent_n_spec.rb
667
+ - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/recursive_builder_spec.rb
606
668
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/require_sub_spec.rb
607
669
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/require_sub_spec/stubbed_module_a.rb
608
670
  - vendor/eac_ruby_utils/spec/lib/eac_ruby_utils/require_sub_spec/stubbed_not_module.rb
@@ -618,6 +680,8 @@ files:
618
680
  - vendor/ehbrs_ruby_utils/ehbrs_ruby_utils.gemspec
619
681
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils.rb
620
682
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/executables.rb
683
+ - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/finances/bb_browser/docker_image.rb
684
+ - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/patches/object/template.rb
621
685
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/version.rb
622
686
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos.rb
623
687
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/videos/container.rb
@@ -629,10 +693,25 @@ files:
629
693
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/instance.rb
630
694
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos.rb
631
695
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/file.rb
696
+ - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/file/rename.rb
632
697
  - vendor/ehbrs_ruby_utils/lib/ehbrs_ruby_utils/web_utils/videos/files_list.rb
633
698
  - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/resolution_spec.rb
699
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec.rb
700
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.source.yaml
701
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_attachment.target.yaml
702
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.source.yaml
703
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_audio.target.yaml
704
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.source.yaml
705
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_subtitle.target.yaml
706
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.source.yaml
707
+ - vendor/ehbrs_ruby_utils/spec/lib/ehbrs_ruby_utils/videos/stream_spec_files/menina_ovo_video.target.yaml
634
708
  - vendor/ehbrs_ruby_utils/spec/rubocop_check_spec.rb
635
709
  - vendor/ehbrs_ruby_utils/spec/spec_helper.rb
710
+ - vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Dockerfile
711
+ - vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/Makefile
712
+ - vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/README.md
713
+ - vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/firefox.service
714
+ - vendor/ehbrs_ruby_utils/template/ehbrs_ruby_utils/finances/bb_browser/docker_image/context/startbrowser.sh
636
715
  homepage:
637
716
  licenses: []
638
717
  metadata: {}
@@ -651,8 +730,38 @@ required_rubygems_version: !ruby/object:Gem::Requirement
651
730
  - !ruby/object:Gem::Version
652
731
  version: '0'
653
732
  requirements: []
654
- rubygems_version: 3.0.9
733
+ rubygems_version: 3.1.6
655
734
  signing_key:
656
735
  specification_version: 4
657
736
  summary: Tools for EHB/RS.
658
- test_files: []
737
+ test_files:
738
+ - spec/spec_helper/videos_files/stub_source.mp4
739
+ - spec/spec_helper/videos.rb
740
+ - spec/lib/ehbrs/observers/base_spec.rb
741
+ - spec/lib/ehbrs/tools/runner/fs/used_space_spec.rb
742
+ - spec/lib/ehbrs/tools/runner/videos/unsupported_spec.rb
743
+ - spec/lib/ehbrs/tools/runner/videos/probe_spec.rb
744
+ - spec/lib/ehbrs/tools/runner/videos/probe_spec_files/fixed.target.yaml
745
+ - spec/lib/ehbrs/tools/runner/videos/unsupported_spec_files/dts_audio.probe.yaml
746
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec.rb
747
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/expected.rom
748
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/source.rom
749
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_1.ips
750
+ - spec/lib/ehbrs/tools/runner/vg/ips_spec_files/patch_0.ips
751
+ - spec/lib/ehbrs/tools/runner_spec.rb
752
+ - spec/lib/ehbrs/cooking_book/recipe/measure_spec.rb
753
+ - spec/lib/ehbrs/vg/wii/wit/path_spec.rb
754
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec.rb
755
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.target.yaml
756
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.source.witdump
757
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.source.witdump
758
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.target.yaml
759
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/resident_evil_code_veronica_disc2_iso.target.yaml
760
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/super_mario_galaxy_wbfs.source.witdump
761
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_R92P01_wia.target.yaml
762
+ - spec/lib/ehbrs/vg/wii/wit/parsers/dump_spec_files/pikmin2_pal_iso.source.witdump
763
+ - spec/lib/ehbrs/vg/wii/game_file_spec.rb
764
+ - spec/spec_helper.rb
765
+ - spec/code/rubocop_spec.rb
766
+ - ".rubocop.yml"
767
+ - ".rspec"