eac_rails_gem_support 0.1.0 → 0.4.0

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.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/lib/eac_rails_gem_support/patches/object/template.rb +6 -0
  3. data/lib/eac_rails_gem_support/patches/object.rb +5 -0
  4. data/lib/eac_rails_gem_support/rspec/appendable_rails_app.rb +49 -0
  5. data/lib/eac_rails_gem_support/rspec/setup/capybara.rb +2 -2
  6. data/lib/eac_rails_gem_support/rspec/setup/factory_bot.rb +2 -2
  7. data/lib/eac_rails_gem_support/rspec/setup/fixtures.rb +25 -0
  8. data/lib/eac_rails_gem_support/rspec/setup/rails_app.rb +53 -0
  9. data/lib/eac_rails_gem_support/rspec/setup.rb +9 -48
  10. data/lib/eac_rails_gem_support/version.rb +1 -1
  11. data/template/eac_rails_gem_support/rspec/appendable_rails_app/Gemfile.template +3 -0
  12. data/template/eac_rails_gem_support/rspec/appendable_rails_app/Rakefile +8 -0
  13. data/template/eac_rails_gem_support/rspec/appendable_rails_app/app/assets/config/manifest.js +3 -0
  14. data/template/eac_rails_gem_support/rspec/appendable_rails_app/app/views/home/index.html.erb +1 -0
  15. data/template/eac_rails_gem_support/rspec/appendable_rails_app/bin/rails +6 -0
  16. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/application.rb +22 -0
  17. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/boot.rb +6 -0
  18. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/database.yml +17 -0
  19. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/environment.rb +7 -0
  20. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/environments/test.rb +44 -0
  21. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/routes.rb +4 -0
  22. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config/secrets.yml +22 -0
  23. data/template/eac_rails_gem_support/rspec/appendable_rails_app/config.ru +6 -0
  24. metadata +78 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c97abd1e7599cf2ae736f2c3e88a21b935238e8af9cf9feeb2aa41e1748f833
4
- data.tar.gz: 1cfc033902376938bb8cc84c760d3e60e311023828f5281b8c9536ea31ce3dbd
3
+ metadata.gz: f669883e08c3daaf96ab5e7913ff0714c04ee87729b224d919bbfa5371127ff1
4
+ data.tar.gz: 2b0f43c03154eb295623a23c1368c4618358c9405e6279af5e599ecdf2369437
5
5
  SHA512:
6
- metadata.gz: 005c1b1a151e0a5bd1307babddbc7b4166f1977f9e93cbbccb62b58c0e319d9b3ec6ccfdd68dde22fb29242b74b50981ad3e208e371b7ba9a3f73e7510fa887e
7
- data.tar.gz: 4ba53aeffb36f35721acb4067ffe20b58793959e71557fc9eace4dc916aa782b6512cb16a497ba3baa9b6dc3596715b9bd503fd928234650d773c4e31dc1c62d
6
+ metadata.gz: 80622b4d56bededeb2ff0dd2ef72e398f931343a3c81a99ec2b64118fc796917303f3d3b20e5ee42a986855dc769c3f3b10b481cfe7135cdc8af9a6c74e7bcee
7
+ data.tar.gz: c216e5c31048b0798ce55c3eec56e345102da610d36145f609fb1d3905b69f5eb74a6249c18a99b65a966c259feacdcadb2bd96023dda27b913566e118285aea
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_templates/patches/object/template'
4
+
5
+ ::EacTemplates::Searcher.default.included_paths <<
6
+ ::File.expand_path('../../../../template', __dir__)
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ require_sub __FILE__
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_rails_gem_support/patches/object/template'
4
+ require 'eac_ruby_gems_utils/gem'
5
+ require 'eac_ruby_utils/core_ext'
6
+ require 'fileutils'
7
+
8
+ module EacRailsGemSupport
9
+ module Rspec
10
+ class AppendableRailsApp
11
+ enable_simple_cache
12
+ common_constructor :gem_dir, :append_dir, :target_dir, default: [nil] do
13
+ self.target_dir = ::EacRubyUtils::Fs::ClearableDirectory.new(
14
+ (target_dir || ::Dir.mktmpdir).to_pathname
15
+ )
16
+ build
17
+ end
18
+
19
+ protected
20
+
21
+ def build
22
+ clear_target
23
+ copy_app_base
24
+ copy_append_directory
25
+ database_migrate
26
+ end
27
+
28
+ def database_migrate
29
+ the_gem.bundle('exec', 'rake', 'db:migrate').chdir_root.execute!
30
+ end
31
+
32
+ def clear_target
33
+ target_dir.clear
34
+ end
35
+
36
+ def copy_app_base
37
+ template.apply(self, target_dir)
38
+ end
39
+
40
+ def copy_append_directory
41
+ ::FileUtils.cp_r("#{append_dir}/.", target_dir)
42
+ end
43
+
44
+ def the_gem_uncached
45
+ ::EacRubyGemsUtils::Gem.new(target_dir)
46
+ end
47
+ end
48
+ end
49
+ end
@@ -4,11 +4,11 @@ require 'eac_ruby_utils/core_ext'
4
4
 
