active_model_exporters 0.5.2 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3a6fc80c64e00ff107593eaa023150d1ddbd0cb30f10da7d0dc14bc97657f89
4
- data.tar.gz: afe1171f8b6e765a173774d4e951fed11738bcd267ca07ca3dda23cce6cbc2aa
3
+ metadata.gz: 0d3e9b9e15d22e71ba4232a12054a38bd47c9c8c326c92b128ac9a3f267d3b5c
4
+ data.tar.gz: d6dc5946ff8fec7824850bd271538343068d6085a513254133774c6e04cd6126
5
5
  SHA512:
6
- metadata.gz: 1292910384366b09f86cfa67027ca92a8d8d5624d0ea99fd1b7d47c35b086ed6cb436923d1c8fae8b1793f56eb194246e99adbf7aa6cbe661881e6d73fcfe25e
7
- data.tar.gz: 7f04a6f215299b781aec1a50e007cec9ae8b53e44b9172182a1f2548cbdc84e29eb9ecf3d589b9f298761a4cb8dbeb94912231d8eb203bb0217e1ab293c5c0d6
6
+ metadata.gz: 6154faa867ab3c0fe2dd0fe8c66b3443264655e53b2127292364123b457ca28a55529fd9ad2f4e349a3cbe91204babe04f972c4c036a56c5bc497f536e87eaf8
7
+ data.tar.gz: 572655f2acb4f06016b520daf95489609539f2d2b6d1b6a961bf027631fd287964a32785eb668b75d20f9099a2812a955cb2cb2daf948a8e9e90bc81b969e010
data/.rubocop.yml ADDED
@@ -0,0 +1,22 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ TargetRubyVersion: 2.7
4
+ Exclude:
5
+ - "gemfiles/**/*"
6
+
7
+ Style/StringLiterals:
8
+ Enabled: true
9
+ EnforcedStyle: double_quotes
10
+
11
+ Style/StringLiteralsInInterpolation:
12
+ Enabled: true
13
+ EnforcedStyle: double_quotes
14
+
15
+ Layout/LineLength:
16
+ Max: 120
17
+
18
+ Style/Documentation:
19
+ Enabled: false
20
+
21
+ Layout/EmptyLineAfterGuardClause:
22
+ Enabled: false
data/Appraisals CHANGED
@@ -1,7 +1,9 @@
1
- appraise 'rails-5.2' do
2
- gem 'rails', '~> 5.2'
1
+ # frozen_string_literal: true
2
+
3
+ appraise "rails-6.1" do
4
+ gem "rails", "~> 6.1.0"
3
5
  end
4
6
 
5
- appraise 'rails-6.0' do
6
- gem 'rails', '~> 6.0'
7
+ appraise "rails-7.0" do
8
+ gem "rails", "~> 7.0.0"
7
9
  end
data/CHANGELOG.md CHANGED
@@ -1,59 +1,73 @@
1
1
  # CHANGELOG
2
2
 
3
- ### Version 0.5.2
4
- * Add rails version supported 6.
5
- * Minimum ruby version supported 2.6.X.
6
- * Remove support for ruby 2.4.X.
7
- * Avoid defining new methods in exporter.
8
- * Update code base to use bundler 2.X.X.
3
+ ## [0.7.1] - 2022-08-15
4
+ - Update gem skeleton.
5
+ - Fix rubocop warnings.
9
6
 
10
- ### Version 0.5.1
11
- * Add rails version supported 5.2.X.
12
- * Minimum ruby version supported 2.5.0.
7
+ ## [0.7.0] - 2022-08-15
8
+ - Add support for rails 7.0.
9
+ - Add support for ruby 3.1.
10
+ - Stop supporting rails 5.2.
11
+ - Stop supporting ruby 2.6.
13
12
 
