oracle 0.0.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 +7 -0
- data/lib/oracle.rb +15 -0
- data/lib/oracle/client.rb +15 -0
- data/lib/oracle/version.rb +13 -0
- data/oracle.gemspec +35 -0
- metadata +91 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: c0acad4267853f2b987523be6c177685a4a198fa
|
|
4
|
+
data.tar.gz: ec626efd90e276eca17c51cfd4207fe302595d98
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 7ff93cbd6449a8f89b7c03e2bc66065f71fbc2605acd364b2bd1063c50a81eef64d6b5f823b2ee544830b87dcac50150148a431e78e1b14dfed6dc28a1361ab0
|
|
7
|
+
data.tar.gz: ff57ba874a1d00f0ca8d1138dd85d43a496ead120e59c13bdbf83613bfbe2b4c558e679dec3c10ae5c34cca92e494735af0070556030f097efc7a19846fa55ce
|
data/lib/oracle.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#
|
|
2
|
+
# `.:/++++++++++++:.`
|
|
3
|
+
# `/syys+++++++++++oyys/` 'oracle'
|
|
4
|
+
# `oyy/` `:yys` Make interacting with Oracle Cloud from within Ruby easier.
|
|
5
|
+
# :yy/ :yy/ Opinionated client and associated PORO to represent resources.
|
|
6
|
+
# /yy/ :yy/
|
|
7
|
+
# `syy:` `:yys` Copyright (c) 2016, Alex Howells <alex@howells.me>
|
|
8
|
+
# `/syyo+++++++++++osyy/` Please see LICENSE in the repository root.
|
|
9
|
+
# `-/++ooooooooo++/-`
|
|
10
|
+
#
|
|
11
|
+
require 'oracle/version'
|
|
12
|
+
|
|
13
|
+
module Oracle
|
|
14
|
+
# This is just a stub for the RubyGems upload.
|
|
15
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#
|
|
2
|
+
# `.:/++++++++++++:.`
|
|
3
|
+
# `/syys+++++++++++oyys/` 'oracle'
|
|
4
|
+
# `oyy/` `:yys` Make interacting with Oracle Cloud from within Ruby easier.
|
|
5
|
+
# :yy/ :yy/ Opinionated client and associated PORO to represent resources.
|
|
6
|
+
# /yy/ :yy/
|
|
7
|
+
# `syy:` `:yys` Copyright (c) 2016, Alex Howells <alex@howells.me>
|
|
8
|
+
# `/syyo+++++++++++osyy/` Please see LICENSE in the repository root.
|
|
9
|
+
# `-/++ooooooooo++/-`
|
|
10
|
+
#
|
|
11
|
+
module Oracle
|
|
12
|
+
class Client
|
|
13
|
+
# This is just a stub for the RubyGems upload.
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#
|
|
2
|
+
# `.:/++++++++++++:.`
|
|
3
|
+
# `/syys+++++++++++oyys/` 'oracle'
|
|
4
|
+
# `oyy/` `:yys` Make interacting with Oracle Cloud from within Ruby easier.
|
|
5
|
+
# :yy/ :yy/ Opinionated client and associated PORO to represent resources.
|
|
6
|
+
# /yy/ :yy/
|
|
7
|
+
# `syy:` `:yys` Copyright (c) 2016, Alex Howells <alex@howells.me>
|
|
8
|
+
# `/syyo+++++++++++osyy/` Please see LICENSE in the repository root.
|
|
9
|
+
# `-/++ooooooooo++/-`
|
|
10
|
+
#
|
|
11
|
+
module Oracle
|
|
12
|
+
VERSION = '0.0.1'.freeze
|
|
13
|
+
end
|
data/oracle.gemspec
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#
|
|
2
|
+
# `.:/++++++++++++:.`
|
|
3
|
+
# `/syys+++++++++++oyys/` 'oracle'
|
|
4
|
+
# `oyy/` `:yys` Make interacting with Oracle Cloud from within Ruby easier.
|
|
5
|
+
# :yy/ :yy/ Opinionated client and associated PORO to represent resources.
|
|
6
|
+
# /yy/ :yy/
|
|
7
|
+
# `syy:` `:yys` Copyright (c) 2016, Alex Howells <alex@howells.me>
|
|
8
|
+
# `/syyo+++++++++++osyy/` Please see LICENSE in the repository root.
|
|
9
|
+
# `-/++ooooooooo++/-`
|
|
10
|
+
#
|
|
11
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
12
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
13
|
+
require 'oracle/version'
|
|
14
|
+
|
|
15
|
+
Gem::Specification.new do |spec|
|
|
16
|
+
spec.name = 'oracle'
|
|
17
|
+
spec.summary = 'Make interacting with Oracle Cloud from within Ruby easier. ' +
|
|
18
|
+
'Opinionated client and associated PORO to represent resources.'
|
|
19
|
+
spec.version = Oracle::VERSION
|
|
20
|
+
spec.license = 'MIT'
|
|
21
|
+
|
|
22
|
+
spec.authors = ['Alex Howells']
|
|
23
|
+
spec.email = ['alex@howells.me']
|
|
24
|
+
spec.homepage = 'https://github.com/agh/oracle'
|
|
25
|
+
|
|
26
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
27
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
28
|
+
spec.require_paths = ['lib']
|
|
29
|
+
|
|
30
|
+
spec.required_ruby_version = '>= 2.3.1'
|
|
31
|
+
|
|
32
|
+
spec.add_development_dependency 'pry', '~> 0.10'
|
|
33
|
+
spec.add_development_dependency 'rake', '~> 11.1'
|
|
34
|
+
spec.add_development_dependency 'rubocop', '~> 0.40'
|
|
35
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: oracle
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alex Howells
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-06-02 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: pry
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0.10'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0.10'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '11.1'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '11.1'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rubocop
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0.40'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0.40'
|
|
55
|
+
description:
|
|
56
|
+
email:
|
|
57
|
+
- alex@howells.me
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- lib/oracle.rb
|
|
63
|
+
- lib/oracle/client.rb
|
|
64
|
+
- lib/oracle/version.rb
|
|
65
|
+
- oracle.gemspec
|
|
66
|
+
homepage: https://github.com/agh/oracle
|
|
67
|
+
licenses:
|
|
68
|
+
- MIT
|
|
69
|
+
metadata: {}
|
|
70
|
+
post_install_message:
|
|
71
|
+
rdoc_options: []
|
|
72
|
+
require_paths:
|
|
73
|
+
- lib
|
|
74
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
75
|
+
requirements:
|
|
76
|
+
- - ">="
|
|
77
|
+
- !ruby/object:Gem::Version
|
|
78
|
+
version: 2.3.1
|
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
|
+
requirements:
|
|
81
|
+
- - ">="
|
|
82
|
+
- !ruby/object:Gem::Version
|
|
83
|
+
version: '0'
|
|
84
|
+
requirements: []
|
|
85
|
+
rubyforge_project:
|
|
86
|
+
rubygems_version: 2.5.1
|
|
87
|
+
signing_key:
|
|
88
|
+
specification_version: 4
|
|
89
|
+
summary: Make interacting with Oracle Cloud from within Ruby easier. Opinionated client
|
|
90
|
+
and associated PORO to represent resources.
|
|
91
|
+
test_files: []
|