csvn 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec4c33e5fb6aaf2264302506e18e224c0462071f59bbbf923b35fda3752390e4
4
- data.tar.gz: cfc4da29814350457d5bdbb3188a0d6a916f586ebfc56d49ece6acfbe5ddcffc
3
+ metadata.gz: 88d92118a9c55397f16356f5480923ba27e537e915c838fe87ee23f2a11bc567
4
+ data.tar.gz: 8eb2b01c316ffeba5acb4766a63c1e4816f9bb432c332f98f204dc865feb2532
5
5
  SHA512:
6
- metadata.gz: cfbd4d677e663d0dab2694eb84e055eb33be3af06a363e631e1e68387af02c77791238ce9e4359677522203e2420ec0f839140f712c34be1b10f456f53c8dab7
7
- data.tar.gz: fff66941b4a2e37c74ab612a77772ccb847422a7df3dda86316222a60319eeffe93471f2525443cefbb73a9c8de0410d5a77b9f46ee533032cb940384ae0e85a
6
+ metadata.gz: 818c89ab2ee12b5e9509ce4a5265f4e3ad319599f4ada20b8c15e528de7b931780c0a846d08c3d8758ae4089ac2f204b2e48394c703b1d906c74350dc3cb1857
7
+ data.tar.gz: 34c638d3fee145c7d8260928bf17096a4171d1f36f15da962cc260a46c26031407c5bff3d6cf3a9f719ea4ce9bb0cedd28dae459a9e0d8259d3e61092a4bb515
data/Gemfile CHANGED
@@ -5,3 +5,4 @@ gemspec
5
5
 
6
6
  gem "rake", "~> 12.0"
7
7
  gem "rspec", "~> 3.0"
8
+ gem "colorize", "~> 0.8.1"
data/README.md CHANGED
@@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
34
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/csvn. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/csvn/blob/master/CODE_OF_CONDUCT.md).
35
+ Bug reports and pull requests are welcome on GitHub at hhttps://github.com/shamritskiy3468/csvn. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/shamritskiy3468/csvn/blob/master/CODE_OF_CONDUCT.md).
36
36
 
37
37
 
38
38
  ## License
data/lib/csvn/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Csvn
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
data/lib/csvn.rb CHANGED
@@ -11,8 +11,6 @@ class CSVFile
11
11
 
12
12
  # initializer method for CSVFile
13
13
  def initialize(file_name: nil, file_extension: DefaultConstants::EXTENSION, convert: false, output: DefaultConstants::FILE_PATTERN)
14
- raise StandardError unless file_name
15
-
16
14
  @file_name = file_name ### source file name (full path should be provided)
17
15
  @file_extension = file_extension ### file extension
18
16
  @data = [] ### file rows data
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csvn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - shamritskiy3468