babaloa 0.1.2 → 0.1.3
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/Gemfile.lock +1 -1
- data/babaloa.gemspec +2 -2
- data/lib/babaloa/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c00fa46ca468031df5f9b69c9abe0f87345d6d018b56b961b00506482de4dc7
|
|
4
|
+
data.tar.gz: 7d60b52c5efe8a43be10a75e4f41dd1c0f86f1f1db2becdb53a6af0774d75566
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae9fa1fd251da634779493eb724ef504ed3e6d0be283886b0a170c8be8bab9b7836da1119c9f9a8fc3cfa9a28529619c74ed1a10c0bbfc41437e0662d819793f
|
|
7
|
+
data.tar.gz: a96b4c84a25cb622617a62946e74d54551233ecfaf2cfbc8a713778fb3c8cea345a0d8d1ff1c2b758431c237158cfc58ed59657df002ec1f7d0977efa80ed04c
|
data/Gemfile.lock
CHANGED
data/babaloa.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["belion-freee"]
|
|
10
10
|
spec.email = ["belion.freee@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = %q{CSV generator
|
|
13
|
-
spec.description = %q{
|
|
12
|
+
spec.summary = %q{CSV generator}
|
|
13
|
+
spec.description = %q{This is a gem that will convert to CSV if you pass an array. In addition to conversion, sorting, column specification, and translation can be optionally specified. You can also register default settings in initializers.}
|
|
14
14
|
spec.homepage = "https://github.com/belion-freee/babaloa"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
data/lib/babaloa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: babaloa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- belion-freee
|
|
@@ -52,7 +52,9 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
55
|
+
description: This is a gem that will convert to CSV if you pass an array. In addition
|
|
56
|
+
to conversion, sorting, column specification, and translation can be optionally
|
|
57
|
+
specified. You can also register default settings in initializers.
|
|
56
58
|
email:
|
|
57
59
|
- belion.freee@gmail.com
|
|
58
60
|
executables: []
|
|
@@ -98,5 +100,5 @@ requirements: []
|
|
|
98
100
|
rubygems_version: 3.0.3
|
|
99
101
|
signing_key:
|
|
100
102
|
specification_version: 4
|
|
101
|
-
summary: CSV generator
|
|
103
|
+
summary: CSV generator
|
|
102
104
|
test_files: []
|