dry-behaviour 0.10.3 → 0.10.4
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 +5 -5
- data/bin/{benchmark → dry-behaviour-benchmark} +0 -0
- data/dry-behaviour.gemspec +1 -1
- data/lib/dry/behaviour/version.rb +1 -1
- metadata +4 -7
- data/bin/console +0 -14
- data/bin/setup +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 3eafe0962ee5294324ffff024e99a81ae1d80732bb59d5878be8391a5c9db882
|
|
4
|
+
data.tar.gz: 014fd7b962b13c6355cc23e0ad12da3357dc2cd85962b9a6d3e0b2962438228f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc1556f3f0fe974798404de429adbed4c7e3a08b21c7b1fdc714712af3d555f328100d347ea7052cf6800d5080256f1b9dee8b5f23c5dae4a7a17444b7c6805d
|
|
7
|
+
data.tar.gz: f416b28dd6e471b32644101312be8307f0631206e37186b8ec00abbf5522b089c157130caf9ce8509cf1a9c44306af83b4389fd9aedab892673076fad668cb7c
|
|
File without changes
|
data/dry-behaviour.gemspec
CHANGED
|
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
|
|
23
23
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
24
24
|
spec.bindir = 'bin'
|
|
25
|
-
spec.executables =
|
|
25
|
+
spec.executables = []
|
|
26
26
|
spec.require_paths = ['lib']
|
|
27
27
|
|
|
28
28
|
spec.add_development_dependency 'bundler', '~> 1.10'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dry-behaviour
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.10.
|
|
4
|
+
version: 0.10.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aleksei Matiushkin
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2019-02-26 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: bundler
|
|
@@ -115,9 +115,7 @@ files:
|
|
|
115
115
|
- LICENSE.txt
|
|
116
116
|
- README.md
|
|
117
117
|
- Rakefile
|
|
118
|
-
- bin/benchmark
|
|
119
|
-
- bin/console
|
|
120
|
-
- bin/setup
|
|
118
|
+
- bin/dry-behaviour-benchmark
|
|
121
119
|
- dry-behaviour.gemspec
|
|
122
120
|
- lib/dry/behaviour.rb
|
|
123
121
|
- lib/dry/behaviour/black_tie.rb
|
|
@@ -149,8 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
149
147
|
- !ruby/object:Gem::Version
|
|
150
148
|
version: '0'
|
|
151
149
|
requirements: []
|
|
152
|
-
|
|
153
|
-
rubygems_version: 2.4.8
|
|
150
|
+
rubygems_version: 3.0.1
|
|
154
151
|
signing_key:
|
|
155
152
|
specification_version: 4
|
|
156
153
|
summary: Tiny library inspired by Elixir protocol pattern.
|
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "dry/behaviour"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start
|