5
5
  module EacRailsGemSupport
6
6
  module Rspec
7
- class Setup
7
+ module Setup
8
8
  module Capybara
9
9
  def setup_capybara
10
10
  require 'capybara/rspec'
11
- setup_obj.rspec_config.include ::Capybara::DSL, file_path: 'spec/requests'
11
+ rspec_config.include ::Capybara::DSL, file_path: 'spec/requests'
12
12
  end
13
13
  end
14
14
  end
@@ -4,11 +4,11 @@ require 'eac_ruby_utils/core_ext'
4
4
 
5
5
  module EacRailsGemSupport
6
6
  module Rspec
7
- class Setup
7
+ module Setup
8
8
  module FactoryBot
9
9
  def setup_factory_bot
10
10
  require 'factory_bot_rails'
11
- setup_obj.rspec_config.include ::FactoryBot::Syntax::Methods
11
+ rspec_config.include ::FactoryBot::Syntax::Methods
12
12
  Spring.after_fork { ::FactoryBot.reload } if defined?(Spring)
13
13
  end
14
14
  end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/core_ext'
4
+
5
+ module EacRailsGemSupport
6
+ module Rspec
7
+ module Setup
8
+ module Fixtures
9
+ def fixtures_path
10
+ [
11
+ app_root_path.join('spec', 'fixtures'),
12
+ app_root_path.join('test', 'fixtures')
13
+ ].find(&:directory?)
14
+ end
15
+
16
+ def setup_fixtures
17
+ rspec_config.use_transactional_fixtures = true
18
+ fixtures_path.if_present do |v|
19
+ rspec_config.fixture_path = v
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_rails_gem_support/rspec/appendable_rails_app'
4
+ require 'eac_ruby_utils'
5
+
6
+ module EacRailsGemSupport
7
+ module Rspec
8
+ module Setup
9
+ module RailsApp
10
+ def builded_rails_app_path
11
+ dir = app_root_path.join('spec', 'support', 'rails_app_append')
12
+ return nil unless dir.directory?
13
+
14
+ ::EacRailsGemSupport::Rspec::AppendableRailsApp.new(
15
+ app_root_path, dir, builded_rails_app_path_target_dir
16
+ ).target_dir
17
+ end
18
+
19
+ def builded_rails_app_path_target_dir
20
+ root_tmp.join('rails_app')
21
+ end
22
+
23
+ def existing_rails_app_path
24
+ [
25
+ app_root_path,
26
+ app_root_path.join('spec', 'support', 'rails_app')
27
+ ].find { |app_path| app_path.join('config', 'environment.rb').file? }
28
+ end
29
+
30
+ # @return [Pathname]
31
+ def rails_app_path_uncached
32
+ existing_rails_app_path || builded_rails_app_path
33
+ end
34
+
35
+ def setup_rails_app
36
+ return false unless rails_app_path
37
+
38
+ require rails_app_path.join('config', 'environment').to_path
39
+ ::ActiveRecord::Migrator.migrations_paths = [rails_app_path.join('db', 'migrate')]
40
+ raise('The Rails environment is running in production mode!') if Rails.env.production?
41
+
42
+ require 'rspec/rails'
43
+ ::ActiveRecord::Migration.maintain_test_schema!
44
+ true
45
+ end
46
+
47
+ def setup_rails_env
48
+ ENV['RAILS_ENV'] ||= 'test'
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
@@ -4,57 +4,18 @@ require 'eac_ruby_utils/core_ext'
4
4
 
5
5
  module EacRailsGemSupport
6
6
  module Rspec
7
- class Setup
7
+ module Setup
8
+ extend ::ActiveSupport::Concern
8
9
  require_sub __FILE__, include_modules: true
9
- common_constructor :setup_obj
10
10
 
11
- def perform
12
- setup_rails_env
13
- return unless setup_rails_app
11
+ def self.extended(obj)
12
+ obj.singleton_class.include(::EacRubyUtils::SimpleCache)
13
+ obj.setup_rails_env
14
+ return unless obj.setup_rails_app
14
15
 
