ob 0.0.1.2 → 0.0.1.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/lib/ob/operations/exec.rb +16 -0
- data/lib/ob/version.rb +1 -1
- data/ob-0.0.1.1.gem +0 -0
- data/ob-0.0.1.2.gem +0 -0
- data/ob-0.0.1.gem +0 -0
- metadata +5 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d662e6cc977246ad12fa346e44e0f9692e8a289
|
4
|
+
data.tar.gz: 80fa43202015b7ab7d230121f7ae58f2ae285ed8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0a5b79b5c57fdcbf65598863ca6038f6062a79882dca81816b24dda8fd7dd0c74a2c84f1e612bbbc390a4d0500218eb0dfa23587ecaf77a9965c62dfcf061910
|
7
|
+
data.tar.gz: 5269b0a52e701712644a94d591907f94c103c35abea549abe669703a1812f72a9861c6520d92cc7dd1bcb4c6541fc8d049c9e4439a3f8c146c97c7b19fea62c1
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module Ob
|
2
|
+
module Operations
|
3
|
+
module Exec
|
4
|
+
module ClassMethods
|
5
|
+
def exec(query)
|
6
|
+
instance = ObObject.new
|
7
|
+
response = Requestor.new.request(:get, url, query)
|
8
|
+
response
|
9
|
+
end
|
10
|
+
end
|
11
|
+
def self.included(base)
|
12
|
+
base.extend(ClassMethods)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
data/lib/ob/version.rb
CHANGED
data/ob-0.0.1.1.gem
ADDED
Binary file
|
data/ob-0.0.1.2.gem
ADDED
Binary file
|
data/ob-0.0.1.gem
ADDED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ob
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.1.
|
4
|
+
version: 0.0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jesus Lerma Sanchez
|
@@ -73,12 +73,16 @@ files:
|
|
73
73
|
- lib/ob.rb
|
74
74
|
- lib/ob/material_mgmt_storage_detail.rb
|
75
75
|
- lib/ob/ob_object.rb
|
76
|
+
- lib/ob/operations/exec.rb
|
76
77
|
- lib/ob/operations/find.rb
|
77
78
|
- lib/ob/operations/where.rb
|
78
79
|
- lib/ob/product.rb
|
79
80
|
- lib/ob/requestor.rb
|
80
81
|
- lib/ob/resource.rb
|
81
82
|
- lib/ob/version.rb
|
83
|
+
- ob-0.0.1.1.gem
|
84
|
+
- ob-0.0.1.2.gem
|
85
|
+
- ob-0.0.1.gem
|
82
86
|
- ob.gemspec
|
83
87
|
homepage: ''
|
84
88
|
licenses:
|