rservicebus2 0.0.9 → 0.0.10

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: 2818f60beb961df4be8ade5166033fe205c89a44
4
- data.tar.gz: b6c5ae95275f5245fdc762ddade45a509305d2b6
3
+ metadata.gz: 3bb0aa1a4b3f50b84be37995cab7b3c4a9f82afe
4
+ data.tar.gz: e129f3a2db75f0be5912e4adbe5124059927c6ea
5
5
  SHA512:
6
- metadata.gz: 07743b264253c6c62057f34ce8e54273867593a104eca5fec78aa1e1b1f31823ef9479625123133dd2fb267ba93d67f29e60919793a26e3419a207550c051ab5
7
- data.tar.gz: c131f2da904d6468837f722e408587fd239834e816bc38720aa176a24b8d8611dd2e626d9cff1b938f84c4bc4cd57bc9af4809f020eabbe81ddf1360123d0aa9
6
+ metadata.gz: 080a4a3fe0693e1859988eb967c74a45874a7ec564da13e07e7a6cc51a48e15f177f7b0c502c62325c8831d06251ed4b68502dbdfe70638059d77e8f04dac9ca
7
+ data.tar.gz: f4558fac3c5884ca4fda4a6563db4b1d4df400078ca19a1438e238b2ca6deb5d42212d14d65c7de0dd79a0a0a4a4c7470116c57c9423fd22caf3bbc77119dd49
@@ -7,17 +7,17 @@ module RServiceBus2
7
7
  end
8
8
 
9
9
  # Transaction Semantics
10
- def Begin
10
+ def begin
11
11
  @connection.begin
12
12
  end
13
13
 
14
14
  # Transaction Semantics
15
- def Commit
15
+ def commit
16
16
  @connection.commit
17
17
  end
18
18
 
19
19
  # Transaction Semantics
20
- def Rollback
20
+ def rollback
21
21
  @connection.rollback
22
22
  end
23
23
  end
@@ -4,21 +4,21 @@ module RServiceBus2
4
4
  # Implementation of an AppResource - FluidDb2
5
5
  class AppResourceFluidDb2 < AppResource
6
6
  def connect(uri)
7
- FluidDb2.Db(uri)
7
+ FluidDb2.db(uri)
8
8
  end
9
9
 
10
10
  # Transaction Semantics
11
- def Begin
11
+ def begin
12
12
  @connection.begin
13
13
  end
14
14
 
15
15
  # Transaction Semantics
16
- def Commit
16
+ def commit
17
17
  @connection.commit
18
18
  end
19
19
 
20
20
  # Transaction Semantics
21
- def Rollback
21
+ def rollback
22
22
  @connection.rollback
23
23
  end
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rservicebus2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guy Irvine