15
- setup_fixtures
16
- setup_capybara
17
- setup_factory_bot
18
- end
19
-
20
- private
21
-
22
- # @return [Pathname]
23
- def rails_app_path
24
- [
25
- setup_obj.app_root_path,
26
- setup_obj.app_root_path.join('spec', 'support', 'rails_app')
27
- ].find { |app_path| app_path.join('config', 'environment.rb').file? }
28
- end
29
-
30
- def fixtures_path
31
- [
32
- setup_obj.app_root_path.join('spec', 'fixtures'),
33
- setup_obj.app_root_path.join('test', 'fixtures')
34
- ].find(&:directory?)
35
- end
36
-
37
- def setup_rails_app
38
- return false unless rails_app_path
39
-
40
- require rails_app_path.join('config', 'environment').to_path
41
- ::ActiveRecord::Migrator.migrations_paths = [rails_app_path.join('db', 'migrate')]
42
- raise('The Rails environment is running in production mode!') if Rails.env.production?
43
-
44
- require 'rspec/rails'
45
- ::ActiveRecord::Migration.maintain_test_schema!
46
- true
47
- end
48
-
49
- def setup_fixtures
50
- setup_obj.rspec_config.use_transactional_fixtures = true
51
- fixtures_path.if_present do |v|
52
- setup_obj.rspec_config.fixture_path = v
53
- end
54
- end
55
-
56
- def setup_rails_env
57
- ENV['RAILS_ENV'] ||= 'test'
16
+ obj.setup_fixtures
17
+ obj.setup_capybara
18
+ obj.setup_factory_bot
58
19
  end
59
20
  end
60
21
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRailsGemSupport
4
- VERSION = '0.1.0'
4
+ VERSION = '0.4.0'
5
5
  end
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ eval_gemfile ::File.join('%%gem_dir%%', 'Gemfile')
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Add your own tasks in files placed in lib/tasks ending in .rake,
4
+ # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
5
+
6
+ require File.expand_path('config/application', __dir__)
7
+
8
+ Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ //= link_tree ../images
2
+ //= link_directory ../javascripts .js
3
+ //= link_directory ../stylesheets .css
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ APP_PATH = File.expand_path('../config/application', __dir__)
5
+ require_relative '../config/boot'
6
+ require 'rails/commands'
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ require File.expand_path('boot', __dir__)
4
+
5
+ require 'rails/all'
6
+
7
+ Bundler.require(*Rails.groups)
8
+
9
+ file = ::File.join(__dir__, 'application_before.rb')
10
+ require file if ::File.exist?(file)
11
+
12
+ module Dummy
13
+ class Application < Rails::Application
14
+ config.active_record.raise_in_transactional_callbacks = true if ::Rails.version < '5'
15
+ config.active_record.sqlite3.represent_boolean_as_integer = true
16
+
17
+ config.action_mailer.default_url_options = { host: 'dummyhost' }
18
+ end
19
+ end
20
+
21
+ file = ::File.join(__dir__, 'application_after.rb')
22
+ require file if ::File.exist?(file)
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Set up gems listed in the Gemfile.
4
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __dir__)
5
+
6
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
@@ -0,0 +1,17 @@
1
+ development:
2
+ adapter: sqlite3
3
+ pool: 5
4
+ timeout: 5000
5
+ database: db/development.sqlite3
6
+
7
+ production:
8
+ adapter: sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+ database: db/production.sqlite3
12
+
13
+ test:
14
+ adapter: sqlite3
15
+ pool: 5
16
+ timeout: 5000
17
+ database: db/test.sqlite3
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Load the Rails application.
4
+ require File.expand_path('application', __dir__)
5
+
6
+ # Initialize the Rails application.
7
+ Rails.application.initialize!
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ Rails.application.configure do
4
+ # Settings specified here will take precedence over those in config/application.rb.
5
+
6
+ # The test environment is used exclusively to run your application's
7
+ # test suite. You never need to work with it otherwise. Remember that
8
+ # your test database is "scratch space" for the test suite and is wiped
9
+ # and recreated between test runs. Don't rely on the data there!
10
+ config.cache_classes = true
11
+
12
+ # Do not eager load code on boot. This avoids loading your whole application
13
+ # just for the purpose of running a single test. If you are using a tool that
14
+ # preloads Rails for running tests, you may have to set it to true.
15
+ config.eager_load = false
16
+
17
+ # Configure static file server for tests with Cache-Control for performance.
18
+ config.serve_static_files = true
19
+ config.static_cache_control = 'public, max-age=3600'
20
+
21
+ # Show full error reports and disable caching.
22
+ config.consider_all_requests_local = true
23
+ config.action_controller.perform_caching = false
24
+
25
+ # Raise exceptions instead of rendering exception templates.
26
+ config.action_dispatch.show_exceptions = false
27
+
28
+ # Disable request forgery protection in test environment.
29
+ config.action_controller.allow_forgery_protection = false
30
+
31
+ # Tell Action Mailer not to deliver emails to the real world.
32
+ # The :test delivery method accumulates sent emails in the
33
+ # ActionMailer::Base.deliveries array.
34
+ config.action_mailer.delivery_method = :test
35
+
36
+ # Randomize the order test cases are executed.
37
+ config.active_support.test_order = :random
38
+
39
+ # Print deprecation notices to the stderr.
40
+ config.active_support.deprecation = :stderr
41
+
42
+ # Raises error for missing translations
43
+ # config.action_view.raise_on_missing_translations = true
44
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ ::Rails.application.routes.draw do
4
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 50d3bce23e309d961dafde3edfa89be2713718a5e2fb75b6c3e1f61826230921535243d2f221b8cecebeaceccb574a1e74fbbf3b89a9d53758ac988950f1753c
15
+
16
+ test:
17
+ secret_key_base: 75f37392ef7726b50b4ce117bd6a7eca7cdc299608e256f7ca163b14032559217364d41b7c091483ce02179a18c956f6e076331a611c0500f2862f83979a6c16
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file is used by Rack-based servers to start the application.
4
+
5
+ require ::File.expand_path('../config/environment', __FILE__)
6
+ run Rails.application
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_rails_gem_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Put here the authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-14 00:00:00.000000000 Z
11
+ date: 2021-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: capybara
@@ -30,28 +30,68 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.3'
33
+ version: '0.4'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.3'
40
+ version: '0.4'
41
+ - !ruby/object:Gem::Dependency
42
+ name: eac_ruby_gems_utils
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.9'
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 0.9.5
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '0.9'
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 0.9.5
41
61
  - !ruby/object:Gem::Dependency