14
- ### Version 0.5.0
15
- * Rails versions supported 4.X.X and 5.X.X.
16
- * Minimum ruby version supported 2.2.2.
13
+ ## [0.6.0] - 2021-04-06
14
+ - Add support for rails 6.1.
15
+ - Add support for ruby 3.0.
17
16
 
18
- ### Version 0.4.1
19
- * Improvements: Moving dependecies to .gemspec
17
+ ## [0.5.2] - 2019-08-20
18
+ - Add support for rails 6.0.
19
+ - Minimum ruby version supported 2.6.X.
20
+ - Remove support for ruby 2.4.X.
21
+ - Avoid defining new methods in exporter.
22
+ - Update code base to use bundler 2.X.X.
20
23
 
21
- ### Version 0.4.0
22
- * Ruby ~> 1.9.3 is not longer supported.
23
- * activemodel version dependency >= 4.0.
24
+ ## [0.5.1] - 2018-05-22
25
+ - Add rails version supported 5.2.X.
26
+ - Minimum ruby version supported 2.5.0.
24
27
 
25
- ### Version 0.3.2
26
- * Adding support to export a single resource.
28
+ ## [0.5.0] - 2016-11-11
29
+ - Rails versions supported 4.X.X and 5.X.X.
30
+ - Minimum ruby version supported 2.2.2.
27
31
 
28
- ### Version 0.3.1
29
- * Fixing errors with rails 4.2.X.
32
+ ## [0.4.1] - 2016-03-30
33
+ - Improvements: Moving dependecies to .gemspec
30
34
 
31
- ### Version 0.3.0
32
- * Adding support to rails 4.2.X.
35
+ ## [0.4.0] - 2016-03-28
36
+ - Ruby ~> 1.9.3 is not longer supported.
37
+ - activemodel version dependency >= 4.0.
33
38
 
34
- ### Version 0.2.0
35
- * Using I18n translations in file headers.
39
+ ## [0.3.2] - 2015-11-02
40
+ - Adding support to export a single resource.
36
41
 
37
- ### Version 0.1.0
38
- * Including file headers
42
+ ## [0.3.1] - 2015-06-08
43
+ - Fixing errors with rails 4.2.X.
39
44
 
40
- ### Version 0.0.5
41
- * Using send_data method
42
- * Customizable filename
43
- * Customizable encode format
45
+ ## [0.3.0] - 2015-06-08
46
+ - Adding support to rails 4.2.X.
44
47
 
45
- ### Version 0.0.4
46
- * Exporting to XLS format
48
+ ## [0.2.0] - 2014-07-14
49
+ - Using I18n translations in file headers.
47
50
 
48
- ### Version 0.0.3
49
- * Adding filter method
51
+ ## [0.1.0] - 2014-07-10
52
+ - Including file headers
50
53
 
51
- ### Version 0.0.2
52
- * Default current_user scope
53
- * Explicit exportation scope
54
- * Scope calling exportation_scope
54
+ ## [0.0.5] - 2014-07-02
55
+ - Using send_data method
56
+ - Customizable filename
57
+ - Customizable encode format
55
58
 
56
- ### Version 0.0.1
57
- * First version
58
- * Computed properties
59
- * Customizable exporter
59
+ ## [0.0.4] - 2014-07-01
60
+ - Exporting to XLS format
61
+
62
+ ## [0.0.3] - 2014-06-30
63
+ - Adding filter method
64
+
65
+ ## [0.0.2] - 2014-06-27
66
+ - Default current_user scope
67
+ - Explicit exportation scope
68
+ - Scope calling exportation_scope
69
+
70
+ ## [0.0.1] - 2014-06-27
71
+ - First version
72
+ - Computed properties
73
+ - Customizable exporter
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at alejandrodevs@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile CHANGED
@@ -1,2 +1,14 @@
1
- source 'https://rubygems.org'
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in gemtest.gemspec
2
6
  gemspec
