activerecord-oracle_enhanced-adapter 1.5.0.beta1 → 1.5.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +1 -1
- data/README.md +1 -1
- data/VERSION +1 -1
- data/activerecord-oracle_enhanced-adapter.gemspec +2 -2
- data/spec/active_record/connection_adapters/oracle_enhanced_procedures_spec.rb +0 -2
- 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: fb3a4a1f82b31f00b3e0f0591c68690feee61478
|
4
|
+
data.tar.gz: 10de165d5a7f39bc196a87e81a5352a70fc7beaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c99ca104cbd90c3f877d815c3436fe9bedbe53794056ad39586eb7950538d3716d331fef1049ecc6dbf9437e34762886bd437c8220b3f18a52715b0be806047f
|
7
|
+
data.tar.gz: 19dbc498b08ac2024a9340c6e21bfade908a1e45316aebf02db9e408c600c1e1f9445a648bfa6a1ed94359ffaab0a7e72604ee43fade4149fa117adf20dc8e58
|
data/History.md
CHANGED
data/README.md
CHANGED
@@ -17,7 +17,7 @@ Oracle enhanced adapter version 1.5 just supports Rails 4 and does not support R
|
|
17
17
|
|
18
18
|
When using Ruby on Rails version 4 then in Gemfile include
|
19
19
|
|
20
|
-
gem
|
20
|
+
gem "activerecord-oracle_enhanced-adapter", "~> 1.5.0.beta1"
|
21
21
|
|
22
22
|
where instead of 1.5.0 you can specify any other desired version. It is recommended to specify version with `~>` which means that use specified version or later patch versions (in this example any later 1.5.x version but not 1.6.x version). Oracle enhanced adapter maintains API backwards compatibility during patch version upgrades and therefore it is safe to always upgrade to latest patch version.
|
23
23
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.5.0.
|
1
|
+
1.5.0.rc1
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{activerecord-oracle_enhanced-adapter}
|
8
|
-
s.version = "1.5.0.
|
8
|
+
s.version = "1.5.0.rc1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = [%q{Raimonds Simanovskis}]
|
12
|
-
s.date = %q{2013-10-
|
12
|
+
s.date = %q{2013-10-31}
|
13
13
|
s.description = %q{Oracle "enhanced" ActiveRecord adapter contains useful additional methods for working with new and legacy Oracle databases.
|
14
14
|
This adapter is superset of original ActiveRecord Oracle adapter.
|
15
15
|
}
|
@@ -229,7 +229,6 @@ describe "OracleEnhancedAdapter custom methods for create, update and destroy" d
|
|
229
229
|
end
|
230
230
|
|
231
231
|
it "should not update record if nothing is changed and partial writes are enabled" do
|
232
|
-
return pending("Not in this ActiveRecord version") unless TestEmployee.respond_to?(:partial_updates=)
|
233
232
|
TestEmployee.partial_writes = true
|
234
233
|
@employee = TestEmployee.create(
|
235
234
|
:first_name => "First",
|
@@ -243,7 +242,6 @@ describe "OracleEnhancedAdapter custom methods for create, update and destroy" d
|
|
243
242
|
end
|
244
243
|
|
245
244
|
it "should update record if nothing is changed and partial writes are disabled" do
|
246
|
-
return pending("Not in this ActiveRecord version") unless TestEmployee.respond_to?(:partial_updates=)
|
247
245
|
TestEmployee.partial_writes = false
|
248
246
|
@employee = TestEmployee.create(
|
249
247
|
:first_name => "First",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-oracle_enhanced-adapter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.0.
|
4
|
+
version: 1.5.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Raimonds Simanovskis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-10-
|
11
|
+
date: 2013-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jeweler
|