ruby-plsql 0.5.1 → 0.5.2
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/History.txt +6 -0
- data/VERSION +1 -1
- data/lib/plsql/procedure.rb +0 -3
- data/ruby-plsql.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6146c4b4e96437d80996671df0f6ca68829dfc0a
|
|
4
|
+
data.tar.gz: f058454a9f207d41ef3a98e05c9aad90857da253
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1b0537e8c4b32233661d316e93f91e2aa53dc5515e0e4c6b82b4dbb3049f782e85cc4ae78e52b47fb4cf05b7cc5c64aa4b585dd8b840622839730baaf37fdfa
|
|
7
|
+
data.tar.gz: eb17b6511c06ebe93ad09c9c5fefe19bd7aa298651802f54f41fdaae5b5b03308fe4ec2a141b17ac762e109e8838ff99c3303b51e58e3b0a7ba04253d4e5ae5c
|
data/History.txt
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
+
== 0.5.2 2014-10-23
|
|
2
|
+
|
|
3
|
+
* Bug fixes
|
|
4
|
+
* Use all_procedures.object_type only if Oracle versions < 11g (regression in 0.5.1, affecting Oracle < 11g)
|
|
5
|
+
|
|
1
6
|
== 0.5.1 2014-10-12
|
|
7
|
+
|
|
2
8
|
* Improvements
|
|
3
9
|
* Support for Oracle Ehnanced Adapter 1.5 and ActiveRecord 4.1, 4.2
|
|
4
10
|
* Oracle 12c support
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.2
|
data/lib/plsql/procedure.rb
CHANGED
|
@@ -10,7 +10,6 @@ module PLSQL
|
|
|
10
10
|
AND p.object_name = :object_name
|
|
11
11
|
AND o.owner = p.owner
|
|
12
12
|
AND o.object_name = p.object_name
|
|
13
|
-
AND o.object_type = p.object_type
|
|
14
13
|
AND o.object_type in ('PROCEDURE', 'FUNCTION')",
|
|
15
14
|
schema.schema_name, procedure.to_s.upcase))
|
|
16
15
|
new(schema, procedure, nil, nil, row[0])
|
|
@@ -25,7 +24,6 @@ module PLSQL
|
|
|
25
24
|
AND o.object_type IN ('PROCEDURE','FUNCTION')
|
|
26
25
|
AND o.owner = p.owner
|
|
27
26
|
AND o.object_name = p.object_name
|
|
28
|
-
AND o.object_type = p.object_type
|
|
29
27
|
ORDER BY DECODE(s.owner, 'PUBLIC', 1, 0)",
|
|
30
28
|
schema.schema_name, procedure.to_s.upcase))
|
|
31
29
|
new(schema, row[1], nil, row[0], row[2])
|
|
@@ -41,7 +39,6 @@ module PLSQL
|
|
|
41
39
|
AND p.procedure_name = :procedure_name
|
|
42
40
|
AND o.owner = p.owner
|
|
43
41
|
AND o.object_name = p.object_name
|
|
44
|
-
AND o.object_type = p.object_type
|
|
45
42
|
AND o.object_type = 'PACKAGE'",
|
|
46
43
|
override_schema_name || schema.schema_name, package, procedure.to_s.upcase))
|
|
47
44
|
new(schema, procedure, package, override_schema_name, row[0])
|
data/ruby-plsql.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: ruby-plsql 0.5.
|
|
5
|
+
# stub: ruby-plsql 0.5.2 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "ruby-plsql"
|
|
9
|
-
s.version = "0.5.
|
|
9
|
+
s.version = "0.5.2"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Raimonds Simanovskis"]
|
|
14
|
-
s.date = "2014-10-
|
|
14
|
+
s.date = "2014-10-23"
|
|
15
15
|
s.description = "ruby-plsql gem provides simple Ruby API for calling Oracle PL/SQL procedures.\nIt could be used both for accessing Oracle PL/SQL API procedures in legacy applications\nas well as it could be used to create PL/SQL unit tests using Ruby testing libraries.\n"
|
|
16
16
|
s.email = "raimonds.simanovskis@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-plsql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Raimonds Simanovskis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-10-
|
|
11
|
+
date: 2014-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jeweler
|