Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
brandur committed Nov 19, 2023
0 parents commit fab399e
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/*.gem
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gemspec
17 changes: 17 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
PATH
remote: .
specs:
riverqueue-sequel (0.0.1)

GEM
remote: https://rubygems.org/
specs:

PLATFORMS
arm64-darwin-22

DEPENDENCIES
riverqueue-sequel!

BUNDLED WITH
2.4.20
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# River Ruby bindings Sequel driver

A future home for River's Ruby bindings. For now, the [Gem is registered](https://rubygems.org/gems/riverqueue), but nothing else is done.

``` sh
$ gem build riverqueue-sequel.gemspec
$ gem push riverqueue-sequel-0.0.1.gem
```
8 changes: 8 additions & 0 deletions lib/riverqueue-sequel.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module River
module Driver
module Sequel
def initialize
end
end
end
end
11 changes: 11 additions & 0 deletions riverqueue-sequel.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Gem::Specification.new do |s|
s.name = "riverqueue-sequel"
s.version = "0.0.1"
s.summary = "Sequel driver for the River Ruby gem."
s.description = "Sequel driver for the River Ruby gem."
s.authors = ["Blake Gentry", "Brandur Leach"]
s.email = "[email protected]"
s.files = ["lib/riverqueue-sequel.rb"]
s.homepage = "https://riverqueue.com"
s.license = "LGPL-3.0-or-later"
end

0 comments on commit fab399e

Please sign in to comment.