csv_object 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7eee66bcb3733f70e9a9dda093cf2a3dfc349ce80232d29abab1b1b8035e02e
4
- data.tar.gz: a1d05b2e15b82388f6cccc65c83b370f71d30dc7fafa3a99df8a33a832c37383
3
+ metadata.gz: 5f5d9519e067a2299a0566ff237201d2cb99ea06f2e63bc3133b12408e546b7b
4
+ data.tar.gz: bb74f33efe7d61319caf43eb268c6648472daf8f0543176ef1f4d5647e4144fc
5
5
  SHA512:
6
- metadata.gz: '0834a75c0fd1043c39561667e8bca5760ee8c608aced690e5eadb2b3a5ea881f8fb8a8372d5b09a8b00dfcd430442215e3e197a627a4dbb736da3d5ca26f3d22'
7
- data.tar.gz: f6fb567589b520041ac30ee71b6141d7629ab7b017307371d49a37c0ad96b8e3ec5fd75220a3f7e93a42ca56a59eb098413e20256ea27033f795eafff1e508ef
6
+ metadata.gz: 981c278cf8d55cf3248d2324fa1580c0be542faefe763d371220d3cc273f172c950a3b6415ee0ca8d5f9d16232bc4ed58beeaedd7db83d52a170b57ab1def9b3
7
+ data.tar.gz: 4ce33f72e61553d1b141b43092bc24080c4e989d61253db7b3b62d2a753910c013f1acf0a3e027eb8e14a4f69a47e87628cd9e61da7d93b1d730de3a0567bead
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- csv_object (0.1.0)
4
+ csv_object (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/Makefile CHANGED
@@ -8,6 +8,17 @@ build:
8
8
  gem build csv_object.gemspec
9
9
 
10
10
  push:
11
- gem push hola-0.0.0.gem
11
+ gem push *.gem
12
+
13
+ all: test build push cleanup
14
+
15
+ release:
16
+ # TODO
17
+ # make all
18
+ # + create tag
19
+ # + git push
20
+
21
+ cleanup:
22
+ rm *.gem
12
23
 
13
24
  .PHONY: test
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["nemytchenko@gmail.com"]
10
10
 
11
11
  spec.summary = %q{Wrapper around Ruby's CSV for more convenience}
12
- # spec.description = %q{Wrapper around Ruby's CSV for more convenience}
12
+ spec.description = %q{Ever found yourself trying to find the right way to use Ruby's CSV library? Confused about all those CSV.parse and CSV.open, and when to use each of them? The purpose of CsvObject gem is to create convenient interface to work with CSV files and data in Ruby. Whatever you have: string with filename, CSV data itself, Pathname, CSV::Table, array of hashes, or even Paperclip::Attachment, just throw it into CsvObject.new(your_stuff)}
13
13
  spec.homepage = "https://github.com/inem/csv_object"
14
14
  spec.license = "MIT"
15
15
 
@@ -1,3 +1,3 @@
1
1
  class CsvObject
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csv_object
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Nemytchenko
@@ -80,7 +80,12 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.12'
83
- description:
83
+ description: 'Ever found yourself trying to find the right way to use Ruby''s CSV
84
+ library? Confused about all those CSV.parse and CSV.open, and when to use each of
85
+ them? The purpose of CsvObject gem is to create convenient interface to work with
86
+ CSV files and data in Ruby. Whatever you have: string with filename, CSV data itself,
87
+ Pathname, CSV::Table, array of hashes, or even Paperclip::Attachment, just throw
88
+ it into CsvObject.new(your_stuff)'
84
89
  email:
85
90
  - nemytchenko@gmail.com
86
91
  executables: []