feidee_utils 0.0.5.0 → 0.0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +32 -15
  3. data/lib/feidee_utils/version.rb +1 -1
  4. metadata +14 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c84bce11a2b8623e64ce188aedc8c1697991745
4
- data.tar.gz: e7b56117a0c220ceb1d3243b2ef83e01d7301ca0
3
+ metadata.gz: 1de248b25404a51294532bce5b317e4c7bb8bc52
4
+ data.tar.gz: 1207e7caf079f5e73c68e8095347f5dfb29c53d4
5
5
  SHA512:
6
- metadata.gz: 032d2acefd6132ed8c68aeb412dbc93f06d0d05752c45b2449a5fa882027a02ab54c0fcd74ed7b63fc036babd9e69c27a3732af0c8c3b0533d10dc5391bf4084
7
- data.tar.gz: eec26fb195db29ab8d26ba82b9a1f11e8c9905bbdd95c70d08f40e7f048878cbe9c35add6645f42f52007949c221e495ad57ba982c4485926fa7d99de9f12041
6
+ metadata.gz: c1758936bfd77bfe716459cb8151898766b0c50b07d526ebe1f3e8f2dc48a1cbd86993f2c059315f70f6a3c2030057c6bfd4271cb6ea7b1a473cc0675f6918aa
7
+ data.tar.gz: 22cde31f522334fc6e436eadcef31c0a888aa4450dc00233455c7a861c9ffd9a2200ff74e19516b13a997e0f4f29dd64e6f356617e9685509afbda2315062098
data/README.md CHANGED
@@ -4,13 +4,16 @@ Feidee Utils
4
4
 
