mondavi 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e56ed8dcd40c15b20bbb3b60c15e5ffd2c72f9ed
4
- data.tar.gz: 09f062e92704e6be27a6426315afd9f51491b488
3
+ metadata.gz: ae1ed399b95198afaa7ac60b88a2e74332acbd79
4
+ data.tar.gz: a69f68cc69b95502f0ba3763792526fd5736dec7
5
5
  SHA512:
6
- metadata.gz: 0d31f6a82afa78ed25edf1057df5630c137ce94322216ef6b7485e32afc78264f9d886e4664275978d967b43653324e8cf10765d9713172282fe0f7f79212e37
7
- data.tar.gz: fb8d99d07fd093669e1fa670d602c05bf9ecbde6984351e0cb19e6aa65f3e25fcc2f6b7319a84b6f9df60c74ad524df6c3e94311da4a9635d5a57332c042a469
6
+ metadata.gz: 5db8dce345942c8fda015ba07604d8771c0ae870269ff31c8d099affd37c7f9621f297a292ce52ca2519e0cd26dee49e4ecaf04bebe0ad1fb0feb31a04709c32
7
+ data.tar.gz: 3ce8e1a5998eb8f8e07fdd65ac2a7ae44d404dc2f3f5727921cdc83a795256b297c86ace6db03d252c3b1c3f143489119b626c16f6942fc93c697c58e98b8e5f
@@ -1,19 +1,20 @@
1
- class IsComponentLocal
2
- include Operation
1
+ module Mondavi
2
+ class IsComponentLocal
3
+ include Operation
3
4
 
4
- def initialize(target_concept:)
5
- @target_concept = target_concept
6
- end
7
-
8
- def call()
9
- impl = @target_concept.to_s.gsub("Component", "ComponentImpl")
10
- Object.const_get(impl).present?
11
- rescue NameError => e
12
- false
13
- end
5
+ def initialize(target_concept:)
6
+ @target_concept = target_concept
7
+ end
14
8
 
15
- private
9
+ def call()
10
+ impl = @target_concept.to_s.gsub("Component", "ComponentImpl")
11
+ Object.const_get(impl).present?
12
+ rescue NameError => e
13
+ false
14
+ end
16
15
 
17
- attr_accessor :target_concept
16
+ private
18
17
 
18
+ attr_accessor :target_concept
19
+ end
19
20
  end
@@ -1,5 +1,5 @@
1
1
  # Should be used in test (always) and dev (when call is external)
2
- module ComponentsApi
2
+ module Mondavi
3
3
  module PactRouter
4
4
 
5
5
  def self.included(base)
@@ -1,4 +1,4 @@
1
- module ComponentsApi
1
+ module Mondavi
2
2
  module RequestRouter
3
3
  def self.included(base)
4
4
  base.extend(ClassMethods)
@@ -1,3 +1,3 @@
1
1
  module Mondavi
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mondavi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ashton Thomas