evt-mimic 2.3.1.1 → 2.3.1.2

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
  SHA256:
3
- metadata.gz: c071484ae6bf517f84f2e354d801127fa0d6160564cc991b7b4f6f9e5e0d6f08
4
- data.tar.gz: 91514c57f438967002f98b71a85707871f295ad9fff82c33dcf547253abcbab4
3
+ metadata.gz: 804286666605f11fb447e9fa2ea110c801ccd38b9783f66babb9ff2313b621fd
4
+ data.tar.gz: af3bf05068964ba6f92003cacb50cc5af5bdf95ef79f2ab341f8cbc6166021a6
5
5
  SHA512:
6
- metadata.gz: 51e4c7757f271e26e0744a01b85040fde78bb3008b70ab50c5f45be4938dae18a4f9daced62a9c8b53d46ed2596231e395b8c7be87883b10aa49f196e4d28101
7
- data.tar.gz: 93cbcddd78b8a9f7d93c5d3387ab72c5574e51c6867fe9f727e60c769ded70d5943a29767cffe2591e480dcc2c6239780945db5c538b42625282789230c924b5
6
+ metadata.gz: 44a8b96d97b35286b6ab61e81994a3671755eb29bec4de282d893376382bbe9e647f54801328d07278754d359a668de47d06d3f18c8c6670772352f34d264192
7
+ data.tar.gz: 561720ca5063614e4037f7eb2422298b9876eb38953c0e2fbd9b5c672393af777dad55c167db41bde28af319d2f1e954032c01b4091881fef66304171069da6b
@@ -17,6 +17,11 @@ module Mimic
17
17
  end
18
18
  end
19
19
 
20
+ class Initialized
21
+ def initialize(a)
22
+ end
23
+ end
24
+
20
25
  module Anonymous
21
26
  def self.example
22
27
  ::Class.new(Example)
@@ -1,6 +1,6 @@
1
1
  module Mimic
2
2
  def self.call(subject_class, record: nil, &blk)
3
3
  cls = Build.(subject_class, record: record, &blk)
4
- cls.new
4
+ cls.allocate
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: evt-mimic
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1.1
4
+ version: 2.3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Eventide Project
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-24 00:00:00.000000000 Z
11
+ date: 2020-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: evt-invocation
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  - !ruby/object:Gem::Version
90
90
  version: '0'
91
91
  requirements: []
92
- rubygems_version: 3.0.1
92
+ rubygems_version: 3.1.2
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: Copy a class's instance interface to an anonymous, new object that acts as