-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Anurag Tiwari <[email protected]>
- Loading branch information
1 parent
6b0ec8b
commit 295731f
Showing
4 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
transaction (0.1.7) | ||
transaction (1.0.0) | ||
redis (>= 4.0.2) | ||
|
||
GEM | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module Transaction | ||
VERSION = '0.1.7' | ||
VERSION = '1.0.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,15 @@ Gem::Specification.new do |spec| | |
spec.authors = ['Anurag Tiwari'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = 'Record status along with other relevant information of transactions/tasks.' | ||
spec.description = 'Record status along with other relevant information of transactions/tasks.' | ||
spec.summary = 'Manage any task | transaction efficiently' | ||
spec.description = 'Record status along with other relevant information of | ||
transactions or tasks. These tasks can be a cron job, large background jobs or | ||
a simple method. Any task can be plugged into a transaction block. Transaction | ||
uses Redis to store the current status along with other information. | ||
The events within the transaction block can be published via Pubsub client | ||
(ex. Pusher, PubNub or any valid pubsub client).These events can be | ||
subscribed in the client app for the live status of the transaction.' | ||
|
||
spec.homepage = 'https://github.com/t2013anurag/transaction' | ||
spec.license = 'MIT' | ||
|
||
|