Skip to content

Commit d82cd38

Browse files
committed
bump 1.0.1
1 parent 1a97a99 commit d82cd38

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
elftools (1.0.0)
4+
elftools (1.0.1)
55
bindata (~> 2)
66

77
GEM

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ELF parser in pure ruby implementation. This work is inspired by [pyelftools](ht
1515

1616
The motivation to create this repository is want to be a dependency of [pwntools-ruby](https://github.com/peter50216/pwntools-ruby). Since ELF parser is a big work, it should not be implemented directly in pwntools.
1717

18-
**rbelftools**'s target is to create a nice ELF parser library in ruby. More features remain a work in progress.
18+
**rbelftools**'s target is to create a nice ELF parsing library in ruby. More features remain a work in progress.
1919

2020
# Install
2121

@@ -175,12 +175,12 @@ elf.save('elf.patched')
175175
For example, to check if NX disabled, you can use
176176
`!elf.segment_by_type(:gnu_stack).executable?` but not `elf.nx?`
177177
5. Section and segment parser
178-
Providing common sections and segments parser. For example, .symtab, .shstrtab
179-
.dynamic sections and INTERP, DYNAMIC segments, etc.
178+
Providing common sections and segments parser. For example, `.symtab`, `.shstrtab`
179+
`.dynamic` sections and `INTERP`, `DYNAMIC` segments, etc.
180180

181181
# Development
182182
```bash
183-
git clone https://github.com/david942j/rbelftools.git
183+
git clone https://github.com/david942j/rbelftools
184184
cd rbelftools
185185
bundle
186186
bundle exec rake

lib/elftools/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module ELFTools
22
# Current gem version
3-
VERSION = '1.0.0'.freeze
3+
VERSION = '1.0.1'.freeze
44
end

0 commit comments

Comments
 (0)