relaxo 1.6.0 → 1.6.1
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/lib/.DS_Store +0 -0
- data/lib/relaxo/database.rb +2 -2
- data/lib/relaxo/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee389a32f25fdf49c2a4ce9e347b8f75f865e99027836fe960029a97b614886c
|
4
|
+
data.tar.gz: 7fb8ea8ad158e7cd244dba5ab7ef5b0b94b02a4207a5be4090a131ccf4b0a51b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 549af3e6849d9a99a86415201e2b6126f0a76f2fa8f7b27ebc7e2af0a9b1750be40efb24b14fdc8fa04fb4a49a1daaa5f6b9dbcb395e960d18fc0c3308a1c6ff
|
7
|
+
data.tar.gz: 50ab5e3e2f2fde0643c276729e9954da0ade6027e597490e950f3fdc95849d9c208b32da1139fb218c49198444b6147311e6e9c7a8b0937dc7e142a6fe92e293
|
data/lib/.DS_Store
ADDED
Binary file
|
data/lib/relaxo/database.rb
CHANGED
@@ -28,12 +28,12 @@ module Relaxo
|
|
28
28
|
HEAD = 'HEAD'.freeze
|
29
29
|
|
30
30
|
class Database
|
31
|
-
def initialize(path, branch, metadata = {}
|
31
|
+
def initialize(path, branch, metadata = {})
|
32
32
|
@path = path
|
33
33
|
@metadata = metadata
|
34
34
|
|
35
35
|
@repository = Rugged::Repository.new(path)
|
36
|
-
@repository.config['core.fsyncObjectFiles'] = fsync
|
36
|
+
# @repository.config['core.fsyncObjectFiles'] = fsync
|
37
37
|
|
38
38
|
@branch = branch
|
39
39
|
end
|
data/lib/relaxo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relaxo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: console
|
@@ -142,6 +142,7 @@ executables: []
|
|
142
142
|
extensions: []
|
143
143
|
extra_rdoc_files: []
|
144
144
|
files:
|
145
|
+
- lib/.DS_Store
|
145
146
|
- lib/relaxo.rb
|
146
147
|
- lib/relaxo/changeset.rb
|
147
148
|
- lib/relaxo/database.rb
|