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 +4 -4
- data/.editorconfig +0 -0
- data/.gitignore +0 -0
- data/.rubocop.yml +0 -0
- data/.ruby-gemset +0 -0
- data/.ruby-version +0 -0
- data/CODE_OF_CONDUCT.md +0 -0
- data/Gemfile +0 -0
- data/README.md +1 -1
- data/Rakefile +0 -0
- data/lib/local_precompile/capistrano.rb +0 -0
- data/lib/local_precompile/tasks.rb +0 -0
- data/lib/local_precompile/version.rb +1 -1
- data/lib/local_precompile.rb +15 -1
- data/local_precompile.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26ddbd12f86669ecb9324a8e85beddb114a5105f4d797b30c038c2bfd0778083
|
|
4
|
+
data.tar.gz: 00ed2d967634520820cfff4f7f077c60edaa8c6a7faa5334bde51720d1cfbaa2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/Rakefile
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/local_precompile.rb
CHANGED
|
@@ -1 +1,15 @@
|
|
|
1
|
-
module
|
|
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
|
data/local_precompile.gemspec
CHANGED
|
@@ -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://
|
|
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.
|
|
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:
|
|
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://
|
|
76
|
+
homepage: https://github.com/DarkWater666/local_precompile
|
|
77
77
|
licenses:
|
|
78
78
|
- MIT
|
|
79
79
|
metadata:
|