mootool 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,106 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mootool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rick Mark
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2022-01-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sorbet-runtime
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: ruby-macho
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3'
41
+ description: mootool is a swiss army knife for dealing wiith Apple Mach-O files
42
+ email:
43
+ - rickmark@outlook.com
44
+ executables:
45
+ - mootool
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
50
+ - ".rspec"
51
+ - ".ruby-version"
52
+ - ".travis.yml"
53
+ - CODE_OF_CONDUCT.md
54
+ - Gemfile
55
+ - Gemfile.lock
56
+ - LICENSE.txt
57
+ - README.md
58
+ - Rakefile
59
+ - bin/console
60
+ - bin/setup
61
+ - exe/mootool
62
+ - lib/mootool.rb
63
+ - lib/mootool/command.rb
64
+ - lib/mootool/controller_base.rb
65
+ - lib/mootool/controllers/dwarf.rb
66
+ - lib/mootool/controllers/dyld_linker.rb
67
+ - lib/mootool/controllers/dyld_shared_cache.rb
68
+ - lib/mootool/controllers/fat_binary.rb
69
+ - lib/mootool/controllers/kernel_collection.rb
70
+ - lib/mootool/controllers/sections.rb
71
+ - lib/mootool/version.rb
72
+ - lib/mootool/views/sections.full.erb
73
+ - mootool.gemspec
74
+ - sorbet/config
75
+ - sorbet/rbi/sorbet-typed/lib/rainbow/all/rainbow.rbi
76
+ - sorbet/rbi/sorbet-typed/lib/rake/all/rake.rbi
77
+ - sorbet/rbi/sorbet-typed/lib/rspec-core/all/rspec-core.rbi
78
+ - sorbet/rbi/sorbet-typed/lib/rubocop/>=1.8/rubocop.rbi
79
+ homepage: https://github.com/hack-different/mootool
80
+ licenses:
81
+ - MIT
82
+ metadata:
83
+ allowed_push_host: https://rubygems.org
84
+ homepage_uri: https://github.com/hack-different/mootool
85
+ source_code_uri: https://github.com/hack-different/mootool
86
+ changelog_uri: https://github.com/hack-different/mootool
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubygems_version: 3.2.22
103
+ signing_key:
104
+ specification_version: 4
105
+ summary: Mach-O's Other Tool
106
+ test_files: []