ronin-code-asm 1.0.0 → 1.0.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ad5a87365920a6f38b31e9ea268d2c2b4e735a2e4386a3aa0579cd00c0fdf16
4
- data.tar.gz: 7d56cd03b8001a61ef64d9feb30378e6c315ebf191d066b8565321257a288289
3
+ metadata.gz: 3c607b6198dafbb61854ad277ee380c3aab8eda4e137d572973e4f416993ff26
4
+ data.tar.gz: 3570c82008d63ad0ee4d43a06cc320168b194ed8fe98ab72b81590432215c0ad
5
5
  SHA512:
6
- metadata.gz: 39999f88ef21563cb802fe25caf26cd31f32e78610c46f343ade50d081a399247f9a37d0d53466db58fcc99ea65f5e2a67b6c1cc5c6ae31f18c7416d64f55ef4
7
- data.tar.gz: e744939e56cdc3f63129cf09bcdd3680cdb8dab885e368db8b71bda3a4e2fff56d21dd613d0d8bc1c1466793347733db08b4c9fa2f13d783ee6eceb40ed7f39d
6
+ metadata.gz: f6b7401d5e5368fd1caa46b9440b6904670fd036b8f905cba9030a00f75475fe4fa0b2cc2e901466de7db87290b7bd21c90b742370255a1c86da268cd2cb03ce
7
+ data.tar.gz: 8bdb550bab9838456e316ebf94dccc1b03081f6a3471fa5246265efed30cb759e3982d0d3495c6faa4e518d327f409d8e62ebbd74c3d97e0c2c92663e5ef9197
@@ -12,11 +12,13 @@ jobs:
12
12
  - '3.0'
13
13
  - '3.1'
14
14
  - '3.2'
15
- # - jruby
15
+ - '3.3'
16
+ - '3.4'
17
+ - jruby
16
18
  - truffleruby
17
19
  name: Ruby ${{ matrix.ruby }}
18
20
  steps:
19
- - uses: actions/checkout@v2
21
+ - uses: actions/checkout@v4
20
22
  - name: Set up Ruby
21
23
  uses: ruby/setup-ruby@v1
22
24
  with:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.1
1
+ ruby-3.3
data/ChangeLog.md CHANGED
@@ -1,4 +1,9 @@
1
- ### 1.0.0 / 2023-XX-XX
1
+ ### 1.0.1 / 2025-02-14
2
+
3
+ * Use `require_relative` to improve load times.
4
+ * Documentation improvements.
5
+
6
+ ### 1.0.0 / 2023-02-01
2
7
 
3
8
  * Require `ruby` >= 3.0.0.
4
9
  * Renamed the gem to `ronin-code-asm`.
@@ -17,7 +22,7 @@
17
22
 
18
23
  mov eax, 0x41
19
24
 
20
- * `Ronin::ASM::Program#byte`, `Ronin::ASM::Program#word`,
25
+ * `Ronin::ASM::Program#byte`, `Ronin::ASM::Program#word`,
21
26
  `Ronin::ASM::Program#dword` and `Ronin::ASM::Program#qword` methods can now
22
27
  accept `Ronin::ASM::MemoryOperand`s.
23
28
 
data/Gemfile CHANGED
@@ -20,6 +20,6 @@ group :development do
20
20
  gem 'yard-spellcheck', require: false
21
21
 
22
22
  gem 'dead_end', require: false
23
- gem 'sord', require: false
24
- gem 'stackprof', require: false
23
+ gem 'sord', require: false, platform: :mri
24
+ gem 'stackprof', require: false, platform: :mri
25
25
  end
