manicsv 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 620d985903b231fa96e43a9ae1c69e99e2e64d00
4
+ data.tar.gz: bd60ac3004d21a9b09fe6d552e99d9f336388f65
5
+ SHA512:
6
+ metadata.gz: 6d814efb94d9ab1835bd448b2db6a77ba5c215d0b7e67d66ba41bfc7c750bcbc351b59f255887b3a8b75ae9388faf297fe0df48dac0b1310a56bf73e34176c13
7
+ data.tar.gz: b4810859087f7e572f49fd2bbe6e5b0018eea67a53b81308177cc3e55a376aced43de7de8042d98c5dd6808306504e29e6a5bd5e0a8021d5945cf6f2a715491a
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ *.gem
14
+
15
+ Gemfile.lock
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.0
5
+ before_install: gem install bundler -v 1.16.2
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in manicsv.gemspec
6
+ gemspec
data/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # Manicsv
2
+
3
+ *A semantic helper library to manipulate, transform and merge csv sheets.*
4
+
5
+ Most of our data describe more or less the same real world objects. And csv or any other tabular formats is a very common, convenient and efficient trick we use daily. But then what? If you are curious and keep track of things, you probably have a messy computer full of data, Excel files, lists and tables. Manicvs is an attempt to provide useful methods to sort, combine, add data and manipulate in any useful mean your collection of csv files using command line interface or as a library.
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "manicsv"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/lib/manicsv.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "manicsv/version"
2
+
3
+ module Manicsv
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Manicsv
2
+ VERSION = "0.0.1"
3
+ end
data/manicsv.gemspec ADDED
@@ -0,0 +1,29 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "manicsv/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "manicsv"
8
+ spec.version = Manicsv::VERSION
9
+ spec.authors = ["jvtrudel"]
10
+ spec.email = ["jvtrudel@gmx.com"]
11
+
12
+ spec.summary = %q{A semantic helper library to manipulate, transform and merge csv sheets. }
13
+ spec.description = %q{Most of our data describe more or less the same real world objects. And csv or any other tabular formats is a very common, convenient and efficient trick we use daily. But then what? If you are curious and keep track of things, you probably have a messy computer full of data, Excel files, lists and tables. Manicvs is an attempt to provide useful methods to sort, combine, add data and manipulate in any useful mean your collection of csv files using command line interface or as a library.}
14
+
15
+ spec.homepage = "https://github.com/jvtrudel/manicsv"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = "exe"
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ["lib"]
25
+
26
+ spec.add_development_dependency "bundler", "~> 1.16"
27
+ spec.add_development_dependency "rake", "~> 10.0"
28
+ spec.add_development_dependency "rspec", "~> 3.0"
29
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: manicsv
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - jvtrudel
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-06-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: Most of our data describe more or less the same real world objects. And
56
+ csv or any other tabular formats is a very common, convenient and efficient trick
57
+ we use daily. But then what? If you are curious and keep track of things, you probably
58
+ have a messy computer full of data, Excel files, lists and tables. Manicvs is an
59
+ attempt to provide useful methods to sort, combine, add data and manipulate in any
60
+ useful mean your collection of csv files using command line interface or as a library.
61
+ email:
62
+ - jvtrudel@gmx.com
63
+ executables: []
64
+ extensions: []
65
+ extra_rdoc_files: []
66
+ files:
67
+ - ".gitignore"
68
+ - ".rspec"
69
+ - ".travis.yml"
70
+ - Gemfile
71
+ - README.md
72
+ - Rakefile
73
+ - bin/console
74
+ - bin/setup
75
+ - lib/manicsv.rb
76
+ - lib/manicsv/version.rb
77
+ - manicsv.gemspec
78
+ homepage: https://github.com/jvtrudel/manicsv
79
+ licenses: []
80
+ metadata: {}
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubyforge_project:
97
+ rubygems_version: 2.6.12
98
+ signing_key:
99
+ specification_version: 4
100
+ summary: A semantic helper library to manipulate, transform and merge csv sheets.
101
+ test_files: []