anachronic 0.42.2 → 0.42.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 324d2c9426f10fa8877399b5de9f2c4e8a2786e68aea018ceda2577ed5c9e023
4
- data.tar.gz: f9a0e10c27f49c5a6f19dc07fad6194b4f45d5af676943f1bd57c77fb761f05e
3
+ metadata.gz: 743dddfad60bed6e4675cdac3331ea6ec4bfbb0f56ad9ebfc704b2a9e43a2d2c
4
+ data.tar.gz: 543760bbdff7016978b015e5488441f41751c1822f45708921d21b44ead3d202
5
5
  SHA512:
6
- metadata.gz: '0953f4299299681079a375c4b8cb0bc1ccf02f5cc38a0fbc7135043ea1af9dc7e88a694c51f07dd75d7af641a343c266a181eac4915e969ab88bae2143d63811'
7
- data.tar.gz: 82fa513525cd19a4ddbc934eeff5ee59f22db3fbbf4d2df24a07b8f4b539b5a2642732b0c39705195d003c375e11c007526ebc32c7175603192d0080448fa884
6
+ metadata.gz: d977775a046b882d476d9d2a03c3a63b962787c931b152cde5a17b06b18db765a2e50e51aaca3be61102d1ee080ab689b704040ff3daf2db807c78526b00e9d5
7
+ data.tar.gz: df029c59826a30b9f41a932aec5141b6cd1f120e9d7193b968dc2d5fbf0643b5c3771732fcf91a23c040eab25e44a6fbe28884bfa85a67928756892d104a176b
@@ -1,26 +1,26 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- anachronic (0.42.2)
4
+ anachronic (0.42.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- diff-lcs (1.3)
9
+ diff-lcs (1.4.4)
10
10
  rake (12.3.3)
11
- rspec (3.8.0)
12
- rspec-core (~> 3.8.0)
13
- rspec-expectations (~> 3.8.0)
14
- rspec-mocks (~> 3.8.0)
15
- rspec-core (3.8.0)
16
- rspec-support (~> 3.8.0)
17
- rspec-expectations (3.8.3)
11
+ rspec (3.9.0)
12
+ rspec-core (~> 3.9.0)
13
+ rspec-expectations (~> 3.9.0)
14
+ rspec-mocks (~> 3.9.0)
15
+ rspec-core (3.9.2)
16
+ rspec-support (~> 3.9.3)
17
+ rspec-expectations (3.9.2)
18
18
  diff-lcs (>= 1.2.0, < 2.0)
19
- rspec-support (~> 3.8.0)
20
- rspec-mocks (3.8.0)
19
+ rspec-support (~> 3.9.0)
20
+ rspec-mocks (3.9.1)
21
21
  diff-lcs (>= 1.2.0, < 2.0)
22
- rspec-support (~> 3.8.0)
23
- rspec-support (3.8.0)
22
+ rspec-support (~> 3.9.0)
23
+ rspec-support (3.9.3)
24
24
 
25
25
  PLATFORMS
26
26
  ruby
data/README.md CHANGED
@@ -24,6 +24,8 @@ HumanJob.perform_later(Human.new)
24
24
  ### You can now write:
25
25
  ```ruby
26
26
  class Human
27
+ extend Anachronic
28
+
27
29
  async def speak
28
30
  puts('Truth!')
29
31
  end
@@ -70,3 +72,6 @@ The gem is available as open source under the terms of the [MIT License](https:/
70
72
  ## Code of Conduct
71
73
 
72
74
  Everyone interacting in the Anachronic project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/dvisockas/anachronic/blob/master/CODE_OF_CONDUCT.md).
75
+
76
+ ## Inspired by
77
+ - [Memoist](https://github.com/matthewrudy/memoist)
@@ -1,3 +1,3 @@
1
1
  module Anachronic
2
- VERSION = '0.42.2'
2
+ VERSION = '0.42.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anachronic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.2
4
+ version: 0.42.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danielius Visockas
@@ -30,8 +30,7 @@ files:
30
30
  - anachronic.gemspec
31
31
  - bin/console
32
32
  - bin/setup
33
- - lib/.keep
34
- - lib/anachronic/anachronic.rb
33
+ - lib/anachronic.rb
35
34
  - lib/anachronic/background_executor.rb
36
35
  - lib/anachronic/error.rb
37
36
  - lib/anachronic/executors/application_job.rb
data/lib/.keep DELETED
File without changes