Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.description = "ActiveRecord driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go."
s.authors = ["Blake Gentry", "Brandur Leach"]
s.email = "brandur@brandur.org"
s.files = ["lib/riverqueue-activerecord.rb"]
s.files = Dir.glob("lib/**/*")
s.homepage = "https://riverqueue.com"
s.license = "LGPL-3.0-or-later"

Expand Down
2 changes: 1 addition & 1 deletion driver/riverqueue-sequel/riverqueue-sequel.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.description = "Sequel driver for the River Ruby gem. Use in conjunction with the riverqueue gem to insert jobs that are worked in Go."
s.authors = ["Blake Gentry", "Brandur Leach"]
s.email = "brandur@brandur.org"
s.files = ["lib/riverqueue-sequel.rb"]
s.files = Dir.glob("lib/**/*")
s.homepage = "https://riverqueue.com"
s.license = "LGPL-3.0-or-later"

Expand Down
3 changes: 2 additions & 1 deletion riverqueue.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ Gem::Specification.new do |s|
s.description = "River is a fast job queue for Go. Use this gem in conjunction with gems riverqueue-activerecord or riverqueue-sequel to insert jobs in Ruby which will be worked from Go."
s.authors = ["Blake Gentry", "Brandur Leach"]
s.email = "brandur@brandur.org"
s.files = ["lib/riverqueue.rb"]
s.files = Dir.glob("lib/**/*")
s.homepage = "https://riverqueue.com"
s.license = "LGPL-3.0-or-later"
s.require_path = %(lib)
s.metadata = {
"bug_tracker_uri" => "https://github.com/riverqueue/riverqueue-ruby/issues",
"changelog_uri" => "https://github.com/riverqueue/riverqueue-ruby/blob/master/CHANGELOG.md",
Expand Down