local_precompile 0.3.1 → 0.3.2

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: 0433ee8af5b5cd761ba6ce1d8152a344d5fdfa546f39425768d6eba4f87c04a7
4
- data.tar.gz: 1702d47fc76def91944407875d19d776dc75a2f1094fd4162ee34a9cae8d926b
3
+ metadata.gz: 26ddbd12f86669ecb9324a8e85beddb114a5105f4d797b30c038c2bfd0778083
4
+ data.tar.gz: 00ed2d967634520820cfff4f7f077c60edaa8c6a7faa5334bde51720d1cfbaa2
5
5
  SHA512:
6
- metadata.gz: 96f3cd9705266f523d4a58dda7f4ea3249c43e0dc1db7b19fa6a1a4d8eb27f58339aeb7086fc0b6bcbf9a8ab1bc75e14c9ad266081f451e863856083b3bdb003
7
- data.tar.gz: de061e1892ef60f248912b34edb98ff4104139934d401c5fc6031347d8416a78cd3274ee8d452a1fa74a8f66c916291736a1bba8c1ed40f1e3724b5bc4d0756c
6
+ metadata.gz: a89960989af4b0f08d600bc35f66058740054538ef40210e20f41a131113fdb1245de839626a343a1487752e151067546cdc626d94ff19a86965254076bdbf2e
7
+ data.tar.gz: b69c2523272f490553b2a842672fdef97d5a9b91db4d26fa7dcd9fb3c8882d801d2d2f01ec57e4317b789c8f6f6cbe518b1ed9df94fd0c32517b122587b24341
data/.editorconfig CHANGED
File without changes
data/.gitignore CHANGED
File without changes
data/.rubocop.yml CHANGED
File without changes
data/.ruby-gemset CHANGED
File without changes
data/.ruby-version CHANGED
File without changes
data/CODE_OF_CONDUCT.md CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/README.md CHANGED
@@ -8,7 +8,7 @@ Add local-precompile to your Gemfile:
8
8
 
9
9
  ```ruby
10
10
  group :development do
11
- gem 'local_precompile', '~> 0.3.1', require: false
11
+ gem 'local_precompile', '~> 0.3.2', require: false
12
12
  end
13
13
  ```
14
14
 
data/Rakefile CHANGED
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module LocalPrecompile
2
- VERSION = '0.3.1'.freeze
2
+ VERSION = '0.3.2'.freeze
3
3
  end
@@ -1 +1,15 @@
1
- module LocumBestPractices; end
1
+ module LocalPrecompile; end
2
+
3
+ # Monkeypatch the File Class with the exists? method
4
+ unless Dir.respond_to?(:exists?)
5
+ class << Dir
6
+ alias_method :exists?, :exist?
7
+ end
8
+ end
9
+
10
+ # Monkeypatch the Dir Class with the exists? method
11
+ unless File.respond_to?(:exists?)
12
+ class << File
13
+ alias_method :exists?, :exist?
14
+ end
15
+ end
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
10
10
 
11
11
  gem.summary = 'Local compile assets and packs for Capistrano'
12
12
  gem.description = 'Contains cap tasks'
13
- gem.homepage = 'https://git.finstar.asia/general/webpacker_local_precompile'
13
+ gem.homepage = 'https://github.com/DarkWater666/local_precompile'
14
14
 
15
15
  gem.license = 'MIT'
16
16
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: local_precompile
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - DarkWater
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-23 00:00:00.000000000 Z
11
+ date: 2026-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -73,7 +73,7 @@ files:
73
73
  - lib/local_precompile/tasks.rb
74
74
  - lib/local_precompile/version.rb
75
75
  - local_precompile.gemspec
76
- homepage: https://git.finstar.asia/general/webpacker_local_precompile
76
+ homepage: https://github.com/DarkWater666/local_precompile
77
77
  licenses:
78
78
  - MIT
79
79
  metadata: