We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfccacd commit c6de1a2Copy full SHA for c6de1a2
README.md
@@ -7,7 +7,7 @@ class ReportMailer
7
extend Sidekiqable::AsyncableMethods
8
9
def self.deliver_daily(user_id)
10
- UserMailer.daily_report(user_id).deliver_now
+ # ...
11
end
12
13
bin/release
@@ -0,0 +1,14 @@
1
+#!/usr/bin/env bash
2
+
3
+VERSION=$1
4
5
+printf "module Sidekiqable\n VERSION = \"$VERSION\"\nend\n" > ./lib/sidekiqable/version.rb
6
+bundle
+git add Gemfile.lock lib/sidekiqable/version.rb
+git commit -m "Bump version for $VERSION"
+git push
+git tag v$VERSION
+git push --tags
+gem build sidekiqable.gemspec
+gem push "sidekiqable-$VERSION.gem" --host https://rubygems.org
14
+rm "sidekiqable-$VERSION.gem"
0 commit comments