5
5
  Free user data from [Feidee](http://www.feidee.com) private backups (.kbf).
6
6
 
7
- Feidee And The KBF Format
7
+ Feidee and the KBF Format
8
8
  -----------
9
- [Feidee MyMoney](http://www.feidee.com/money/) is a set of popular book-keeping software in China. It includes Android, iOS, web apps and several desktop software. The Android and iOS apps produces backup in kbf format.
9
+ [Feidee MyMoney](http://www.feidee.com/money/) is a set of book-keeping software
10
+ popular in China. It includes Android, iOS, web apps and several pieces of
11
+ desktop software. The Android and iOS apps produces backup in kbf format.
10
12
 
11
- A kbf file is in fact a zip file contains a modified SQLite database and other attachments, such as photos.
12
- The first 16 bits of the SQLite database is modified so that it could not be read directly by SQLite.
13
- The database itself is NOT encrypted. Almost all useful information is in the SQLite database.
13
+ A kbf file is in fact a zip file contains a modified SQLite database and other
14
+ attachments, such as photos. The first 16 bits of the SQLite database is
15
+ modified so that it could not be read directly by SQLite. The database itself is
16
+ NOT encrypted. Almost all useful information is in the SQLite database.
14
17
 
15
18
  Install
16
19
  ---------
@@ -20,7 +23,8 @@ gem install feidee_utils
20
23
 
21
24
  Usage
22
25
  ----------
23
- A set of ActiveRecord-like classes are provided to access the information in the backup. See the quick example below.
26
+ A set of ActiveRecord-like classes are provided to access the information in the
27
+ backup. See the quick example below.
24
28
 
25
29
  ```ruby
26
30
  require 'feidee_utils'
@@ -44,24 +48,37 @@ Supported Entities
44
48
  Chinese Characters
45
49
  -----------------
46
50
 
47
- The database contains many Chinese characters such as builtin category names. Some of the characters are also included in tests. The gem is developed under OSX so presumably the gem should work fine in Unix-like environments with Unicode/UTF8 or whatever the encoding is.
51
+ The database contains many Chinese characters such as builtin category names.
52
+ Some of the characters are also included in tests. The gem is developed under
53
+ OSX so presumably the gem should work fine in Unix-like environments with
54
+ Unicode/UTF8 or whatever the encoding is.
48
55
 
49
56
  Why not ActiveRecord
50
57
  ----------------
51
- Sometimes we have to compare the content of two backups and must open them at the same time.
52
- Only one database can be opened using ActiveRecord. It is not designed to be used in such a way.
58
+ Sometimes we have to compare the content of two backups and must open them at
59
+ the same time. Only one database can be opened using ActiveRecord. It is not
60
+ designed to be used in such a way.
53
61
 
54
62
  Why Feidee Utils At All
55
63
  -----------
56
- Originally the Feidee Android and iOS app let users export their personal data recorded by the app.
57
- Since some version last year, the functionality is removed from the app and user data is trapped inside Feidee's private system forever. The uses may pay to get pro version, or upload their data to Feidee's server in order to export.
64
+ Originally the Feidee Android and iOS app let users export their personal data
65
+ recorded by the app. Since some version last year (2014), the export
66
+ functionality is removed from the app and user data is trapped inside Feidee's
67
+ private system forever. The uses may pay to get pro version, or upload their
68
+ data to Feidee's server in order to export.
58
69
 
59
- As a user of Feidee MyMoney, I'm truelly grateful that such great apps are available free of charge. However I also believe that users' data belongs to users and should be controlled by its owner. Thus I decided to build the utils to help Feidee MyMoney users access their own data.
70
+ As a user of Feidee MyMoney, I'm truelly grateful that such great apps are
71
+ available free of charge. However I also believe that users' data belongs to
72
+ users and should be controlled by its owner. Thus I decided to build the utils
73
+ to help Feidee MyMoney users access their own data.
60
74
 
61
75
  Disclaimer
62
76
  ---------
63
- Use at your own risk. Study purpose only. Please do NOT use for any illegal purpose. For details see MIT-LICENSE in the repo.
77
+ Use at your own risk. Study purpose only. Please do NOT use for any illegal
78
+ purpose. For details see MIT-LICENSE in the repo.
64
79
 
65
- This software DOES NOT involve any kind of jail break, reverse engineering or crack of any Feidee's software or app.
80
+ This software DOES NOT involve any kind of jail break, reverse engineering or
81
+ crack of any Feidee's proprietary software or app.
66
82
 
67
- The trademark Feidee, Feidee MyMoney, kbf file format and database design are intellecture properties of Feidee, or whoever the owners are.
83
+ The trademark Feidee, Feidee MyMoney, kbf file format and database design are
84
+ intellecture properties of Feidee, or whoever the owners are.
@@ -1,3 +1,3 @@
1
1
  module FeideeUtils
2
- VERSION = '0.0.5.0'
2
+ VERSION = '0.0.5.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: feidee_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5.0
4
+ version: 0.0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liqing Muyi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-01 00:00:00.000000000 Z
11
+ date: 2018-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -16,40 +16,40 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '10.4'
19
+ version: '10.5'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 10.4.0
22
+ version: 10.5.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: '10.4'
29
+ version: '10.5'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 10.4.0
32
+ version: 10.5.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rubyzip
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.2'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 1.1.6
42
+ version: 1.2.0
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - "~>"
48
48
  - !ruby/object:Gem::Version
49
- version: '1.1'
49
+ version: '1.2'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 1.1.6
52
+ version: 1.2.0
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: sqlite3
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -96,20 +96,20 @@ dependencies:
96
96
  requirements:
97
97
  - - "~>"
98
98
  - !ruby/object:Gem::Version
99
- version: '5.8'
99
+ version: '5.11'
100
100
  - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: 5.8.1
102
+ version: 5.11.1
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '5.8'
109
+ version: '5.11'
110
110
  - - ">="
111
111
  - !ruby/object:Gem::Version
112
- version: 5.8.1
112
+ version: 5.11.1
113
113
  description: Feidee Utils provides a set of ActiveReocrd-like classes to read Feidee
114
114
  private backups (.kbf files). It also provides a better abstraction to the general
115
115
  format of transaction-account style data.