concussion 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5dcee895a934fdd211c1551eea02e8ac99821435
4
- data.tar.gz: 187252ec3bb52796a4c8958b417927bc2212811e
3
+ metadata.gz: 62d30f2d09164ed4a311376906cd37b61578668f
4
+ data.tar.gz: e7643d7ab5e8a262b61d3602c948e589609b6045
5
5
  SHA512:
6
- metadata.gz: a0e040b6a103cb17ebc3061abf433c301c88d5a85b0e0a2943569dc98ab76294f05fdb189b6c40672fbacab34c3a4ab87818e0a153dadf45d1e6a407c9910958
7
- data.tar.gz: 6624cc4dadcc4dce777658d731916b8f555eeeb48f11dca834435b5ffe484d7ba2fe6165f7863f0d6eba797f112d22539ea2fb8c3a4dc7a34fa54ff48d3bdce8
6
+ metadata.gz: b0d353c4011b056b68d1fd0625e1f35d00a9b305aa0b5f9c8896757c45269d6bbb37e6a963f80f4168a6cd87aae6677f199ca104f811698e5434ebb3f3c4ce0f
7
+ data.tar.gz: 495f5d719615684ef60cdf7887f474f233ea204bca727b82caee40399a9501f61cb718a87db77c69dd255bb76bca91aced3354403e4f3e9b6b5e9569933d3c46
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Concussion
2
2
 
3
- Sucker Punch is an awesome gem which allows in-process background jobs. If you want to run jobs at a particular time,
3
+ [Sucker Punch](https://github.com/brandonhilkert/sucker_punch) is an awesome gem which allows in-process background jobs. If you want to run jobs at a particular time,
4
4
  however, there is a downside. Jobs are only held in memory, so restarting the process will kill any pending jobs.
5
5
 
6
6
  Most web apps will be using some kind of data store however, so Concussion allows them to be persisted.
@@ -103,8 +103,9 @@ All done.
103
103
 
104
104
  Bug reports and pull requests are welcome on GitHub at https://github.com/chemica/concussion. This project is
105
105
  intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the
106
- [Contributor Covenant](contributor-covenant.org) code of conduct. Or something. These words were automatically
107
- added to this gem, but they are good words so they can stay.
106
+ [Contributor Covenant](https://github.com/chemica/concussion/blob/master/CODE_OF_CONDUCT.md) code of conduct.
107
+
108
+ Or something. These words were automatically added to this gem, but they are good words so they can stay.
108
109
 
109
110
 
110
111
  ## License
@@ -1,4 +1,6 @@
1
1
  require "concussion/version"
2
+ require "concussion/redis_adapter"
3
+ require "concussion/persist"
2
4
 
3
5
  module Concussion
4
6
 
@@ -1,3 +1,3 @@
1
1
  module Concussion
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concussion
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamin Randles-Dunkley