Skip to content

Commit

Permalink
rename gem
Browse files Browse the repository at this point in the history
  • Loading branch information
rkotov93 committed Aug 3, 2023
1 parent 34f45f9 commit d2e082d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

# Specify your gem's dependencies in evm-tx-inputs-decoder.gemspec
# Specify your gem's dependencies in evm-tx-input-decoder.gemspec
gemspec

gem 'rake', '~> 13.0'
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
evm-tx-inputs-decoder (0.1.0)
evm-tx-input-decoder (0.1.0)
eth (~> 0.5)

GEM
Expand Down Expand Up @@ -72,7 +72,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
evm-tx-inputs-decoder!
evm-tx-input-decoder!
rake (~> 13.0)
rspec (~> 3.0)
rubocop (~> 1.21)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ This is a simple gem that helps decoding and encoding transactions input data fo
## Installation
Run
```bash
gem install evm-tx-inputs-decoder
gem install evm-tx-input-decoder
```
or add
```ruby
gem 'evm-tx-inputs-decoder'
gem 'evm-tx-input-decoder'
```
to your Gemfile.

Expand Down Expand Up @@ -46,7 +46,7 @@ EvmTx::Encoder.encode_input(function_name, types, args)
#=> "0xa9059cbb00000000000000000000000003cb76e200ba785f6008c12933aa3640536d2011000000000000000000000000000000000000000000000000000000a083712e00"
```

For more details read the [documentation](https://rubydoc.info/github/rkotov93/evm-tx-inputs-decoder/main/EvmTx).
For more details read the [documentation](https://rubydoc.info/github/rkotov93/evm-tx-input-decoder/main/EvmTx).

## Development

Expand All @@ -56,7 +56,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rkotov93/evm-tx-inputs-decoder.
Bug reports and pull requests are welcome on GitHub at https://github.com/rkotov93/evm-tx-input-decoder.

## License

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
require_relative 'lib/evm_tx/version'

Gem::Specification.new do |spec|
spec.name = 'evm-tx-inputs-decoder'
spec.name = 'evm-tx-input-decoder'
spec.version = EvmTx::VERSION
spec.authors = ['Ruslan Kotov']
spec.email = ['[email protected]']

spec.summary = 'Simple gem to decode and encode EVM transactions input data'
spec.description = 'This is a simple gem that helps decoding and encoding transactions input data'\
'for EVM based blockchains like Ethereum and Tron.'
spec.homepage = 'https://github.com/rkotov93/evm-tx-inputs-decoder'
spec.homepage = 'https://github.com/rkotov93/evm-tx-input-decoder'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7.0'

# spec.metadata['allowed_push_host'] = "Set to your gem server 'https://example.com'"

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/rkotov93/evm-tx-inputs-decoder'
spec.metadata['changelog_uri'] = 'https://github.com/rkotov93/evm-tx-inputs-decoder/CHANGELOG.md'
spec.metadata['source_code_uri'] = 'https://github.com/rkotov93/evm-tx-input-decoder'
spec.metadata['changelog_uri'] = 'https://github.com/rkotov93/evm-tx-input-decoder/CHANGELOG.md'

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Expand Down

0 comments on commit d2e082d

Please sign in to comment.