kdbx 0.2.0 → 0.2.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.
Files changed (5) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE.txt +1 -1
  3. data/README.md +4 -14
  4. data/lib/kdbx/version.rb +1 -1
  5. metadata +19 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a7bc07ea8275bb2ada03a4cc9da04d76d7cbee79
4
- data.tar.gz: 7d086b8150446b8bdfdfb41a746c9086fc5ce873
2
+ SHA256:
3
+ metadata.gz: e2444e564c2754b703e10534c37d4ffd05b78e39b0d9fc69d238ac64b168d91a
4
+ data.tar.gz: 81e57a7082d697ef29a527653fe9daea0a1a4f194e4fed34a5fea72d74b67701
5
5
  SHA512:
6
- metadata.gz: 947542790231a62649f280adb0d4f8e990ec3940c9c6415e123abe99cff67d0b6976c0984987620fbb557bfd9253a253c25761b307b7badcd39d2c5403b55b49
7
- data.tar.gz: e7c3dc8d5eb254530406bece0cc5573e6c6f03927bd8bd72052f295a1b35d4e3b9d036646d597ca0ebe79e061df3170a47900ec2d42af8743439059bbcd1682b
6
+ metadata.gz: 7dab786b137f5d0402e54f8f1a06507dbd9b7c2f97b84dd5968493527f99c69389cabefa5a47b35a00979397ba30eebddf09706db9abd51bd7cbab189c5f34c2
7
+ data.tar.gz: eb2f49d8341fbdc91106ca2211f573bef3ac51f668701d2013b5c7d4b33c208bf4e38ed22bb69ac6cf0080ee66d19716b24833e747f78edcef71accff31f78d1
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 rumtid
3
+ Copyright (c) 2021 rumtid
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,16 +1,12 @@
1
1
  # Kdbx.rb
2
2
 
3
- [![Build Status](https://travis-ci.org/rumtid/kdbx.rb.svg?branch=master)](https://travis-ci.org/rumtid/kdbx.rb)
4
- [![Code Climate](https://codeclimate.com/github/rumtid/kdbx.rb/badges/gpa.svg)](https://codeclimate.com/github/rumtid/kdbx.rb)
5
3
  [![Gem Version](https://badge.fury.io/rb/kdbx.svg)](https://badge.fury.io/rb/kdbx)
6
4
 
7
- A library for accessing [KeePass](http://keepass.info/) database (v2+), aka kdbx format file.
5
+ A library to access [KeePass](http://keepass.info/) database(aka kdbx format file).
8
6
 
9
- ## Capability
7
+ ## Warning
10
8
 
11
- - [x] Read/Write kdbx (v2) file.
12
- - [x] Change keys and headers.
13
- - [ ] Support kdbx (v4) file.
9
+ :construction: Working in progress, not ready for production.
14
10
 
15
11
  ## Installation
16
12
 
@@ -29,15 +25,9 @@ puts kdbx.content
29
25
  kdbx.password = "foobar"
30
26
 
31
27
  # Save
32
- kdbx.save
28
+ kdbx.save("demo.kdbx")
33
29
  ```
34
30
 
35
- ## Development
36
-
37
- First, install dependencies: `bundle install`
38
-
39
- Then run tests: `rspec`
40
-
41
31
  ## License
42
32
 
43
33
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  class Kdbx
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,29 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kdbx
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - rumtid
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-10 00:00:00.000000000 Z
11
+ date: 2020-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rexml
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.1'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: salsa20
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
31
  - - '='
18
32
  - !ruby/object:Gem::Version
19
- version: 0.1.2
33
+ version: 0.1.3
20
34
  type: :runtime
21
35
  prerelease: false
22
36
  version_requirements: !ruby/object:Gem::Requirement
23
37
  requirements:
24
38
  - - '='
25
39
  - !ruby/object:Gem::Version
26
- version: 0.1.2
40
+ version: 0.1.3
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: rspec
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -85,8 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
99
  - !ruby/object:Gem::Version
86
100
  version: '0'
87
101
  requirements: []
88
- rubyforge_project:
89
- rubygems_version: 2.6.12
102
+ rubygems_version: 3.2.3
90
103
  signing_key:
91
104
  specification_version: 4
92
105
  summary: A kdbx library to access kdbx file format