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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a74f5a066c9c346da43e6a9d740a3aff47e59ef2
4
- data.tar.gz: af9745bc4a32f6d765a5d536d2e13d8a5962eed3
3
+ metadata.gz: fb3a4a1f82b31f00b3e0f0591c68690feee61478
4
+ data.tar.gz: 10de165d5a7f39bc196a87e81a5352a70fc7beaf
5
5
  SHA512:
6
- metadata.gz: 4307827c8682b9654fad38a2cdca95d0a93a864401a09f9e88bc0db787faa825605631c7867635ae26d6e58796a846c9cefa35b2a18a11c2ab5a79cff6ec9b56
7
- data.tar.gz: 78cd7ef1859e4a8ac0d2915a66971ff8a45282c8c90284259e39d4d832682876cb1b4f06d9a32135a68652bc3456c6b45f03c243afb675dc029900287d09611d
6
+ metadata.gz: c99ca104cbd90c3f877d815c3436fe9bedbe53794056ad39586eb7950538d3716d331fef1049ecc6dbf9437e34762886bd437c8220b3f18a52715b0be806047f
7
+ data.tar.gz: 19dbc498b08ac2024a9340c6e21bfade908a1e45316aebf02db9e408c600c1e1f9445a648bfa6a1ed94359ffaab0a7e72604ee43fade4149fa117adf20dc8e58
data/History.md CHANGED
@@ -1,4 +1,4 @@
1
- ## 1.5.0.rc1 / 2013-10-28
1
+ ## 1.5.0.beta1 / 2013-10-28
2
2
 
3
3
  * Enhancements and major changes
4
4
  * Support Rails 4.0
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 'activerecord-oracle_enhanced-adapter', '~> 1.5.0'
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.beta1
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.beta1"
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-24}
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.beta1
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-27 00:00:00.000000000 Z
11
+ date: 2013-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jeweler