data/README.md CHANGED
@@ -8,7 +8,6 @@
8
8
  * [Issues](https://github.com/ronin-rb/ronin-code-asm/issues)
9
9
  * [Documentation](https://ronin-rb.dev/docs/ronin-code-asm/frames)
10
10
  * [Discord](https://discord.gg/6WAb3PsVX9) |
11
- [Twitter](https://twitter.com/ronin_rb) |
12
11
  [Mastodon](https://infosec.exchange/@ronin_rb)
13
12
 
14
13
  ## Description
@@ -120,7 +119,7 @@ end
120
119
 
121
120
  ### Syscalls
122
121
 
123
- If the `:os` option is specified, then syscall numbers can be looked up via the
122
+ If the `:os` option is specified, then syscall numbers can be looked up via the
124
123
  `syscalls` Hash:
125
124
 
126
125
  ```ruby
@@ -139,15 +138,76 @@ end
139
138
 
140
139
  ## Install
141
140
 
141
+ ### Ubuntu
142
+
143
+ ```shell
144
+ sudo apt install -y yasm
145
+ gem install ronin-code-asm
146
+ ```
147
+
148
+ ### Fedora
149
+
150
+ ```shell
151
+ sudo dnf install -y yasm
152
+ gem install ronin-code-asm
153
+ ```
154
+
155
+ ### OpenSUSE
156
+
157
+ ```shell
158
+ sudo zypper -n in -l yasm
159
+ gem install ronin-code-asm
160
+ ```
161
+
162
+ ### Arch
163
+
142
164
  ```shell
143
- $ gem install ronin-code-asm
165
+ sudo pacman -Sy yasm
166
+ gem install ronin-code-asm
144
167
  ```
145
168
 
169
+ ### macOS
170
+
171
+ ```shell
172
+ brew install yasm
173
+ gem install ronin-code-asm
174
+ ```
175
+
176
+ ### FreeBSD
177
+
178
+ ```shell
179
+ sudo pkg install -y yasm
180
+ gem install ronin-code-asm
181
+ ```
182
+
183
+ ### Gemfile
184
+
185
+ ```ruby
186
+ gem 'ronin-code-asm', '~> 1.0'
187
+ ```
188
+
189
+ ### gemspec
190
+
191
+ ```ruby
192
+ gem.add_dependency 'ronin-code-asm', '~> 1.0'
193
+ ```
194
+
195
+ ## Development
196
+
197
+ 1. [Fork It!](https://github.com/ronin-rb/ronin-code-asm/fork)
198
+ 2. Clone It!
199
+ 3. `cd ronin-code-asm/`
200
+ 4. `bundle install`
201
+ 5. `git checkout -b my_feature`
202
+ 6. Code It!
203
+ 7. `bundle exec rake spec`
204
+ 8. `git push origin my_feature`
205
+
146
206
  ## License
147
207
 
148
208
  ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
149
209
 
150
- Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
210
+ Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
151
211
 
152
212
  ronin-code-asm is free software: you can redistribute it and/or modify
153
213
  it under the terms of the GNU Lesser General Public License as published
@@ -164,4 +224,4 @@ along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
164
224
 
165
225
  [Ruby]: https://www.ruby-lang.org
166
226
  [yasm]: https://yasm.tortall.net/
167
- [ruby-yasm]: https://github.com/sophsec/ruby-yasm#readme
227
+ [ruby-yasm]: https://github.com/postmodern/ruby-yasm#readme
data/gemspec.yml CHANGED
@@ -3,7 +3,7 @@ summary: A Ruby DSL for crafting Assembly programs and Shellcode.
3
3
  description:
4
4
  ronin-code-asm is a Ruby DSL for crafting Assembly programs and shellcode.
5
5
 
6
- license: LGPL-3.0
6
+ license: LGPL-3.0-or-later
7
7
  authors: Postmodern
8
8
  email: postmodern.mod3@gmail.com
9
9
  homepage: https://github.com/ronin-rb/ronin-code-asm#readme
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/archs/x86'
21
+ require_relative 'x86'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/register'
21
+ require_relative '../register'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -133,7 +133,7 @@ module Ronin
133
133
 
134
134
  #
135
135
  # Generates the instruction to set a register.
136
- #
136
+ #
137
137
  # @param [Symbol] name
138
138
  # The name of the register.
139
139
  #
@@ -146,7 +146,7 @@ module Ronin
146
146
 
147
147
  #
148
148
  # Generates the instruction to save a register.
149
- #
149
+ #
150
150
  # @param [Symbol] name
151
151
  # The name of the register.
152
152
  #
@@ -156,7 +156,7 @@ module Ronin
156
156
 
157
157
  #
158
158
  # Generates the instruction to restore a register.
159
- #
159
+ #
160
160
  # @param [Symbol] name
161
161
  # The name of the register.
162
162
  #
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,5 +18,5 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/archs/x86'
22
- require 'ronin/code/asm/archs/amd64'
21
+ require_relative 'archs/x86'
22
+ require_relative 'archs/amd64'
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/immediate_operand'
21
+ require_relative 'immediate_operand'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/register'
21
+ require_relative 'register'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/config'
21
+ require_relative '../config'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/config'
21
+ require_relative '../config'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/config'
21
+ require_relative '../config'
22
22
 
23
23
  require 'yaml'
24
24
 
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,9 +18,9 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/os/os'
22
- require 'ronin/code/asm/os/freebsd'
23
- require 'ronin/code/asm/os/linux'
21
+ require_relative 'os/os'
22
+ require_relative 'os/freebsd'
23
+ require_relative 'os/linux'
24
24
 
25
25
  module Ronin
26
26
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,12 +18,12 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/archs'
22
- require 'ronin/code/asm/os'
23
- require 'ronin/code/asm/register'
24
- require 'ronin/code/asm/instruction'
25
- require 'ronin/code/asm/immediate_operand'
26
- require 'ronin/code/asm/syntax'
21
+ require_relative 'archs'
22
+ require_relative 'os'
23
+ require_relative 'register'
24
+ require_relative 'instruction'
25
+ require_relative 'immediate_operand'
26
+ require_relative 'syntax'
27
27
 
28
28
  require 'tempfile'
29
29
  require 'yasm/program'
@@ -198,7 +198,7 @@ module Ronin
198
198
  #
199
199
  # Creates an operand of size 1 (byte).
200
200
  #
201
- # @param [MemoryOperand, Integer] op
201
+ # @param [MemoryOperand, Integer] op
202
202
  # The value of the operand.
203
203
  #
204
204
  # @return [MemoryOperand, ImmediateOperand]
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,7 +18,7 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/memory_operand'
21
+ require_relative 'memory_operand'
22
22
 
23
23
  module Ronin
24
24
  module Code
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -22,7 +22,7 @@ module Ronin
22
22
  module Code
23
23
  module ASM
24
24
  # ronin-code-asm version
25
- VERSION = '1.0.0'
25
+ VERSION = '1.0.1'
26
26
  end
27
27
  end
28
28
  end
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-code-asm - A Ruby DSL for crafting Assembly programs and shellcode.
4
4
  #
5
- # Copyright (c) 2007-2023 Hal Brodigan (postmodern.mod3 at gmail.com)
5
+ # Copyright (c) 2007-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
6
6
  #
7
7
  # ronin-code-asm is free software: you can redistribute it and/or modify
8
8
  # it under the terms of the GNU Lesser General Public License as published
@@ -18,9 +18,9 @@
18
18
  # along with ronin-code-asm. If not, see <https://www.gnu.org/licenses/>.
19
19
  #
20
20
 
21
- require 'ronin/code/asm/program'
22
- require 'ronin/code/asm/shellcode'
23
- require 'ronin/code/asm/version'
21
+ require_relative 'asm/program'
22
+ require_relative 'asm/shellcode'
23
+ require_relative 'asm/version'
24
24
 
25
25
  module Ronin
26
26
  module Code
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ronin-code-asm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-01 00:00:00.000000000 Z
11
+ date: 2025-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-yasm
@@ -88,7 +88,7 @@ files:
88
88
  - ronin-code-asm.gemspec
89
89
  homepage: https://github.com/ronin-rb/ronin-code-asm#readme
90
90
  licenses:
91
- - LGPL-3.0
91
+ - LGPL-3.0-or-later
92
92
  metadata:
93
93
  documentation_uri: https://ronin-rb.dev/docs/ronin-code-asm
94
94
  source_code_uri: https://github.com/ronin-rb/ronin-code-asm
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  version: '0'
112
112
  requirements:
113
113
  - yasm >= 0.6.0
114
- rubygems_version: 3.3.26
114
+ rubygems_version: 3.5.22
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: A Ruby DSL for crafting Assembly programs and Shellcode.