abc_csv 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 99f3a26c4f33f2660ec8dd47a40113cde07ad5c8e99932bf928bccdb0083f55b
4
+ data.tar.gz: 789ccdc727db3c3ea6ab1445e209f77da10d95e29428df6f5aa5f299bf1fa796
5
+ SHA512:
6
+ metadata.gz: 962b3413366e21516dfee747b7fcd3bbca4ff865f7057204f98f4c4dc080e9b56e7d618797e757e0748e083dd675878f3ef681817f57d1c3fb67a6bd4f346ab9
7
+ data.tar.gz: 791b65c4bb3b9ccbd79bf2e86f696f03e2e8e0b71ab426e23f65f66e5402600688a0c51d0208d5c24024aee37387c8e81d67da625a06de7f03887502691e742a
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-04-11
4
+
5
+ - Initial release
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in abc_csv.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # abc_csv
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/abc_csv`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/abc_csv.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/abc_csv.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/abc_csv/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "abc_csv"
7
+ spec.version = AbcCsv::VERSION
8
+ spec.authors = ["Horacio Chávez"]
9
+ spec.email = ["HoracioChavez@users.noreply.github.com"]
10
+
11
+ spec.summary = "The 'abc-csv' gem is a Ruby library that simplifies the process of generating CSV files. With a focus on ease of use, the gem allows users to quickly and easily export their data to CSV format with just a few lines of code. Its straightforward approach to CSV generation streamlines the data export process, making it accessible to developers of all levels. Additionally, the gem's alphabetical ordering feature provides an extra level of organization to exported data, ensuring that it's easy to read and use."
12
+ spec.description = "The 'abc-csv' gem is a Ruby library that provides a simple and efficient way to generate CSV files. Its core feature is its ease of use, which allows users to quickly and easily export data to CSV format with just a few lines of code. The gem is designed to streamline the process of CSV generation, making it accessible to developers of all levels. It also includes an alphabetical ordering feature, which makes it easy to sort data in CSV files by column in alphabetical order. This feature adds an extra level of organization to exported data, making it easy to read and use. With its focus on simplicity and functionality, the 'abc-csv' gem is a valuable tool for anyone who needs to work with CSV files in their Ruby projects."
13
+
14
+ # Specify which files should be added to the gem when it is released.
15
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
16
+ spec.files = Dir.chdir(__dir__) do
17
+ `git ls-files -z`.split("\x0").reject do |f|
18
+ (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
19
+ end
20
+ end
21
+ spec.bindir = "exe"
22
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
23
+ spec.require_paths = ["lib"]
24
+
25
+ # Uncomment to register a new dependency of your gem
26
+ # spec.add_dependency "example-gem", "~> 1.0"
27
+
28
+ # For more information and examples about making a new gem, check out our
29
+ # guide at: https://bundler.io/guides/creating_gem.html
30
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AbcCsv
4
+ VERSION = "0.0.1"
5
+ end
data/lib/abc_csv.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "abc_csv/version"
4
+
5
+ module AbcCsv
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/sig/abc_csv.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module AbcCsv
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: abc_csv
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Horacio Chávez
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-04-11 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: The 'abc-csv' gem is a Ruby library that provides a simple and efficient
14
+ way to generate CSV files. Its core feature is its ease of use, which allows users
15
+ to quickly and easily export data to CSV format with just a few lines of code. The
16
+ gem is designed to streamline the process of CSV generation, making it accessible
17
+ to developers of all levels. It also includes an alphabetical ordering feature,
18
+ which makes it easy to sort data in CSV files by column in alphabetical order. This
19
+ feature adds an extra level of organization to exported data, making it easy to
20
+ read and use. With its focus on simplicity and functionality, the 'abc-csv' gem
21
+ is a valuable tool for anyone who needs to work with CSV files in their Ruby projects.
22
+ email:
23
+ - HoracioChavez@users.noreply.github.com
24
+ executables: []
25
+ extensions: []
26
+ extra_rdoc_files: []
27
+ files:
28
+ - ".rspec"
29
+ - ".rubocop.yml"
30
+ - CHANGELOG.md
31
+ - Gemfile
32
+ - README.md
33
+ - Rakefile
34
+ - abc_csv.gemspec
35
+ - lib/abc_csv.rb
36
+ - lib/abc_csv/version.rb
37
+ - sig/abc_csv.rbs
38
+ homepage:
39
+ licenses: []
40
+ metadata: {}
41
+ post_install_message:
42
+ rdoc_options: []
43
+ require_paths:
44
+ - lib
45
+ required_ruby_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ required_rubygems_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ requirements: []
56
+ rubygems_version: 3.4.8
57
+ signing_key:
58
+ specification_version: 4
59
+ summary: The 'abc-csv' gem is a Ruby library that simplifies the process of generating
60
+ CSV files. With a focus on ease of use, the gem allows users to quickly and easily
61
+ export their data to CSV format with just a few lines of code. Its straightforward
62
+ approach to CSV generation streamlines the data export process, making it accessible
63
+ to developers of all levels. Additionally, the gem's alphabetical ordering feature
64
+ provides an extra level of organization to exported data, ensuring that it's easy
65
+ to read and use.
66
+ test_files: []