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 +4 -4
- data/Gemfile.lock +13 -13
- data/README.md +5 -0
- data/lib/{anachronic/anachronic.rb → anachronic.rb} +0 -0
- data/lib/anachronic/version.rb +1 -1
- metadata +2 -3
- data/lib/.keep +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 743dddfad60bed6e4675cdac3331ea6ec4bfbb0f56ad9ebfc704b2a9e43a2d2c
|
|
4
|
+
data.tar.gz: 543760bbdff7016978b015e5488441f41751c1822f45708921d21b44ead3d202
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d977775a046b882d476d9d2a03c3a63b962787c931b152cde5a17b06b18db765a2e50e51aaca3be61102d1ee080ab689b704040ff3daf2db807c78526b00e9d5
|
|
7
|
+
data.tar.gz: df029c59826a30b9f41a932aec5141b6cd1f120e9d7193b968dc2d5fbf0643b5c3771732fcf91a23c040eab25e44a6fbe28884bfa85a67928756892d104a176b
|
data/Gemfile.lock
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
anachronic (0.42.
|
|
4
|
+
anachronic (0.42.3)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
diff-lcs (1.
|
|
9
|
+
diff-lcs (1.4.4)
|
|
10
10
|
rake (12.3.3)
|
|
11
|
-
rspec (3.
|
|
12
|
-
rspec-core (~> 3.
|
|
13
|
-
rspec-expectations (~> 3.
|
|
14
|
-
rspec-mocks (~> 3.
|
|
15
|
-
rspec-core (3.
|
|
16
|
-
rspec-support (~> 3.
|
|
17
|
-
rspec-expectations (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.
|
|
20
|
-
rspec-mocks (3.
|
|
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.
|
|
23
|
-
rspec-support (3.
|
|
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)
|
|
File without changes
|
data/lib/anachronic/version.rb
CHANGED
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.
|
|
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
|
|
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
|