ofx_kit 1.0.0 → 1.0.2
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/README.md +7 -1
- data/lib/ofx_kit/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b023f7e1d7c5381113d3743b0aba99ab79a0a297081df3d5943f02d55a9390b
|
|
4
|
+
data.tar.gz: '0898db82c3556619deab40d7caad84b72e518db65e2e1933422387f313fe4ae3'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ff60df963fdd5084ddfc5a2ee7a66633f2f6d9f55fa7d50416aeac92393c14617ed6978c87e4bbe9c3efb1a071abf487a3790dbdc71e29bcf460fb2b425e0efd
|
|
7
|
+
data.tar.gz: 34995498f62d7cdbedb8e1d395d81568af47876edfe4c51890f862a05b898226ee9d27cd967003dae7fb67d060cf99d5d56958ee12c948e188afde57198592cf
|
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ A Ruby gem for parsing OFX (Open Financial Exchange) files. Supports OFX 1.x (SG
|
|
|
10
10
|
Add to your Gemfile:
|
|
11
11
|
|
|
12
12
|
```ruby
|
|
13
|
-
gem
|
|
13
|
+
gem 'ofx_kit', '~> 1.0'
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
## Usage
|
|
@@ -226,6 +226,12 @@ end
|
|
|
226
226
|
|
|
227
227
|
All tests must pass and RuboCop must report no offenses.
|
|
228
228
|
|
|
229
|
+
### Generating documentation locally
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
bundle exec rake rdoc
|
|
233
|
+
```
|
|
234
|
+
|
|
229
235
|
## Testing locally via console
|
|
230
236
|
|
|
231
237
|
You can exercise the gem interactively using `irb` from the project root. The `spec/fixtures/` directory contains sample OFX files ready to use.
|
data/lib/ofx_kit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ofx_kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lucas Geron
|
|
@@ -150,13 +150,13 @@ files:
|
|
|
150
150
|
- lib/ofx_kit/transaction.rb
|
|
151
151
|
- lib/ofx_kit/transaction_collection.rb
|
|
152
152
|
- lib/ofx_kit/version.rb
|
|
153
|
-
homepage: https://github.com/lucasgeron/ofx_kit
|
|
154
153
|
licenses:
|
|
155
154
|
- MIT
|
|
156
155
|
metadata:
|
|
157
|
-
homepage_uri: https://github.com/lucasgeron/ofx_kit
|
|
158
156
|
source_code_uri: https://github.com/lucasgeron/ofx_kit
|
|
159
|
-
changelog_uri: https://github.
|
|
157
|
+
changelog_uri: https://lucasgeron.github.io/ofx_kit/CHANGELOG_md
|
|
158
|
+
documentation_uri: https://lucasgeron.github.io/ofx_kit/
|
|
159
|
+
rubygems_mfa_required: 'true'
|
|
160
160
|
rdoc_options: []
|
|
161
161
|
require_paths:
|
|
162
162
|
- lib
|