rails-excel-reporter 1.0.0 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b6f920ce797a160c37ecc253bc0046b4212df1857966fec30100d4fcdad15d2
4
- data.tar.gz: 5f9d145e21d5a5970178d8da52a1972345e78a6b64777bc05a7954dcf71b1cef
3
+ metadata.gz: 20959c647dec1e3909f74634cea69215623e3728486448a849d94eed9b730645
4
+ data.tar.gz: 149463d5536535f0000d4753bc5fd50d75c8ec7a96ca8474c230db8ee05b011a
5
5
  SHA512:
6
- metadata.gz: 23ee34c51036cc83cd9030ea76466b76a1af1778e6817ceac117d760569ea327e9b93c18c222ee4909349f346bda6c4a1334813db47fc452e28061f1ca71c9b7
7
- data.tar.gz: 62953ee7433e7dc98483013549b1a1d32d5e80b5a90a7296a1754856b3269baab298db3a927c1e7eb3d17ed4ad51a1dcce52422426185dcb84eec8a7a3cc84a0
6
+ metadata.gz: 8b43a9d68db9834e4f2acc863579fc9c7c24947a6c36d7a7eb394833c8f99c4c699bd315db2b7dad4ce76203be985a83be87fa46838072feef7d23b2e81e264c
7
+ data.tar.gz: 850816793615b0870b0fd9118bbc65dcaf1a5e114039c7892be80137f16e43c0555d62593006270ecd791bf801cc6d6a830c0a56c69f9a655cd88b1bb1e08565
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails-excel-reporter (1.0.0)
4
+ rails-excel-reporter (1.0.1)
5
5
  activesupport (>= 8.0)
6
6
  caxlsx (~> 4.0)
7
7
  rails (>= 8.0)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Rails Excel Reporter
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/rails-excel-reporter.svg)](https://badge.fury.io/rb/rails-excel-reporter)
3
+ [![Gem Version](https://badge.fury.io/rb/rails-excel-reporter.svg?icon=si%3Arubygems)](https://badge.fury.io/rb/rails-excel-reporter)
4
4
  [![Build Status](https://github.com/EliSebastian/rails-excel-reporter/workflows/CI/badge.svg)](https://github.com/EliSebastian/rails-excel-reporter/actions)
5
5
 
6
6
  A Ruby gem that integrates seamlessly with Ruby on Rails to generate Excel reports (.xlsx format) using a simple DSL. Features include streaming for large datasets, custom styling, callbacks, and Rails helpers.
@@ -21,7 +21,7 @@ A Ruby gem that integrates seamlessly with Ruby on Rails to generate Excel repor
21
21
  Add this line to your application's Gemfile:
22
22
 
23
23
  ```ruby
24
- gem 'rails-excel-reporter'
24
+ gem 'rails_excel_reporter', require: true
25
25
  ```
26
26
 
27
27
  And then execute:
@@ -1,3 +1,3 @@
1
1
  module RailsExcelReporter
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'bundler/setup'
2
- require 'rails_excel_reporter'
2
+ require 'rails-excel-reporter'
3
3
  require 'rspec'
4
4
  require 'tempfile'
5
5
  require 'ostruct'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-excel-reporter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elí Sebastian Herrera Aguilar
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-07-15 00:00:00.000000000 Z
11
+ date: 2025-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -150,7 +150,7 @@ files:
150
150
  - README.md
151
151
  - lib/generators/report/report_generator.rb
152
152
  - lib/generators/report/templates/report.rb.erb
153
- - lib/rails_excel_reporter.rb
153
+ - lib/rails-excel-reporter.rb
154
154
  - lib/rails_excel_reporter/base.rb
155
155
  - lib/rails_excel_reporter/configuration.rb
156
156
  - lib/rails_excel_reporter/controller_helpers.rb
@@ -158,7 +158,7 @@ files:
158
158
  - lib/rails_excel_reporter/streaming.rb
159
159
  - lib/rails_excel_reporter/styling.rb
160
160
  - lib/rails_excel_reporter/version.rb
161
- - rails_excel_reporter.gemspec
161
+ - rails-excel-reporter.gemspec
162
162
  - spec/rails_excel_reporter/base_spec.rb
163
163
  - spec/rails_excel_reporter/configuration_spec.rb
164
164
  - spec/rails_excel_reporter/controller_helpers_spec.rb