autorequire_rails 1.0.2 → 1.1.0

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: c4c7834e6fa2af64dcafc6f3ad709a86212b73c094e6f05b3ad44b6c05d448de
4
- data.tar.gz: 1c3b731ad8bad5eb2023f74049b32556c4037c343a3d4225aca66432ef902407
3
+ metadata.gz: 767ba705a2217482f19b3445f407f4c918755a45081429da1acd5ae4ac374ea0
4
+ data.tar.gz: 7d7bf5d0d158a9cfadc1a41f6aa6212f4ae2d42e13cc7356e78c0f8f25d630af
5
5
  SHA512:
6
- metadata.gz: cf30992f767bd170fe037c0920d23c2ac4213a77942483d1914abcb81a081db8e2e1230778d1cff0fd95aeff8a7f970039e8277fb927f6c2cd316314a4317032
7
- data.tar.gz: e5f3e57e6ed1fd04ac797b183c73d8692f086ecb33acd40768bd35d306046647e16bedad796178f220825e9b46485e3cfc0e2e8807ef2c812712ec5ddf68f9f1
6
+ metadata.gz: fb1d0a9d0e67467160ff94012bc493e72dc16b5eb0fc965597bf60d7e8c90436484902bc49472e4359713a743f332738a83ef939e4026c4294c29fd12252b44e
7
+ data.tar.gz: 0dce19729cb27affce705f1f6aa2170d65bd2bdbb83e90006509fc2212b971125c34f49ab9637f4a8d7859fe49fb99908afac8aea22e3ca95000598b8b902604
@@ -0,0 +1,54 @@
1
+ # This workflow will download prebuilt Ruby versions, install dependencies and run checks against Pull Requests.
2
+
3
+ name: Check Pull Request
4
+ on:
5
+ pull_request:
6
+ branches: [ master ]
7
+ env:
8
+ # The pull request can have less than, or equal to, this number of rubocop issues and pass.
9
+ RUBOCOP_ISSUE_THRESHOLD: 5
10
+ jobs:
11
+ rspec:
12
+ name: Run RSpec
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ ruby-version: ['2.6', '2.7', '3.0']
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Set up Ruby
20
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
21
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby-version }}
25
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
26
+ - name: Execute rspec command
27
+ run: bin/start_rspec
28
+ rubocop:
29
+ name: Run Rubocop
30
+ runs-on: ubuntu-latest
31
+ strategy:
32
+ matrix:
33
+ ruby-version: ['2.6']
34
+ steps:
35
+ - uses: actions/checkout@v2
36
+ - name: Set up Ruby
37
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
38
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
39
+ uses: ruby/setup-ruby@v1
40
+ with:
41
+ ruby-version: ${{ matrix.ruby-version }}
42
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
43
+ - name: Execute rubo command
44
+ run: bundle exec rubo
45
+ - name: Evaluate rubo threshold
46
+ run: |
47
+ count=$(cat rubocop/total-violations-count.txt)
48
+ if [[ "$count" -gt $RUBOCOP_ISSUE_THRESHOLD ]]; then
49
+ echo "Failure: Found $count RuboCop issue(s). It must have $RUBOCOP_ISSUE_THRESHOLD or less. \
50
+ Run 'rubo' and resolve the issues listed in rubocop/style-issues.html"
51
+ exit 1
52
+ else
53
+ echo "Success: Found $count RuboCop issue(s), which is less than the limit of $RUBOCOP_ISSUE_THRESHOLD"
54
+ fi
data/.gitignore CHANGED
@@ -7,6 +7,7 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+ /rubocop/
10
11
 
