iprog_export_model_to_xlsx 0.1.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
+ SHA256:
3
+ metadata.gz: 16fb880fb6db032ebf95a6af2552846b6c513eca11dde338ca141d0c9605488a
4
+ data.tar.gz: 63fbf3246266fe70cdd7828aa263e523274c6f9e04106e85cc9e169ea90a3985
5
+ SHA512:
6
+ metadata.gz: 4decbe461688515865cef8e4a7e4a1a985465e44b2d3baa42a46d0f561c9d9a58f80b336ac9828b0be73c13d5636972234a7b0cb735e02448db226792aefcab4
7
+ data.tar.gz: 46310f025a69bc1eec6cc3292ee9c3f41affa98ed1a4e763d1092e981b357f49f3555c11e98f4ce59844632e505fbc8041444b4e07d55731c8d5da44035b8946
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Jayson Presto
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # IprogExportModelToXlsx
2
+
3
+ Welcome to IprogExportModelToXlsx! This gem provides functionality to export ActiveRecord models to XLSX format.
4
+
5
+ ## Installation
6
+
7
+ To install the gem and add it to your application's Gemfile, run:
8
+
9
+ $ bundle add iprog_export_model_to_xlsx
10
+
11
+ If you're not using Bundler to manage dependencies, install the gem by running:
12
+
13
+ $ gem install iprog_export_model_to_xlsx
14
+
15
+ ## Usage
16
+
17
+ To use the gem in your project, include it with:
18
+
19
+ require 'iprog_export_model_to_xlsx'
20
+
21
+ You can then export your models to XLSX format as shown below.
22
+
23
+ ### Basic Usage
24
+
25
+ Export without any options:
26
+
27
+ Model.export_to_xlsx('models.xlsx')
28
+
29
+ ### Usage with Options
30
+
31
+ You can customize the export by providing options:
32
+
33
+ options = {
34
+ exclude_columns: ['created_at', 'updated_at'],
35
+ limit: 100
36
+ }
37
+
38
+ Model.export_to_xlsx('models.xlsx', options)
39
+
40
+ ## Development
41
+
42
+ After cloning the repository, run `bin/setup` to install dependencies. For an interactive prompt to experiment with the code, run `bin/console`.
43
+
44
+ To install the gem locally, use:
45
+
46
+ $ bundle exec rake install
47
+
48
+ To release a new version, update the version number in `version.rb` and then run:
49
+
50
+ $ bundle exec rake release
51
+
52
+ This will create a git tag for the version, push the git commits and the tag, and push the `.gem` file to [RubyGems.org](https://rubygems.org).
53
+
54
+ ## Contributing
55
+
56
+ Bug reports and pull requests are welcome on GitHub at https://github.com/iprog21/iprog_export_model_to_xlsx.
57
+
58
+ ## License
59
+
60
+ This gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/bin/console ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "bundler/setup"
5
+ require "iprog_export_model_to_xlsx"
6
+
7
+ # You can add fixtures and/or initialization code here to make experimenting
8
+ # with your gem easier. You can also use a different console, if you like.
9
+
10
+ require "irb"
11
+ IRB.start(__FILE__)
data/bin/rubocop ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ require "rubygems"
5
+ require "bundler/setup"
6
+
7
+ # explicit rubocop config increases performance slightly while avoiding config confusion.
8
+ ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__))
9
+
10
+ load Gem.bin_path("rubocop", "rubocop")
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
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module IprogExportModelToXlsx
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "iprog_export_model_to_xlsx/version"
4
+ require "axlsx"
5
+
6
+ module IprogExportModelToXlsx
7
+ class Error < StandardError; end
8
+
9
+ def export(file_path, options = {})
10
+ exclude_columns = options[:exclude_columns] || []
11
+ limit = options[:limit]
12
+ attributes = attribute_names - exclude_columns
13
+ package = Axlsx::Package.new
14
+
15
+ package.workbook.add_worksheet(name: name) do |sheet|
16
+ # Headers
17
+ sheet.add_row attributes
18
+
19
+ # Data
20
+ scope = all
21
+ scope = scope.limit(limit) if limit
22
+ scope.each do |record|
23
+ sheet.add_row record.attributes.slice(*attributes).values
24
+ end
25
+ end
26
+
27
+ package.serialize(file_path)
28
+ rescue StandardError => e
29
+ rails Iprog::Arde::Error, "Failed to export to XLSX: #{e.message}"
30
+ end
31
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iprog_export_model_to_xlsx
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Jayson Presto
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-08-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: caxlsx
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 4.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 4.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: caxlsx_rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.6.4
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.6.4
41
+ description: A gem for exporting activerecord data to XLSX files using the axlsx gem.
42
+ email:
43
+ - iprog21@jaysonpresto.me
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE.txt
49
+ - README.md
50
+ - bin/console
51
+ - bin/rubocop
52
+ - bin/setup
53
+ - lib/iprog_export_model_to_xlsx.rb
54
+ - lib/iprog_export_model_to_xlsx/version.rb
55
+ homepage: https://github.com/iprog21/iprog_export_model_to_xlsx.git
56
+ licenses:
57
+ - MIT
58
+ metadata:
59
+ homepage_uri: https://github.com/iprog21/iprog_export_model_to_xlsx.git
60
+ source_code_uri: https://github.com/iprog21/iprog_export_model_to_xlsx.git
61
+ changelog_uri: https://github.com/iprog21/iprog_export_model_to_xlsx/blob/master/CHANGELOG.md
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: 3.0.0
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubygems_version: 3.5.14
78
+ signing_key:
79
+ specification_version: 4
80
+ summary: A gem for exporting activerecord data to XLSX files.
81
+ test_files: []