fakefs 2.3.0 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/fakefs/irb.rb +14 -0
- data/lib/fakefs/kernel.rb +2 -2
- data/lib/fakefs/safe.rb +1 -0
- data/lib/fakefs/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1233eb5f53d2726d129d63b73b637d324eccd588bf2b91a03ea9c66ce4eaf315
|
4
|
+
data.tar.gz: 86ee22f93f37f84744da31813a43377a95b398337c45d08d2bddbfdab3794df9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1df486ce2856004f54e6ef9216754e008843282d5ad14f95700ce66d3f49185359217855be28cd5a4603e7b3168f2c5aec4bc5618c0f356abb6759193e0a2bf
|
7
|
+
data.tar.gz: 6cda052f83b1e7d3ec3e5ffcba0d29851eced5f450c4e60c24f459e8859b109b2ec22f94144e8cc2d24526eb254259c9ba08cf93b54e4d383e087d3275b73ca8
|
data/lib/fakefs/irb.rb
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'irb'
|
2
|
+
|
3
|
+
# Make the original file system classes available in IRB.
|
4
|
+
::IRB::File = ::File
|
5
|
+
::IRB::FileUtils = ::FileUtils
|
6
|
+
::IRB::Dir = ::Dir
|
7
|
+
::IRB::Pathname = ::Pathname
|
8
|
+
|
9
|
+
# We need to setup IRB early, because the setup process itself requires locale files.
|
10
|
+
# Otherwise we'll get an error from Budler
|
11
|
+
# Bundler::GemspecError: The gemspec for GEM_NAME was missing or broken.
|
12
|
+
# Try running `gem pristine GEM_NAME -v GEM_VERSION` to fix the cached spec.
|
13
|
+
# because file sytem in bundler is stubbed.
|
14
|
+
IRB.setup(binding.source_location[0], argv: [])
|
data/lib/fakefs/kernel.rb
CHANGED
@@ -32,8 +32,8 @@ module FakeFS
|
|
32
32
|
end
|
33
33
|
|
34
34
|
hijack :open do |*args, &block|
|
35
|
-
|
36
|
-
|
35
|
+
# This is a system command or we're inside IRB internals
|
36
|
+
if args.first.start_with?('|') || self.class.to_s.start_with?("IRB::")
|
37
37
|
::FakeFS::Kernel.captives[:original][:open].call(*args, &block)
|
38
38
|
else
|
39
39
|
name = args.shift
|
data/lib/fakefs/safe.rb
CHANGED
data/lib/fakefs/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fakefs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Wanstrath
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2023-02-
|
15
|
+
date: 2023-02-13 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: bump
|
@@ -120,6 +120,7 @@ files:
|
|
120
120
|
- lib/fakefs/fileutils.rb
|
121
121
|
- lib/fakefs/globber.rb
|
122
122
|
- lib/fakefs/io.rb
|
123
|
+
- lib/fakefs/irb.rb
|
123
124
|
- lib/fakefs/kernel.rb
|
124
125
|
- lib/fakefs/pathname.rb
|
125
126
|
- lib/fakefs/pry.rb
|