https://github.com/0exp/sidekiq_admin_enquerer
Sidekiq Admin Job Enqueuer
https://github.com/0exp/sidekiq_admin_enquerer
Last synced: 5 months ago
JSON representation
Sidekiq Admin Job Enqueuer
- Host: GitHub
- URL: https://github.com/0exp/sidekiq_admin_enquerer
- Owner: 0exp
- License: mit
- Created: 2023-07-04T21:18:23.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-06-09T10:50:38.000Z (about 1 year ago)
- Last Synced: 2025-12-04T22:56:25.617Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# sidekiq_admin_enquerer
---
- [Installation](#installation)
- [Usage](#usage)
- [Development](#development)
- [License](#license)
- [Authors](#authors)
# TODO:
- job invocation form redesign;
- interactive UI tabs for each performing method (sidekiq's UI has no jquery and bootstrap-js integrations);
- job invocation rework (support for kwarg invocation and analysis of passed attributes);
- specs;
## Installation
```ruby
gem 'sidekiq_admin_enquerer'
```
```shell
bundle install
# --- or ---
gem install sidekiq_admin_enquerer
```
```ruby
require 'sidekiq_admin_enquerer'
```
## Usage
- it is assumed that you are using `Rails`;
```ruby
# config/initializers/sidekiq.rb
# ...your sidekiq configs...
SidekiqAdminEnquerer.load
```
- navigate to `/your-sidekiq-path/enquerer`
---
## Development
- full build (`rubocop` => `rspec`)
```shell
bundle exec rake
```
- code style check (`rubocop`):
```shell
bundle exec rake rubocop
```
- tests (`rspec`):
```shell
bundle exec rake rspec
```
## License
Released under MIT License.
## Authors
[Rustam Ibragimov](https://github.com/0exp)