dry-effects 0.1.0 → 0.1.1
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/.codeclimate.yml +2 -5
- data/.github/ISSUE_TEMPLATE/----please-don-t-ask-for-support-via-issues.md +10 -0
- data/.github/ISSUE_TEMPLATE/---bug-report.md +34 -0
- data/.github/ISSUE_TEMPLATE/---feature-request.md +18 -0
- data/.github/workflows/ci.yml +74 -0
- data/.github/workflows/docsite.yml +34 -0
- data/.github/workflows/sync_configs.yml +34 -0
- data/.rspec +2 -1
- data/.rubocop.yml +22 -6
- data/CHANGELOG.md +17 -2
- data/CODE_OF_CONDUCT.md +13 -0
- data/CONTRIBUTING.md +2 -2
- data/Gemfile +1 -0
- data/LICENSE +14 -15
- data/README.md +4 -2
- data/docsite/source/effects.html.md +29 -0
- data/docsite/source/effects/cache.html.md +84 -0
- data/docsite/source/effects/current_time.html.md +186 -0
- data/docsite/source/effects/defer.html.md +130 -0
- data/docsite/source/effects/env.html.md +144 -0
- data/docsite/source/effects/interrupt.html.md +109 -0
- data/docsite/source/effects/parallel.html.md +25 -0
- data/docsite/source/effects/reader.html.md +126 -0
- data/docsite/source/effects/resolve.html.md +188 -0
- data/docsite/source/effects/state.html.md +178 -0
- data/docsite/source/effects/timeout.html.md +42 -0
- data/docsite/source/index.html.md +212 -0
- data/lib/dry/effects/extensions.rb +4 -0
- data/lib/dry/effects/extensions/rspec.rb +21 -0
- data/lib/dry/effects/version.rb +1 -1
- metadata +22 -3
- data/.travis.yml +0 -32
data/lib/dry/effects/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dry-effects
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nikita Shilnikov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-11-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|
@@ -168,16 +168,34 @@ extensions: []
|
|
168
168
|
extra_rdoc_files: []
|
169
169
|
files:
|
170
170
|
- ".codeclimate.yml"
|
171
|
+
- ".github/ISSUE_TEMPLATE/----please-don-t-ask-for-support-via-issues.md"
|
172
|
+
- ".github/ISSUE_TEMPLATE/---bug-report.md"
|
173
|
+
- ".github/ISSUE_TEMPLATE/---feature-request.md"
|
174
|
+
- ".github/workflows/ci.yml"
|
175
|
+
- ".github/workflows/docsite.yml"
|
176
|
+
- ".github/workflows/sync_configs.yml"
|
171
177
|
- ".gitignore"
|
172
178
|
- ".rspec"
|
173
179
|
- ".rubocop.yml"
|
174
|
-
- ".travis.yml"
|
175
180
|
- CHANGELOG.md
|
181
|
+
- CODE_OF_CONDUCT.md
|
176
182
|
- CONTRIBUTING.md
|
177
183
|
- Gemfile
|
178
184
|
- LICENSE
|
179
185
|
- README.md
|
180
186
|
- Rakefile
|
187
|
+
- docsite/source/effects.html.md
|
188
|
+
- docsite/source/effects/cache.html.md
|
189
|
+
- docsite/source/effects/current_time.html.md
|
190
|
+
- docsite/source/effects/defer.html.md
|
191
|
+
- docsite/source/effects/env.html.md
|
192
|
+
- docsite/source/effects/interrupt.html.md
|
193
|
+
- docsite/source/effects/parallel.html.md
|
194
|
+
- docsite/source/effects/reader.html.md
|
195
|
+
- docsite/source/effects/resolve.html.md
|
196
|
+
- docsite/source/effects/state.html.md
|
197
|
+
- docsite/source/effects/timeout.html.md
|
198
|
+
- docsite/source/index.html.md
|
181
199
|
- dry-effects.gemspec
|
182
200
|
- examples/cmp.rb
|
183
201
|
- examples/state.rb
|
@@ -207,6 +225,7 @@ files:
|
|
207
225
|
- lib/dry/effects/errors.rb
|
208
226
|
- lib/dry/effects/extensions.rb
|
209
227
|
- lib/dry/effects/extensions/auto_inject.rb
|
228
|
+
- lib/dry/effects/extensions/rspec.rb
|
210
229
|
- lib/dry/effects/extensions/system.rb
|
211
230
|
- lib/dry/effects/frame.rb
|
212
231
|
- lib/dry/effects/halt.rb
|
data/.travis.yml
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
---
|
2
|
-
language: ruby
|
3
|
-
cache: bundler
|
4
|
-
bundler_args: --without benchmarks tools
|
5
|
-
before_script:
|
6
|
-
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
7
|
-
- chmod +x ./cc-test-reporter
|
8
|
-
- ./cc-test-reporter before-build
|
9
|
-
rvm:
|
10
|
-
- 2.4.7
|
11
|
-
- 2.5.6
|
12
|
-
- 2.6.4
|
13
|
-
- truffleruby
|
14
|
-
after_script:
|
15
|
-
- "[ -d coverage ] && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT"
|
16
|
-
env:
|
17
|
-
global:
|
18
|
-
- COVERAGE=true
|
19
|
-
matrix:
|
20
|
-
allow_failures:
|
21
|
-
- rvm: truffleruby
|
22
|
-
include:
|
23
|
-
- rvm: jruby-9.2.8.0
|
24
|
-
jdk: openjdk8
|
25
|
-
notifications:
|
26
|
-
email: false
|
27
|
-
webhooks:
|
28
|
-
urls:
|
29
|
-
- https://webhooks.gitter.im/e/19098b4253a72c9796db
|
30
|
-
on_success: change # options: [always|never|change] default: always
|
31
|
-
on_failure: always # options: [always|never|change] default: always
|
32
|
-
on_start: false # default: false
|