42
62
  name: eac_ruby_utils
43
63
  requirement: !ruby/object:Gem::Requirement
44
64
  requirements:
45
65
  - - "~>"
46
66
  - !ruby/object:Gem::Version
47
- version: '0.71'
67
+ version: '0.74'
48
68
  type: :runtime
49
69
  prerelease: false
50
70
  version_requirements: !ruby/object:Gem::Requirement
51
71
  requirements:
52
72
  - - "~>"
53
73
  - !ruby/object:Gem::Version
54
- version: '0.71'
74
+ version: '0.74'
75
+ - !ruby/object:Gem::Dependency
76
+ name: eac_templates
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '0.1'
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: 0.1.1
85
+ type: :runtime
86
+ prerelease: false
87
+ version_requirements: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - "~>"
90
+ - !ruby/object:Gem::Version
91
+ version: '0.1'
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: 0.1.1
55
95
  - !ruby/object:Gem::Dependency
56
96
  name: factory_bot_rails
57
97
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +106,20 @@ dependencies:
66
106
  - - ">="
67
107
  - !ruby/object:Gem::Version
68
108
  version: '0'
109
+ - !ruby/object:Gem::Dependency
110
+ name: rails
111
+ requirement: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - "~>"
114
+ - !ruby/object:Gem::Version
115
+ version: 5.2.6
116
+ type: :runtime
117
+ prerelease: false
118
+ version_requirements: !ruby/object:Gem::Requirement
119
+ requirements:
120
+ - - "~>"
121
+ - !ruby/object:Gem::Version
122
+ version: 5.2.6
69
123
  - !ruby/object:Gem::Dependency
70
124
  name: rspec-rails
71
125
  requirement: !ruby/object:Gem::Requirement
@@ -101,11 +155,29 @@ extensions: []
101
155
  extra_rdoc_files: []
102
156
  files:
103
157
  - lib/eac_rails_gem_support.rb
158
+ - lib/eac_rails_gem_support/patches/object.rb
159
+ - lib/eac_rails_gem_support/patches/object/template.rb
104
160
  - lib/eac_rails_gem_support/rspec.rb
161
+ - lib/eac_rails_gem_support/rspec/appendable_rails_app.rb
105
162
  - lib/eac_rails_gem_support/rspec/setup.rb
106
163
  - lib/eac_rails_gem_support/rspec/setup/capybara.rb
107
164
  - lib/eac_rails_gem_support/rspec/setup/factory_bot.rb
165
+ - lib/eac_rails_gem_support/rspec/setup/fixtures.rb
166
+ - lib/eac_rails_gem_support/rspec/setup/rails_app.rb
108
167
  - lib/eac_rails_gem_support/version.rb
168
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/Gemfile.template
169
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/Rakefile
170
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/app/assets/config/manifest.js
171
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/app/views/home/index.html.erb
172
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/bin/rails
173
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config.ru
174
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/application.rb
175
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/boot.rb
176
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/database.yml
177
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/environment.rb
178
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/environments/test.rb
179
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/routes.rb
180
+ - template/eac_rails_gem_support/rspec/appendable_rails_app/config/secrets.yml
109
181
  homepage:
110
182
  licenses: []
111
183
  metadata: {}