7
+
8
+ gem "appraisal", "~> 2.4"
9
+ gem "bundler", "~> 2.3"
10
+ gem "coveralls", "~> 0.8"
11
+ gem "minitest", "~> 5.16"
12
+ gem "rake", "~> 13.0"
13
+ gem "rubocop", "~> 1.35"
14
+ gem "sqlite3", "~> 1.4"
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 Alejandro Gutiérrez
3
+ Copyright (c) 2022 Alejandro Gutiérrez
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/Rakefile CHANGED
@@ -1,10 +1,16 @@
1
- require 'bundler/gem_tasks'
2
- require 'rake/testtask'
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
3
5
 
4
6
  Rake::TestTask.new(:test) do |t|
5
- t.libs << 'test'
6
- t.libs << 'lib'
7
- t.test_files = FileList['test/**/*_test.rb']
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/*_test.rb"]
8
10
  end
9
11
 
10
- task default: :test
12
+ require "rubocop/rake_task"
13
+
14
+ RuboCop::RakeTask.new
15
+
16
+ task default: %i[test rubocop]
@@ -1,36 +1,40 @@
1
- lib = File.expand_path('lib', __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require 'active_model/exporter/version'
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/active_model/exporter/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.name = 'active_model_exporters'
7
- spec.version = ActiveModel::Exporter::VERSION
8
- spec.authors = ['Alejandro Gutiérrez']
9
- spec.email = ['alejandrodevs@gmail.com']
10
- spec.summary = 'A simple way to export data in Rails.'
11
- spec.description = 'A simple way to export data in Rails.'
12
- spec.homepage = 'https://github.com/alejandrodevs/active_model_exporters'
13
- spec.license = 'MIT'
14
-
15
- spec.metadata['homepage_uri'] = spec.homepage
16
- spec.metadata['source_code_uri'] = spec.homepage
17
- spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/LICENSE.txt"
6
+ spec.name = "active_model_exporters"
7
+ spec.version = ActiveModel::Exporter::VERSION
8
+ spec.authors = ["Alejandro Gutiérrez"]
9
+ spec.email = ["alejandrodevs@gmail.com"]
10
+
11
+ spec.summary = "A simple way to export data in Rails."
12
+ spec.description = "A simple way to export data in Rails."
13
+ spec.homepage = "https://github.com/alejandrodevs/active_model_exporters"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.7.0"
16
+
17
+ # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server "https://example.com""
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = spec.homepage
21
+ spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
22
+ spec.metadata["rubygems_mfa_required"] = "true"
18
23
 
19
24
  # Specify which files should be added to the gem when it is released.
20
25
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
22
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
26
+ spec.files = Dir.chdir(__dir__) do
27
+ `git ls-files -z`.split("\x0").reject do |f|
28
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
29
+ end
23
30
  end
24
- spec.bindir = 'exe'
25
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
- spec.require_paths = ['lib']
27
-
28
- spec.add_development_dependency 'rake', '~> 12.0'
29
- spec.add_development_dependency 'bundler', '~> 2.0'
30
- spec.add_development_dependency 'sqlite3', '~> 1.4'
31
- spec.add_development_dependency 'minitest', '~> 5.0'
32
- spec.add_development_dependency 'appraisal', '~> 2.2'
33
- spec.add_development_dependency 'coveralls', '~> 0.8'
34
-
35
- spec.add_dependency 'rails', '>= 4.2'
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
34
+
35
+ # Uncomment to register a new dependency of your gem
36
+ spec.add_dependency "rails", ">= 6.0"
37
+
38
+ # For more information and examples about making a new gem, check out our
39
+ # guide at: https://bundler.io/guides/creating_gem.html
36
40
  end
@@ -0,0 +1,14 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.4"
6
+ gem "bundler", "~> 2.3"
7
+ gem "coveralls", "~> 0.8"
8
+ gem "minitest", "~> 5.16"
9
+ gem "rake", "~> 13.0"
10
+ gem "rubocop", "~> 1.35"
11
+ gem "sqlite3", "~> 1.4"
12
+ gem "rails", "~> 6.1.0"
13
+
14
+ gemspec path: "../"
@@ -0,0 +1,196 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ active_model_exporters (0.7.1)
5
+ rails (>= 6.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.3.1)
11
+ actionpack (= 6.1.3.1)
12
+ activesupport (= 6.1.3.1)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.1.3.1)
16
+ actionpack (= 6.1.3.1)
17
+ activejob (= 6.1.3.1)
18
+ activerecord (= 6.1.3.1)
19
+ activestorage (= 6.1.3.1)
20
+ activesupport (= 6.1.3.1)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.3.1)
23
+ actionpack (= 6.1.3.1)
24
+ actionview (= 6.1.3.1)
25
+ activejob (= 6.1.3.1)
26
+ activesupport (= 6.1.3.1)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.3.1)
30
+ actionview (= 6.1.3.1)
31
+ activesupport (= 6.1.3.1)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.3.1)
37
+ actionpack (= 6.1.3.1)
38
+ activerecord (= 6.1.3.1)
39
+ activestorage (= 6.1.3.1)
40
+ activesupport (= 6.1.3.1)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.3.1)
43
+ activesupport (= 6.1.3.1)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.3.1)
49
+ activesupport (= 6.1.3.1)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.1.3.1)
52
+ activesupport (= 6.1.3.1)
53
+ activerecord (6.1.3.1)
54
+ activemodel (= 6.1.3.1)
55
+ activesupport (= 6.1.3.1)
56
+ activestorage (6.1.3.1)
57
+ actionpack (= 6.1.3.1)
58
+ activejob (= 6.1.3.1)
59
+ activerecord (= 6.1.3.1)
60
+ activesupport (= 6.1.3.1)
61
+ marcel (~> 1.0.0)
62
+ mini_mime (~> 1.0.2)
63
+ activesupport (6.1.3.1)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ appraisal (2.4.1)
70
+ bundler
71
+ rake
72
+ thor (>= 0.14.0)
73
+ ast (2.4.2)
74
+ builder (3.2.4)
75
+ concurrent-ruby (1.1.10)
76
+ coveralls (0.8.23)
77
+ json (>= 1.8, < 3)
78
+ simplecov (~> 0.16.1)
79
+ term-ansicolor (~> 1.3)
80
+ thor (>= 0.19.4, < 2.0)
81
+ tins (~> 1.6)
82
+ crass (1.0.6)
83
+ docile (1.4.0)
84
+ erubi (1.11.0)
85
+ globalid (1.0.0)
86
+ activesupport (>= 5.0)
87
+ i18n (1.12.0)
88
+ concurrent-ruby (~> 1.0)
89
+ json (2.6.2)
90
+ loofah (2.18.0)
91
+ crass (~> 1.0.2)
92
+ nokogiri (>= 1.5.9)
93
+ mail (2.7.1)
94
+ mini_mime (>= 0.1.1)
95
+ marcel (1.0.2)
96
+ method_source (1.0.0)
97
+ mini_mime (1.0.3)
98
+ mini_portile2 (2.8.0)
99
+ minitest (5.16.2)
100
+ nio4r (2.5.8)
101
+ nokogiri (1.13.8)
102
+ mini_portile2 (~> 2.8.0)
103
+ racc (~> 1.4)
104
+ parallel (1.22.1)
105
+ parser (3.1.2.1)
106
+ ast (~> 2.4.1)
107
+ racc (1.6.0)
108
+ rack (2.2.4)
109
+ rack-test (2.0.2)
110
+ rack (>= 1.3)
111
+ rails (6.1.3.1)
112
+ actioncable (= 6.1.3.1)
113
+ actionmailbox (= 6.1.3.1)
114
+ actionmailer (= 6.1.3.1)
115
+ actionpack (= 6.1.3.1)
116
+ actiontext (= 6.1.3.1)
117
+ actionview (= 6.1.3.1)
118
+ activejob (= 6.1.3.1)
119
+ activemodel (= 6.1.3.1)
120
+ activerecord (= 6.1.3.1)
121
+ activestorage (= 6.1.3.1)
122
+ activesupport (= 6.1.3.1)
123
+ bundler (>= 1.15.0)
124
+ railties (= 6.1.3.1)
125
+ sprockets-rails (>= 2.0.0)
126
+ rails-dom-testing (2.0.3)
127
+ activesupport (>= 4.2.0)
128
+ nokogiri (>= 1.6)
129
+ rails-html-sanitizer (1.4.3)
130
+ loofah (~> 2.3)
131
+ railties (6.1.3.1)
132
+ actionpack (= 6.1.3.1)
133
+ activesupport (= 6.1.3.1)
134
+ method_source
135
+ rake (>= 0.8.7)
136
+ thor (~> 1.0)
137
+ rainbow (3.1.1)
138
+ rake (13.0.6)
139
+ regexp_parser (2.5.0)
140
+ rexml (3.2.5)
141
+ rubocop (1.35.0)
142
+ json (~> 2.3)
143
+ parallel (~> 1.10)
144
+ parser (>= 3.1.2.1)
145
+ rainbow (>= 2.2.2, < 4.0)
146
+ regexp_parser (>= 1.8, < 3.0)
147
+ rexml (>= 3.2.5, < 4.0)
148
+ rubocop-ast (>= 1.20.1, < 2.0)
149
+ ruby-progressbar (~> 1.7)
150
+ unicode-display_width (>= 1.4.0, < 3.0)
151
+ rubocop-ast (1.21.0)
152
+ parser (>= 3.1.1.0)
153
+ ruby-progressbar (1.11.0)
154
+ simplecov (0.16.1)
155
+ docile (~> 1.1)
156
+ json (>= 1.8, < 3)
157
+ simplecov-html (~> 0.10.0)
158
+ simplecov-html (0.10.2)
159
+ sprockets (4.0.3)
160
+ concurrent-ruby (~> 1.0)
161
+ rack (> 1, < 3)
162
+ sprockets-rails (3.4.2)
163
+ actionpack (>= 5.2)
164
+ activesupport (>= 5.2)
165
+ sprockets (>= 3.0.0)
166
+ sqlite3 (1.4.4)
167
+ sync (0.5.0)
168
+ term-ansicolor (1.7.1)
169
+ tins (~> 1.0)
170
+ thor (1.2.1)
171
+ tins (1.31.1)
172
+ sync
173
+ tzinfo (2.0.5)
174
+ concurrent-ruby (~> 1.0)
175
+ unicode-display_width (2.2.0)
176
+ websocket-driver (0.7.5)
177
+ websocket-extensions (>= 0.1.0)
178
+ websocket-extensions (0.1.5)
179
+ zeitwerk (2.6.0)
180
+
181
+ PLATFORMS
182
+ ruby
183
+
184
+ DEPENDENCIES
185
+ active_model_exporters!
186
+ appraisal (~> 2.4)
187
+ bundler (~> 2.3)
188
+ coveralls (~> 0.8)
189
+ minitest (~> 5.16)
190
+ rails (~> 6.1.0)
191
+ rake (~> 13.0)
192
+ rubocop (~> 1.35)
193
+ sqlite3 (~> 1.4)
194
+
195
+ BUNDLED WITH
196
+ 2.3.20
@@ -0,0 +1,14 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 2.4"
6
+ gem "bundler", "~> 2.3"
7
+ gem "coveralls", "~> 0.8"
8
+ gem "minitest", "~> 5.16"
9
+ gem "rake", "~> 13.0"
10
+ gem "rubocop", "~> 1.35"
11
+ gem "sqlite3", "~> 1.4"
12
+ gem "rails", "~> 7.0.0"
13
+
14
+ gemspec path: "../"