rsim-activerecord-oracle_enhanced-adapter 1.1.9.93 → 1.2.0
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.
- data/History.txt +11 -0
- data/README.txt +6 -2
- data/lib/active_record/connection_adapters/oracle_enhanced_version.rb +2 -2
- data/oracle-enhanced.gemspec +2 -2
- metadata +2 -2
data/History.txt
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
== 1.2.0 2009-03-22
|
2
|
+
|
3
|
+
* Enhancements
|
4
|
+
* support for JRuby and JDBC
|
5
|
+
* support for Ruby 1.9.1 and ruby-oci8 2.0
|
6
|
+
* support for Rails 2.3
|
7
|
+
* quoting of Oracle reserved words in table names and column names
|
8
|
+
* emulation of OracleAdapter (for ActiveRecord unit tests)
|
9
|
+
* Bug fixes:
|
10
|
+
* several bug fixes that were identified during running of ActiveRecord unit tests
|
11
|
+
|
1
12
|
== 1.1.9 2009-01-02
|
2
13
|
|
3
14
|
* Enhancements
|
data/README.txt
CHANGED
@@ -17,8 +17,12 @@ Bugs and enhancement requests can be reported at http://rsim.lighthouseapp.com/p
|
|
17
17
|
|
18
18
|
== REQUIREMENTS:
|
19
19
|
|
20
|
-
* Works (has been tested) with ActiveRecord version 2.0, 2.1 and 2.
|
21
|
-
*
|
20
|
+
* Works (has been tested) with ActiveRecord version 2.0, 2.1, 2.2 and 2.3 (these are the same as Rails versions)
|
21
|
+
* Can be used on the following Ruby platforms:
|
22
|
+
* MRI - requires ruby-oci8 1.x or 2.x library to connect to Oracle
|
23
|
+
* Ruby/YARV 1.9.1 - requires ruby-oci8 2.x library to connect to Oracle
|
24
|
+
unicode_utils gem is recommended for Unicode aware string upcase and downcase
|
25
|
+
* JRuby - uses JDBC driver ojdbc14.jar to connect to Oracle (should be in JRUBY_HOME/lib or in PATH)
|
22
26
|
* Requires ruby-plsql gem to support custom create, update and delete methods (but can be used without ruby-plsql if this functionality is not needed)
|
23
27
|
|
24
28
|
== INSTALL:
|
data/oracle-enhanced.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{activerecord-oracle_enhanced-adapter}
|
5
|
-
s.version = "1.
|
5
|
+
s.version = "1.2.0"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Raimonds Simanovskis"]
|
9
|
-
s.date = %q{2009-03-
|
9
|
+
s.date = %q{2009-03-22}
|
10
10
|
s.description = %q{Oracle enhanced adapter for ActiveRecord}
|
11
11
|
s.email = ["raimonds.simanovskis@gmail.com"]
|
12
12
|
s.extra_rdoc_files = ["History.txt", "License.txt", "Manifest.txt", "README.txt"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rsim-activerecord-oracle_enhanced-adapter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Raimonds Simanovskis
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-03-
|
12
|
+
date: 2009-03-22 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|