11
12
  /spec/dummy/db/*.sqlite3
12
13
  /spec/dummy/db/*.sqlite3-journal
data/.rubocop.yml CHANGED
@@ -1,18 +1,14 @@
1
- AllCops:
2
- Exclude:
3
- - spec/dummy/db/schema.rb
1
+ # DO NOT MODIFY THIS FILE unless you want to deviate from the rubocop_plus ruleset.
4
2
 
5
- Style/StringLiterals:
6
- Enabled: false
3
+ # This file defines the settings used by rubocop when it runs. You would normally add your customizations directly to this
4
+ # file, but this file has been pre configured to read settings out of the rubocop_plus gem instead.
7
5
 
8
- Metrics/LineLength:
9
- Max: 130
6
+ # Tell rubocop to load its settings from the rubocop_plus gem.
7
+ inherit_gem:
8
+ rubocop_plus: config/rubocop.yml
10
9
 
11
- Style/StderrPuts:
12
- Exclude:
13
- - spec/dummy/bin/yarn
10
+ Rails:
11
+ Enabled: true
14
12
 
15
- Style/MixinUsage:
16
- Exclude:
17
- - spec/dummy/bin/setup
18
- - spec/dummy/bin/update
13
+ # Place custom settings below this comment. All customizations will OVERRIDE rubocop_plus rules. rubocop_plus & rubocop
14
+ # do not attempt to merge these settings with their defaults. Long term changes should be ported to the rubocop_plus gem.
data/CHANGELOG.md CHANGED
@@ -1,14 +1,33 @@
1
1
  # CHANGELOG
2
2
 
3
+ Issues are tracked at https://github.com/roberts1000/autorequire_rails/issues. Issues marked as **(Internal)** only affect development.
4
+
5
+ ## 1.1.0 (Aug 14, 2021)
6
+
7
+ 1. [#13](../../issues/13): Add the rubocop_plus gem and cleanup internal code. **(Internal)**
8
+ 1. [#15](../../issues/15): Add the rspec_starter gem to run rspec specs. **(Internal)**
9
+ 1. [#29](../../issues/29): Use `puma ~> 5.3` for development. **(Internal)**
10
+ 1. [#30](../../issues/30): Update the `CHANGELOG`. **(Internal)**
11
+ 1. [#32](../../issues/32): Add GitHub action to check pull requests. **(Internal)**
12
+ 1. [#35](../../issues/35): Use `sqlite3` `~> 1.4.0` for development. **(Internal)**
13
+ 1. [#37](../../issues/37): Use `rspec-rails` `~> 5.0.0` for development. **(Internal)**
14
+ 1. [#39](../../issues/39): Use `rubocop_plus` `~> 2.0` for development. **(Internal)**
15
+ 1. [#41](../../issues/41): Use `rake` `~> 13.0` for development. **(Internal)**
16
+ 1. [#44](../../issues/44): Drop support for Rails 5.1 and earlier.
17
+ 1. [#46](../../issues/46): Modernize spec dummy setup. **(Internal)**
18
+ 1. [#48](../../issues/48): Sort autorequired files before requiring.
19
+ 1. [#51](../../issues/51): Set `required_ruby_version` to `>= 2.6.0`.
20
+ 1. [#54](../../issues/54): Use `rspec_starter` `~> 2.0`. **(Internal)**
21
+
3
22
  ## 1.0.2 (Jan 08, 2018)
4
23
 
5
- 1. Publish a new version to replace the two earlier versions that were yanked from Rubygems.
24
+ 1. Nothing new; republishing to replace the yanked 1.0.1 version.
6
25
 
7
26
  ## 1.0.1 (Jan 08, 2018)
8
27
 
9
- 1. Polish the gem and add automated tests. (Issue #3)
10
- 1. Reduce rubocop violations to 0. (Issue #6)
28
+ 1. [#3](../../issues/3): Polish the gem and add automated tests. **(Internal)**
29
+ 1. [#6](../../issues/6): Reduce rubocop violations to 0. **(Internal)**
11
30
 
12
31
  ## 1.0.0 (Jan 07, 2018)
13
32
 
14
- 1. Autorequire all files in `lib/autorequire` via an initializer. (Issue #1)
33
+ 1. [#1](../../issues/1): Autorequire all files in `lib/autorequire` via an initializer.
data/Gemfile CHANGED
@@ -1,9 +1,15 @@
1
1
  source 'https://rubygems.org'
2
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
2
3
 
3
4
  # Specify your gem's dependencies in autorequire_rails.gemspec
4
5
  gemspec
5
6
 
7
+ group :development do
8
+ gem 'rspec_starter', "~> 2.0", require: false
9
+ gem 'rubocop_plus', "~> 2.0", require: false
10
+ end
11
+
6
12
  group :development, :test do
7
13
  gem 'bootsnap', require: false
8
- gem 'puma', '~> 3.7'
14
+ gem 'puma', '~> 5.3'
9
15
  end
data/LICENSE.md CHANGED
@@ -1,21 +1,22 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Robert Soly
3
+ Copyright 2021 roberts1000
4
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:
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
11
12
 
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
14
15
 
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.
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -2,17 +2,24 @@
2
2
 
3
3
  autorequire_rails is a Rails engine that automatically requires all ruby files in `lib/autorequire` when a Rails app boots.
4
4
 
5
- Why is this useful? Rails has multiple strategies for loading code and there are some scenarios that can cause Rails to ignore files in `lib`. One example where this frequently arises is when trying to monkey patch a core ruby class. Many people create a file like `lib/string.rb` and expect Rails to autoload or eagerload it. However, out of the box, Rails isn't configured to reach into `lib` so the code won't get loaded . On top of that, even if Rails were configured to look in `lib`, it still wouldn't work. Constants, like the `String` constant, are always defined so Rails never thinks it needs to go looking for additional files to load.
5
+ Why is this useful? Rails has multiple strategies for loading code and there are scenarios that can cause Rails to ignore files in `lib`. One example where this frequently arises is when trying to monkey patch a core ruby class. Many people create a file like `lib/string.rb` and expect Rails to autoload or eagerload it. However, out of the box, Rails isn't configured to reach into `lib` so the code won't get loaded. On top of that, even if Rails were configured to look in `lib`, it still wouldn't work. Constants, like the `String` constant, are always defined so Rails never thinks it needs to find additional files to load.
6
6
 
7
- To solve these kinds of problems, you typically have to explicitly require files on your own. autorequire_rails saves you the trouble and establishes a pattern.
7
+ To solve these kinds of problems, you typically have to explicitly require files on your own. autorequire_rails saves you the trouble and establishes a pattern.
8
8
 
9
9
  ## Versioning Scheme
10
10
 
11
- This gem uses [semver](http:/semver.org).
11
+ Releases are versioned using [SemVer 2.0.0](https://semver.org/spec/v2.0.0.html) with the following caveats:
12
12
 
13
- ## Supported Rails Versions
13
+ 1. Support for a Ruby version, that reaches EOL, is removed in a major or minor release.
14
+ 1. Support for a Ruby on Rails version, that reaches EOL, is removed in a major or minor release.
14
15
 
15
- Rails 4+.
16
+ ## Supported Ruby Versions
17
+
18
+ Ruby 2.6.0+
19
+
20
+ ## Supported Ruby on Rails Versions
21
+
22
+ Rails 5.2+
16
23
 
17
24
  ## Installation
18
25
 
@@ -28,24 +35,20 @@ And then execute:
28
35
 
29
36
  ## Usage
30
37
 
31
- Add any file with a .rb extension to the `lib/autorequire` folder (or a sub folder). Rails will automatically load it during the boot process.
38
+ Add any file with a `.rb` extension to the `lib/autorequire` folder (or a sub folder). Rails will automatically load it during the boot process.
32
39
 
33
40
  ## Recommendations
34
41
 
35
42
  #### Recommended Folder Stricture
36
43
 
37
- You can use any folder structure you like, but we recommend putting extensions to ruby core classes in `lib/autorequire/core_ext` and extensions to gems in a folder like `lib/autorequire/gem_ext/<gem name here>`.
44
+ You can use any folder structure you like, but it is recommended to put ruby core classes in `lib/autorequire/core_ext` and extensions to gems in a folder like `lib/autorequire/gem_ext/<gem name here>`.
38
45
 
39
46
  #### What to Put in lib/autorequire
40
47
 
41
- Ultimately, `lib/autorequire` is useful for adding code **to constants that are already defined**. As a result, it's ideal for changes to 3rd party libraries and ruby core classes/modules. It can also be great place to hold reusable code that can be shared between applications.
48
+ Ultimately, `lib/autorequire` is useful for adding code **to constants that are already defined**. As a result, it's ideal for changes to 3rd party libraries and ruby core classes/modules. It can also be used to hold reusable code that can be shared between applications.
42
49
 
43
- If you're defining **application specific** custom classes and modules, consider using a sub folder inside `app`. If you're defining a new constant (and the file name follow proper Rails naming rules), Rails will happily discover it when needed. `app/lib` is a sensible place to hold these kind of classes and modules.
50
+ If you're defining **application specific** custom classes and modules, consider using a sub folder inside `app`. If you're defining a new constant (and the file name follow proper Rails naming rules), Rails will happily discover it when needed. `app/lib` is a sensible place to hold these kind of classes and modules.
44
51
 
45
52
  ## Contributing
46
53
 
47
- Bug reports and pull requests are welcome on GitHub at https://github.com/corlewsolutions/format_restricter_rails.
48
-
49
- ## License
50
-
51
- The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
54
+ Bug reports and pull requests are welcome on the autorequire_rails [issues](https://github.com/roberts1000/autorequire_rails/issues) page.
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ rescue LoadError
4
4
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
5
  end
6
6
 
7
- APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
7
+ APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
8
8
  load 'rails/tasks/engine.rake'
9
9
  load 'rails/tasks/statistics.rake'
10
10
  Bundler::GemHelper.install_tasks
@@ -15,7 +15,8 @@ RSpec::Core::RakeTask.new(:spec)
15
15
 
16
16
  task default: :spec
17
17
 
18
- task :console do
18
+ desc "Run 'rake console' to start a Pry console with the gem loaded"
19
+ task console: :environment do
19
20
  exec "pry -r autorequire_rails -I ./lib"
20
21
  # exec "irb -r autorequire_rails -I ./lib"
21
22
  end
@@ -1,4 +1,4 @@
1
- lib = File.expand_path('../lib', __FILE__)
1
+ lib = File.expand_path('lib', __dir__)
2
2
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
3
  require 'autorequire_rails/version'
4
4
 
@@ -10,20 +10,21 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = "A Rails engine that requires all ruby files in lib/autorequire when a Rails app boots."
12
12
  spec.description = "A Rails engine that requires all ruby files in lib/autorequire when a Rails app boots."
13
- spec.homepage = "https://github.com/corlewsolutions/autorequire_rails"
13
+ spec.homepage = "https://github.com/roberts1000/autorequire_rails"
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
17
  spec.bindir = "exe"
18
18
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
19
  spec.require_paths = ["lib"]
20
+ spec.required_ruby_version = '>= 2.6.0'
20
21
 
21
- spec.add_development_dependency "bundler", "~> 1.16"
22
- spec.add_development_dependency "pry", "~> 0.11.3"
23
- spec.add_development_dependency "rake", "~> 12.0"
24
- spec.add_development_dependency "rspec-rails", "~> 3.7.2"
22
+ spec.add_development_dependency "bundler", "~> 2.0"
23
+ spec.add_development_dependency "pry", "~> 0.12.2"
24
+ spec.add_development_dependency "rake", "~> 13.0"
25
+ spec.add_development_dependency "rspec-rails", "~> 5.0.0"
25
26
  spec.add_development_dependency "sass-rails", "~> 5.0"
26
- spec.add_development_dependency "sqlite3", "~> 1.3.11"
27
+ spec.add_development_dependency "sqlite3", "~> 1.4.0"
27
28
 
28
- spec.add_dependency "rails", ">= 4"
29
+ spec.add_dependency "rails", ">= 5.2"
29
30
  end
data/bin/console CHANGED
@@ -6,8 +6,7 @@ require "autorequire_rails"
6
6
  # You can add fixtures and/or initialization code here to make experimenting
7
7
  # with your gem easier. You can also use a different console, if you like.
8
8
 
9
- require "pry"
10
- Pry.start
9
+ # Run 'rake console' to start a pry console.
11
10
 
12
- # require "irb"
13
- # IRB.start
11
+ require "irb"
12
+ IRB.start
data/bin/rails CHANGED
@@ -3,12 +3,12 @@
3
3
  # This command will automatically be run when you run "rails" with Rails gems
4
4
  # installed from the root of your application.
5
5
 
6
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
7
- ENGINE_PATH = File.expand_path('../../lib/autorequire_rails/engine', __FILE__)
8
- APP_PATH = File.expand_path('../../spec/dummy/config/application', __FILE__)
6
+ ENGINE_ROOT = File.expand_path('..', __dir__)
7
+ ENGINE_PATH = File.expand_path('../lib/autorequire_rails/engine', __dir__)
8
+ APP_PATH = File.expand_path('../spec/dummy/config/application', __dir__)
9
9
 
10
10
  # Set up gems listed in the Gemfile.
11
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
11
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
12
12
  require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
13
13
 
14
14
  require 'rails/all'
data/bin/start_rspec ADDED
@@ -0,0 +1,38 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # Execute this script to run RSpec for the app.
4
+ # To run all specs, navigate to the application's root folder and execute
5
+ # bin/start_rspec
6
+ # rspec_starter takes command line options and forwards unknown options to rspec
7
+ # bin/start_rspec --no-prep-db spec/features
8
+ # See the help output for more advanced ways to run the script
9
+ # bin/start_rspec --help
10
+
11
+ require "bundler/setup"
12
+ require "rspec_starter"
13
+
14
+ # The path to the application's root folder.
15
+ APP_ROOT = Pathname.new File.expand_path('..', __dir__)
16
+
17
+ # Create a custom task. For more information about custom tasks, see
18
+ # https://github.com/roberts1000/rspec_starter. Once defined, add
19
+ # 'task :my_custom_task' to the start block to execute.
20
+ #
21
+ # class MyCustomTask < RspecStarterTask
22
+ # # Specify a message to show users when the task executes.
23
+ # def starting_message
24
+ # "Executing My Custom Task"
25
+ # end
26
+ #
27
+ # # Execute task code.
28
+ # def execute
29
+ # end
30
+ # end
31
+
32
+ # Tasks are run from the top down.
33
+ RspecStarter.start do
34
+ task :verify_display_server
35
+ task :remove_tmp_folder, remove_dummy_tmp: true
36
+ task :rebuild_rails_app_database
37
+ task :start_rspec
38
+ end
@@ -8,4 +8,4 @@
8
8
  # and any methods defined in string.rb will never be loaded. The general solution to this problem is to
9
9
  # manually require files that extend core classes inside an initializer. The autorequire pattern takes this
10
10
  # a step farther by giving us a place to automatically require any .rb file.
11
- Dir.glob(Rails.root.join('lib', 'autorequire', '**', '*.rb')).each { |f| require f }
11
+ Dir.glob(Rails.root.join('lib', 'autorequire', '**', '*.rb')).sort.each { |f| require f }
@@ -5,9 +5,9 @@ require "autorequire_rails/engine"
5
5
  # Setup pry for development when running "rake console". Guard against load
6
6
  # errors in production (since pry is only loaded as a DEVELOPMENT dependency
7
7
  # in the .gemspec)
8
- # rubocop:disable Lint/HandleExceptions
8
+ # rubocop:disable Lint/SuppressedException
9
9
  begin
10
10
  require "pry"
11
11
  rescue LoadError
12
12
  end
13
- # rubocop:enable Lint/HandleExceptions
13
+ # rubocop:enable Lint/SuppressedException
@@ -1,3 +1,3 @@
1
1
  module AutorequireRails
2
- VERSION = "1.0.2".freeze
2
+ VERSION = "1.1.0".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autorequire_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - roberts1000
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-01-08 00:00:00.000000000 Z
11
+ date: 2021-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -16,56 +16,56 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.16'
19
+ version: '2.0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.16'
26
+ version: '2.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: pry
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 0.11.3
33
+ version: 0.12.2
34
34
  type: :development
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.11.3
40
+ version: 0.12.2
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '12.0'
47
+ version: '13.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '12.0'
54
+ version: '13.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec-rails
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 3.7.2
61
+ version: 5.0.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 3.7.2
68
+ version: 5.0.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: sass-rails
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -86,28 +86,28 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 1.3.11
89
+ version: 1.4.0
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 1.3.11
96
+ version: 1.4.0
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rails
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ">="
102
102
  - !ruby/object:Gem::Version
103
- version: '4'
103
+ version: '5.2'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
- version: '4'
110
+ version: '5.2'
111
111
  description: A Rails engine that requires all ruby files in lib/autorequire when a
112
112
  Rails app boots.
113
113
  email:
@@ -116,10 +116,10 @@ executables: []
116
116
  extensions: []
117
117
  extra_rdoc_files: []
118
118
  files:
119
+ - ".github/workflows/check_pull_request.yml"
119
120
  - ".gitignore"
120
121
  - ".rspec"
121
122
  - ".rubocop.yml"
122
- - ".travis.yml"
123
123
  - CHANGELOG.md
124
124
  - Gemfile
125
125
  - LICENSE.md
@@ -129,11 +129,12 @@ files:
129
129
  - bin/console
130
130
  - bin/rails
131
131
  - bin/setup
132
+ - bin/start_rspec
132
133
  - config/initializers/gem_autorequire_rails.rb
133
134
  - lib/autorequire_rails.rb
134
135
  - lib/autorequire_rails/engine.rb
135
136
  - lib/autorequire_rails/version.rb
136
- homepage: https://github.com/corlewsolutions/autorequire_rails
137
+ homepage: https://github.com/roberts1000/autorequire_rails
137
138
  licenses:
138
139
  - MIT
139
140
  metadata: {}
@@ -145,15 +146,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
145
146
  requirements:
146
147
  - - ">="
147
148
  - !ruby/object:Gem::Version
148
- version: '0'
149
+ version: 2.6.0
149
150
  required_rubygems_version: !ruby/object:Gem::Requirement
150
151
  requirements:
151
152
  - - ">="
152
153
  - !ruby/object:Gem::Version
153
154
  version: '0'
154
155
  requirements: []
155
- rubyforge_project:
156
- rubygems_version: 2.7.4
156
+ rubygems_version: 3.2.24
157
157
  signing_key:
158
158
  specification_version: 4
159
159
  summary: A Rails engine that requires all ruby files in lib/autorequire when a Rails
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- rvm:
4
- - 2.4.3
5
- before_install: gem install bundler -v 1.16.1